This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/main | |
*.so | |
*.so.1 | |
/generated_link.rs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[test] | |
fn test_12term_modes() | |
{ | |
let mut tap = taplib::Tap::new(); | |
let mut buffer = std::sync::Mutex::new(Vec::<u8>::new()); | |
let output = |tt: &mut tickit::TickitTerm, bytes: &[u8]| | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
389-ds-base-dev: /usr/lib/x86_64-linux-gnu/pkgconfig/dirsrv.pc | |
amora-cli: /usr/lib/pkgconfig/libamora.pc | |
audacious-dev: /usr/lib/x86_64-linux-gnu/pkgconfig/audacious.pc | |
audacious-dev: /usr/lib/x86_64-linux-gnu/pkgconfig/audclient.pc | |
autogen: /usr/lib/x86_64-linux-gnu/pkgconfig/autoopts.pc | |
banshee: /usr/lib/pkgconfig/banshee-collection-indexer.pc | |
banshee: /usr/lib/pkgconfig/banshee-core.pc | |
banshee: /usr/lib/pkgconfig/banshee-hyena-data-sqlite.pc | |
banshee: /usr/lib/pkgconfig/banshee-hyena-gui.pc | |
banshee: /usr/lib/pkgconfig/banshee-hyena.pc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[19:30:56.34] init 1 | |
[19:30:56.34] init 2 | |
[19:30:56.34] init 3 | |
[19:30:56.34] configPath: /home/ben//.config/mana/mana/test.xml | |
[19:30:56.34] Warning: Failed to load features.xml: Path not found | |
[19:30:56.34] Error loading features.xml | |
[19:30:56.34] init 2 | |
[19:30:56.34] Couldn't open configuration file: features.xml | |
[19:30:56.34] init 4 | |
[19:30:56.34] Initializing resource manager... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <endian.h> | |
#include <string.h> | |
unsigned load_neutral_big(unsigned char *p) | |
{ | |
return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3] << 0); | |
} | |
unsigned load_neutral_little(unsigned char *p) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
struct Foo | |
{ | |
Foo() | |
{ | |
puts("Hello, "); | |
} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% py.test-3 test_fail.py | |
============================= test session starts ============================== | |
platform linux -- Python 3.3.5 -- pytest-2.5.1 | |
collected 1 items | |
turtle/test/test_fail.py F | |
=================================== FAILURES =================================== | |
______________________________ TestFail.test_fail ______________________________ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deprecated: implicit 'next statement' label | |
line 3072 : "No.", '-'; | |
deprecated: unreachable statement | |
line 3073 : 'c'lose; | |
Loading NPCs [0]: npc/functions/banker.txt | |
deprecated: implicit fallthrough |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
host: irc.freenode.net | |
port: 6667 | |
nick: elanore^ | |
// password is optional | |
//pass: hunter2 | |
// join can be repeated | |
join: #themanaworld | |
join: #themanaworld-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/fizzbuzzplus |