This file contains 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
/target | |
callgrind.out.* |
This file contains 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
use crate::Response; | |
use nom::IResult; | |
use nom::character::complete::{char, anychar}; | |
use nom::bytes::complete::take; | |
use nom::bytes::complete::take_until; | |
use nom::bytes::complete::take_till; | |
use nom::multi::many_till; | |
use nom::combinator::eof; | |
use nom::sequence::pair; |
This file contains 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
clang -Wall -fPIC -c ctest1.c ctest2.c | |
clang -shared -Wl,-soname,libctest.so.1.0 -o libctest.so.1.0 *.o | |
clang -fPIC prog.c -Wl,-rpath,. libctest.so.1.0 -o prog1 | |
./prog1 > result1 | |
clang prog.c ctest*.c -o prog2 | |
./prog2 > result2 |
This file contains 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
stable-vec-0.3.2/LICENSE-APACHE: "Legal Entity" shall mean the union of the acting entity and all | |
paillier-0.2.0/LICENSE-APACHE: "Legal Entity" shall mean the union of the acting entity and all | |
contest-algorithms-0.1.2/README.md:- [Basic graph representations](src/graph/mod.rs): adjacency lists, minimum spanning tree, Euler path, disjoint set union | |
gdpr_consent-0.4.0/LICENSE-APACHE: "Legal Entity" shall mean the union of the acting entity and all | |
partitions-0.2.4/LICENSE.txt:"Legal Entity" shall mean the union of the acting entity and all | |
partitions-0.2.4/Cargo.toml:description = "A disjoint-sets/union-find implementation that allows for efficient iteration over elements of a set." | |
partitions-0.2.4/Cargo.toml:keywords = ["union-find", "disjoint-sets"] | |
bitarray-set-0.4.1/LICENSE-APACHE: "Legal Entity" shall mean the union of the acting entity and all | |
partitions-0.2.4/README.md:A [disjoint-sets/union-find] implementation of a vector partitioned in sets that | |
partitions-0.2.4/README.md:[`union`] metho |
This file contains 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
open import Data.List | |
open import Data.Nat | |
open import Data.Nat.Properties | |
open import Relation.Binary.PropositionalEquality | |
-- open import Data.Product | |
module Earley where | |
data Terminality : Set where | |
T : Terminality |
This file contains 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
/bioinput.ini/sfxgame/sfxgamemodebase/bindings | |
( Name="Shared_Action", Command="Exclusive Used | Exclusive PressAction | OnTap 0.3 TapAction | OnHold 0.3 HoldAction") | |
( Name="Shared_Aim", Command="SwapWeaponIfEmpty | TightAim | FOV 0 | OnRelease FOV 95 | OnRelease StopTightAim" ) | |
( Name="My_Storm", Command="Exclusive TryStandingJump | OnRelease StormOff | StormOn" ) | |
( Name="My_Melee", Command="TryHeavyMelee") | |
: OnTap 0.01 TryMelee | LeaveWorld | OnHold 0.01 TryHeavyMelee | |
( Name="F11", Command="screenshot" ) | |
sfxgamemodedefault | |
inputdelaystormexit = 0.01 | |
inputdelaytightaimexit = 0.01 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
fn main() { | |
let mkv = grammar! { | |
start ::= (id, size, hsize):resync | |
resync ::= resync_element_id:bytes(0x1F43B675 | 0x18538067 | 0x1654AE6B) ~ (seglen, x):matroska_number => { | |
(resync_element_id, seglen, x + 4) | |
}; | |
matroska_number ::= b:byte ~ (mut r):byte+(leading_zeros(b)) => { | |
let n = leading_zeros(b) + 1; |
This file contains 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
extern crate runtime; | |
#[derive(Clone, Copy, Debug, Eq, PartialEq)] | |
enum Test { | |
Foo, | |
Bar, | |
} | |
#[test] | |
fn test_layered_parser() { |
This file contains 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
LOAD_FACTOR = 0.909 | |
PRECISION = 6000 | |
N_LIMIT = 250 | |
setprecision(512) | |
function psi(n, a::BigFloat) | |
p = 1 / a - 1 | |
q = BigFloat(0) |
NewerOlder