; CensoredPi.PiCensorship.InPlaceBytes()
sub rsp,48
xor eax,eax
mov [rsp+28],rax
vxorps xmm4,xmm4,xmm4
vmovdqa xmmword ptr [rsp+30],xmm4
mov [rsp+40],rax
mov dword ptr [rsp+28],0FFFFFFFF
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
pub fn is_forbidden_text_static(s: &str) -> bool { | |
FORBIDDEN_TEXTS | |
.iter() | |
.any(|candidate| s.starts_with(candidate)) | |
} |
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 opentelemetry::metrics::MeterProvider; | |
use opentelemetry_sdk::metrics::{ManualReader, SdkMeterProvider}; | |
use std::env::args; | |
use std::fmt::Debug; | |
use std::str::FromStr; | |
use std::thread::{spawn, JoinHandle}; | |
use std::time::{Duration, Instant}; | |
const NUM_THREADS: usize = 10; |
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
pub fn criterion_benchmark(c: &mut Criterion) { | |
const X_A: u64 = 94; | |
const X_B: u64 = 22; | |
const X: u64 = 8400 + 94 * 123456; | |
const Y_A: u64 = 34; | |
const Y_B: u64 = 67; | |
const Y: u64 = 5400 + 34 * 123456; | |
c.bench_function("naive", |b| { | |
b.iter(|| { |
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
// BAD CODE: This example is intentionally wrong. | |
pub struct BagOfApples { | |
count: usize, | |
// In the example code, this self-reference is mostly useless. | |
// This is just to keep the example code simple - the emphasis is | |
// on the effects of pinning, not why a type may be designed to need it. | |
self_reference: *mut BagOfApples, | |
} |
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
let mut bag = BagOfApples::new(); | |
bag.initialize(); | |
println!("Apple count: {}", bag.count()); |
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
// BAD CODE: This example is intentionally wrong. | |
pub struct BagOfApples { | |
count: usize, | |
// In the example code, this self-reference is mostly useless. | |
// This is just to keep the example code simple - the emphasis is | |
// on the effects of pinning, not why a type may be designed to need it. | |
self_reference: *mut BagOfApples, | |
} |
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
.text | |
.def @feat.00; | |
.scl 3; | |
.type 0; | |
.endef | |
.globl @feat.00 | |
.set @feat.00, 0 | |
.file "censoredpi.cfb30afff231d82-cgu.0" | |
.def _ZN10censoredpi22censor_pi_suffix_chunk17he2748b38ae5f6257E; | |
.scl 2; |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
vm_name = "asdf" | |
vswitch_name = "xxx" | |
data_disk_path = "" | |
new_password = "xxx" | |
mac_address = "" | |
cpu_cores = 2 | |
ram_mb = 1536 |
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
using Axinom.Toolkit; | |
using NLog; | |
using Prometheus.Advanced; | |
using Prometheus.Advanced.DataContracts; | |
using System; | |
using System.Collections; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; |
NewerOlder