repo stringlengths 6 65 | file_url stringlengths 81 311 | file_path stringlengths 6 227 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:31:58 2026-01-04 20:25:31 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-dotfiles/src/shell/fish.rs | crates/atuin-dotfiles/src/shell/fish.rs | // Configuration for fish
use std::path::PathBuf;
use crate::store::{AliasStore, var::VarStore};
async fn cached_aliases(path: PathBuf, store: &AliasStore) -> String {
match tokio::fs::read_to_string(path).await {
Ok(aliases) => aliases,
Err(r) => {
// we failed to read the file for so... | rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-dotfiles/src/shell/powershell.rs | crates/atuin-dotfiles/src/shell/powershell.rs | use crate::shell::{Alias, Var};
use crate::store::{AliasStore, var::VarStore};
use std::path::PathBuf;
async fn cached_aliases(path: PathBuf, store: &AliasStore) -> String {
match tokio::fs::read_to_string(path).await {
Ok(aliases) => aliases,
Err(r) => {
// we failed to read the file f... | rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-kv/src/lib.rs | crates/atuin-kv/src/lib.rs | pub mod database;
pub mod store;
| rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-kv/src/store.rs | crates/atuin-kv/src/store.rs | use std::collections::HashSet;
use eyre::{Result, bail};
use atuin_client::record::sqlite_store::SqliteStore;
use atuin_client::record::{encryption::PASETO_V4, store::Store};
use atuin_common::record::{Host, HostId, Record, RecordId, RecordIdx};
use entry::KvEntry;
use record::{KV_TAG, KV_VERSION, KvRecord};
use cra... | rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-kv/src/database.rs | crates/atuin-kv/src/database.rs | use std::{path::Path, str::FromStr, time::Duration};
use atuin_common::utils;
use sqlx::{
Result, Row,
sqlite::{
SqliteConnectOptions, SqliteJournalMode, SqlitePool, SqlitePoolOptions, SqliteRow,
SqliteSynchronous,
},
};
use tokio::fs;
use tracing::debug;
use crate::store::entry::KvEntry;
... | rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-kv/src/store/record.rs | crates/atuin-kv/src/store/record.rs | use atuin_common::record::DecryptedData;
use eyre::{Result, bail, ensure, eyre};
use typed_builder::TypedBuilder;
pub const KV_VERSION: &str = "v1";
pub const KV_TAG: &str = "kv";
pub const KV_VAL_MAX_LEN: usize = 100 * 1024;
#[derive(Debug, Clone, PartialEq, Eq, TypedBuilder)]
pub struct KvRecord {
pub namespace... | rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
atuinsh/atuin | https://github.com/atuinsh/atuin/blob/8a010fed33ce19a9ddc589196c73c07ba7ba88e7/crates/atuin-kv/src/store/entry.rs | crates/atuin-kv/src/store/entry.rs | use typed_builder::TypedBuilder;
#[derive(Debug, Clone, PartialEq, Eq, TypedBuilder)]
pub struct KvEntry {
pub namespace: String,
pub key: String,
pub value: String,
}
| rust | MIT | 8a010fed33ce19a9ddc589196c73c07ba7ba88e7 | 2026-01-04T15:36:14.139439Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-timeout/src/lib.rs | pingora-timeout/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-timeout/src/timer.rs | pingora-timeout/src/timer.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-timeout/src/fast_timeout.rs | pingora-timeout/src/fast_timeout.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-timeout/benches/benchmark.rs | pingora-timeout/benches/benchmark.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-boringssl/src/lib.rs | pingora-boringssl/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-boringssl/src/ext.rs | pingora-boringssl/src/ext.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-boringssl/src/boring_tokio.rs | pingora-boringssl/src/boring_tokio.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-header-serde/src/lib.rs | pingora-header-serde/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-header-serde/src/thread_zstd.rs | pingora-header-serde/src/thread_zstd.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-header-serde/src/trainer.rs | pingora-header-serde/src/trainer.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-header-serde/src/dict.rs | pingora-header-serde/src/dict.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-pool/src/lib.rs | pingora-pool/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-pool/src/lru.rs | pingora-pool/src/lru.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-pool/src/connection.rs | pingora-pool/src/connection.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-ketama/src/lib.rs | pingora-ketama/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-ketama/tests/backwards_compat.rs | pingora-ketama/tests/backwards_compat.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-ketama/tests/old_version/mod.rs | pingora-ketama/tests/old_version/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-ketama/benches/memory.rs | pingora-ketama/benches/memory.rs | use pingora_ketama::{Bucket, Continuum};
#[global_allocator]
static ALLOC: dhat::Alloc = dhat::Alloc;
fn buckets() -> Vec<Bucket> {
let mut b = Vec::new();
for i in 1..254 {
b.push(Bucket::new(
format!("127.0.0.{i}:6443").parse().unwrap(),
10,
));
}
b
}
pub f... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-ketama/benches/simple.rs | pingora-ketama/benches/simple.rs | use pingora_ketama::{Bucket, Continuum};
use criterion::{criterion_group, criterion_main, Criterion};
use rand::{
distr::{Alphanumeric, SampleString},
rng,
};
#[cfg(feature = "heap-prof")]
#[global_allocator]
static ALLOC: dhat::Alloc = dhat::Alloc;
fn buckets() -> Vec<Bucket> {
let mut b = Vec::new();
... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-ketama/examples/health_aware_selector.rs | pingora-ketama/examples/health_aware_selector.rs | use log::info;
use pingora_ketama::{Bucket, Continuum};
use std::collections::HashMap;
use std::net::SocketAddr;
// A repository for node healthiness, emulating a health checker.
struct NodeHealthRepository {
nodes: HashMap<SocketAddr, bool>,
}
impl NodeHealthRepository {
fn new() -> Self {
NodeHealth... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-http/src/lib.rs | pingora-http/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | true |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-http/src/case_header_name.rs | pingora-http/src/case_header_name.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-error/src/immut_str.rs | pingora-error/src/immut_str.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-error/src/lib.rs | pingora-error/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/src/lib.rs | pingora/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/client.rs | pingora/examples/client.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/server.rs | pingora/examples/server.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/service/echo.rs | pingora/examples/service/echo.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/service/mod.rs | pingora/examples/service/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/service/proxy.rs | pingora/examples/service/proxy.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/app/echo.rs | pingora/examples/app/echo.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/app/mod.rs | pingora/examples/app/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora/examples/app/proxy.rs | pingora/examples/app/proxy.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-rustls/src/lib.rs | pingora-rustls/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-limits/src/estimator.rs | pingora-limits/src/estimator.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-limits/src/lib.rs | pingora-limits/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-limits/src/inflight.rs | pingora-limits/src/inflight.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-limits/src/rate.rs | pingora-limits/src/rate.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-limits/benches/benchmark.rs | pingora-limits/benches/benchmark.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-memory-cache/src/lib.rs | pingora-memory-cache/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-memory-cache/src/read_through.rs | pingora-memory-cache/src/read_through.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/predictor.rs | pingora-cache/src/predictor.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/hashtable.rs | pingora-cache/src/hashtable.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/key.rs | pingora-cache/src/key.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/lib.rs | pingora-cache/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | true |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/put.rs | pingora-cache/src/put.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/filters.rs | pingora-cache/src/filters.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/cache_control.rs | pingora-cache/src/cache_control.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | true |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/max_file_size.rs | pingora-cache/src/max_file_size.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/trace.rs | pingora-cache/src/trace.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/memory.rs | pingora-cache/src/memory.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/lock.rs | pingora-cache/src/lock.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/storage.rs | pingora-cache/src/storage.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/variance.rs | pingora-cache/src/variance.rs | use std::{borrow::Cow, collections::BTreeMap};
use blake2::Digest;
use crate::key::{Blake2b128, HashBinary};
/// A builder for variance keys, used for distinguishing multiple cached assets
/// at the same URL. This is intended to be easily passed to helper functions,
/// which can each populate a portion of the vari... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/meta.rs | pingora-cache/src/meta.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/eviction/lru.rs | pingora-cache/src/eviction/lru.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/eviction/simple_lru.rs | pingora-cache/src/eviction/simple_lru.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/src/eviction/mod.rs | pingora-cache/src/eviction/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/benches/lru_memory.rs | pingora-cache/benches/lru_memory.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/benches/lru_serde.rs | pingora-cache/benches/lru_serde.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-cache/benches/simple_lru_memory.rs | pingora-cache/benches/simple_lru_memory.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-runtime/src/lib.rs | pingora-runtime/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-runtime/benches/hello.rs | pingora-runtime/benches/hello.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/lib.rs | pingora-core/src/lib.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/services/listening.rs | pingora-core/src/services/listening.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/services/mod.rs | pingora-core/src/services/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/services/background.rs | pingora-core/src/services/background.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/tls/mod.rs | pingora-core/src/tls/mod.rs | // Copyright 2024 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/apps/prometheus_http_app.rs | pingora-core/src/apps/prometheus_http_app.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/apps/http_app.rs | pingora-core/src/apps/http_app.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/apps/mod.rs | pingora-core/src/apps/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/upstreams/mod.rs | pingora-core/src/upstreams/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/upstreams/peer.rs | pingora-core/src/upstreams/peer.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/utils/mod.rs | pingora-core/src/utils/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/utils/tls/s2n.rs | pingora-core/src/utils/tls/s2n.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/utils/tls/rustls.rs | pingora-core/src/utils/tls/rustls.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/utils/tls/mod.rs | pingora-core/src/utils/tls/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/utils/tls/boringssl_openssl.rs | pingora-core/src/utils/tls/boringssl_openssl.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/l4.rs | pingora-core/src/connectors/l4.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/mod.rs | pingora-core/src/connectors/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/offload.rs | pingora-core/src/connectors/offload.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/tls/mod.rs | pingora-core/src/connectors/tls/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/tls/boringssl_openssl/mod.rs | pingora-core/src/connectors/tls/boringssl_openssl/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/tls/rustls/mod.rs | pingora-core/src/connectors/tls/rustls/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/tls/s2n/mod.rs | pingora-core/src/connectors/tls/s2n/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/http/v2.rs | pingora-core/src/connectors/http/v2.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/http/mod.rs | pingora-core/src/connectors/http/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/http/v1.rs | pingora-core/src/connectors/http/v1.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/connectors/http/custom/mod.rs | pingora-core/src/connectors/http/custom/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/protocols/raw_connect.rs | pingora-core/src/protocols/raw_connect.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/protocols/digest.rs | pingora-core/src/protocols/digest.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/protocols/windows.rs | pingora-core/src/protocols/windows.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
cloudflare/pingora | https://github.com/cloudflare/pingora/blob/5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094/pingora-core/src/protocols/mod.rs | pingora-core/src/protocols/mod.rs | // Copyright 2025 Cloudflare, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... | rust | Apache-2.0 | 5c4bd0bc546b2d9caaff4a438a4cf3d69e5a5094 | 2026-01-04T15:36:50.761692Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.