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
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/neon-shmem/src/hash/tests.rs
libs/neon-shmem/src/hash/tests.rs
use std::collections::BTreeMap; use std::collections::HashSet; use std::fmt::Debug; use std::mem::MaybeUninit; use crate::hash::Entry; use crate::hash::HashMapAccess; use crate::hash::HashMapInit; use crate::hash::core::FullError; use rand::seq::SliceRandom; use rand::{Rng, RngCore}; use rand_distr::Zipf; const TEST...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/neon-shmem/src/hash/core.rs
libs/neon-shmem/src/hash/core.rs
//! Simple hash table with chaining. use std::hash::Hash; use std::mem::MaybeUninit; use crate::hash::entry::*; /// Invalid position within the map (either within the dictionary or bucket array). pub(crate) const INVALID_POS: u32 = u32::MAX; /// Fundamental storage unit within the hash table. Either empty or contai...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/neon-shmem/src/hash/entry.rs
libs/neon-shmem/src/hash/entry.rs
//! Equivalent of [`std::collections::hash_map::Entry`] for this hashmap. use crate::hash::core::{CoreHashMap, FullError, INVALID_POS}; use crate::sync::{RwLockWriteGuard, ValueWriteGuard}; use std::hash::Hash; use std::mem; pub enum Entry<'a, 'b, K, V> { Occupied(OccupiedEntry<'a, 'b, K, V>), Vacant(VacantE...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_backend/src/lib.rs
libs/postgres_backend/src/lib.rs
//! Server-side asynchronous Postgres connection, as limited as we need. //! To use, create PostgresBackend and run() it, passing the Handler //! implementation determining how to process the queries. Currently its API //! is rather narrow, but we can extend it once required. #![deny(unsafe_code)] #![deny(clippy::undoc...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_backend/tests/simple_select.rs
libs/postgres_backend/tests/simple_select.rs
use std::io::Cursor; use std::sync::Arc; /// Test postgres_backend_async with tokio_postgres use once_cell::sync::Lazy; use postgres_backend::{AuthType, Handler, PostgresBackend, QueryError}; use pq_proto::{BeMessage, RowDescriptor}; use rustls::crypto::ring; use tokio::io::{AsyncRead, AsyncWrite}; use tokio::net::{Tc...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/compute_api/src/privilege.rs
libs/compute_api/src/privilege.rs
#[derive(Debug, Clone, serde::Deserialize, serde::Serialize)] #[serde(rename_all = "UPPERCASE")] pub enum Privilege { Select, Insert, Update, Delete, Truncate, References, Trigger, Usage, Create, Connect, Temporary, Execute, } impl Privilege { pub fn as_str(&self) ->...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/compute_api/src/responses.rs
libs/compute_api/src/responses.rs
//! Structs representing the JSON formats used in the compute_ctl's HTTP API. use chrono::{DateTime, Utc}; use jsonwebtoken::jwk::JwkSet; use serde::{Deserialize, Serialize, Serializer}; use std::fmt::Display; use crate::privilege::Privilege; use crate::spec::{ComputeSpec, Database, ExtVersion, PgIdent, Role}; #[der...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/compute_api/src/lib.rs
libs/compute_api/src/lib.rs
#![deny(unsafe_code)] #![deny(clippy::undocumented_unsafe_blocks)] pub mod privilege; pub mod requests; pub mod responses; pub mod spec;
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/compute_api/src/requests.rs
libs/compute_api/src/requests.rs
//! Structs representing the JSON formats used in the compute_ctl's HTTP API. use std::str::FromStr; use serde::{Deserialize, Serialize}; use crate::privilege::Privilege; use crate::responses::ComputeCtlConfig; use crate::spec::{ComputeSpec, ExtVersion, PgIdent}; /// The value to place in the [`ComputeClaims::audien...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/compute_api/src/spec.rs
libs/compute_api/src/spec.rs
//! The ComputeSpec contains all the information needed to start up //! the right version of PostgreSQL, and connect it to the storage nodes. //! It can be passed as part of the `config.json`, or the control plane can //! provide it by calling the compute_ctl's `/compute_ctl` endpoint, or //! compute_ctl can fetch it b...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/build.rs
libs/wal_decoder/build.rs
fn main() -> Result<(), Box<dyn std::error::Error>> { // Generate rust code from .proto protobuf. // // Note: we previously tried to use deterministic location at proto/ for // easy location, but apparently interference with cachepot sometimes fails // the build then. Anyway, per cargo docs build sc...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/lib.rs
libs/wal_decoder/src/lib.rs
pub mod decoder; pub mod models; pub mod serialized_batch; pub mod wire_format;
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/decoder.rs
libs/wal_decoder/src/decoder.rs
//! This module contains logic for decoding and interpreting //! raw bytes which represent a raw Postgres WAL record. use std::collections::HashMap; use bytes::{Buf, Bytes}; use pageserver_api::key::rel_block_to_key; use pageserver_api::reltag::{RelTag, SlruKind}; use pageserver_api::shard::ShardIdentity; use postgre...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/wire_format.rs
libs/wal_decoder/src/wire_format.rs
use bytes::{BufMut, Bytes, BytesMut}; use pageserver_api::key::CompactKey; use prost::{DecodeError, EncodeError, Message}; use tokio::io::AsyncWriteExt; use utils::bin_ser::{BeSer, DeserializeError, SerializeError}; use utils::lsn::Lsn; use utils::postgres_client::{Compression, InterpretedFormat}; use crate::models::{...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/models.rs
libs/wal_decoder/src/models.rs
//! This module houses types which represent decoded PG WAL records //! ready for the pageserver to interpret. They are derived from the original //! WAL records, so that each struct corresponds closely to one WAL record of //! a specific kind. They contain the same information as the original WAL records, //! but the ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/serialized_batch.rs
libs/wal_decoder/src/serialized_batch.rs
//! This module implements batch type for serialized [`crate::models::value::Value`] //! instances. Each batch contains a raw buffer (serialized values) //! and a list of metadata for each (key, LSN) tuple present in the batch. //! //! Such batches are created from decoded PG wal records and ingested //! by the pageser...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/models/value.rs
libs/wal_decoder/src/models/value.rs
//! This module defines the value type used by the storage engine. //! //! A [`Value`] represents either a completely new value for one Key ([`Value::Image`]), //! or a "delta" of how to get from previous version of the value to the new one //! ([`Value::WalRecord`]]) //! //! Note that the [`Value`] type is used for th...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/src/models/record.rs
libs/wal_decoder/src/models/record.rs
//! This module defines the WAL record format used within the pageserver. use bytes::Bytes; use postgres_ffi::walrecord::{MultiXactMember, describe_postgres_wal_record}; use postgres_ffi::{MultiXactId, MultiXactOffset, TransactionId}; use postgres_ffi_types::TimestampTz; use serde::{Deserialize, Serialize}; use utils:...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/wal_decoder/benches/bench_interpret_wal.rs
libs/wal_decoder/benches/bench_interpret_wal.rs
use std::env; use std::num::NonZeroUsize; use std::sync::Arc; use anyhow::Context; use camino::{Utf8Path, Utf8PathBuf}; use camino_tempfile::Utf8TempDir; use criterion::{Criterion, criterion_group, criterion_main}; use futures::StreamExt; use futures::stream::FuturesUnordered; use pageserver_api::shard::{ShardIdentity...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/tracing-utils/src/lib.rs
libs/tracing-utils/src/lib.rs
//! Helper functions to set up OpenTelemetry tracing. //! //! Example: //! //! ```rust,no_run //! use tracing_subscriber::prelude::*; //! //! #[tokio::main] //! async fn main() { //! // Set up logging to stderr //! let env_filter = tracing_subscriber::EnvFilter::try_from_default_env() //! .unwrap_or_els...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/tracing-utils/src/http.rs
libs/tracing-utils/src/http.rs
//! Tracing wrapper for Hyper HTTP server use std::future::Future; use hyper0::{Body, HeaderMap, Request, Response}; use tracing::Instrument; use tracing_opentelemetry::OpenTelemetrySpanExt; /// Configuration option for what to use as the "otel.name" field in the traces. pub enum OtelName<'a> { /// Use a constan...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/tracing-utils/src/perf_span.rs
libs/tracing-utils/src/perf_span.rs
//! Crutch module to work around tracing infrastructure deficiencies //! //! We wish to collect granular request spans without impacting performance //! by much. Ideally, we should have zero overhead for a sampling rate of 0. //! //! The approach taken by the pageserver crate is to use a completely different //! span h...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/config.rs
libs/pageserver_api/src/config.rs
use camino::Utf8PathBuf; #[cfg(test)] mod tests; use const_format::formatcp; use posthog_client_lite::PostHogClientConfig; use utils::serde_percent::Percent; pub const DEFAULT_PG_LISTEN_PORT: u16 = 64000; pub const DEFAULT_PG_LISTEN_ADDR: &str = formatcp!("127.0.0.1:{DEFAULT_PG_LISTEN_PORT}"); pub const DEFAULT_HTTP_...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/key.rs
libs/pageserver_api/src/key.rs
use std::fmt; use std::ops::Range; use anyhow::{Result, bail}; use byteorder::{BE, ByteOrder}; use bytes::Bytes; use postgres_ffi_types::forknum::{FSM_FORKNUM, VISIBILITYMAP_FORKNUM}; use postgres_ffi_types::{Oid, RepOriginId}; use serde::{Deserialize, Serialize}; use utils::const_assert; use crate::reltag::{BlockNum...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/lib.rs
libs/pageserver_api/src/lib.rs
#![deny(unsafe_code)] #![deny(clippy::undocumented_unsafe_blocks)] pub mod controller_api; pub mod key; pub mod keyspace; pub mod models; pub mod pagestream_api; pub mod reltag; pub mod shard; /// Public API types pub mod upcall_api; pub mod config;
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/shard.rs
libs/pageserver_api/src/shard.rs
//! See docs/rfcs/031-sharding-static.md for an overview of sharding. //! //! This module contains a variety of types used to represent the concept of sharding //! a Neon tenant across multiple physical shards. Since there are quite a few of these, //! we provide an summary here. //! //! Types used to describe shards:...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/upcall_api.rs
libs/pageserver_api/src/upcall_api.rs
//! Types in this file are for pageserver's upward-facing API calls to the storage controller, //! required for acquiring and validating tenant generation numbers. //! //! See docs/rfcs/025-generation-numbers.md use serde::{Deserialize, Serialize}; use utils::generation::Generation; use utils::id::{NodeId, TimelineId}...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/keyspace.rs
libs/pageserver_api/src/keyspace.rs
use std::ops::Range; use itertools::Itertools; use crate::key::Key; use crate::shard::{ShardCount, ShardIdentity}; /// /// Represents a set of Keys, in a compact form. /// #[derive(Clone, Debug, Default, PartialEq, Eq)] pub struct KeySpace { /// Contiguous ranges of keys that belong to the key space. In key orde...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/reltag.rs
libs/pageserver_api/src/reltag.rs
use std::cmp::Ordering; use std::fmt; use postgres_ffi_types::Oid; use postgres_ffi_types::constants::GLOBALTABLESPACE_OID; use postgres_ffi_types::forknum::{MAIN_FORKNUM, forkname_to_number, forknumber_to_name}; use serde::{Deserialize, Serialize}; /// /// Relation data file segment id throughout the Postgres cluste...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/pagestream_api.rs
libs/pageserver_api/src/pagestream_api.rs
//! Rust definitions of the libpq-based pagestream API //! //! See also the C implementation of the same API in pgxn/neon/pagestore_client.h use std::io::{BufRead, Read}; use crate::reltag::RelTag; use byteorder::{BigEndian, ReadBytesExt}; use bytes::{Buf, BufMut, Bytes, BytesMut}; use utils::lsn::Lsn; /// Block si...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/models.rs
libs/pageserver_api/src/models.rs
pub mod detach_ancestor; pub mod partitioning; pub mod utilization; use core::ops::Range; use std::collections::HashMap; use std::fmt::Display; use std::num::{NonZeroU32, NonZeroU64, NonZeroUsize}; use std::str::FromStr; use std::time::{Duration, SystemTime}; #[cfg(feature = "testing")] use camino::Utf8PathBuf; use p...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/controller_api.rs
libs/pageserver_api/src/controller_api.rs
use std::collections::{HashMap, HashSet}; use std::fmt::Display; use std::net::IpAddr; use std::str::FromStr; use std::time::{Duration, Instant}; /// Request/response types for the storage controller /// API (`/control/v1` prefix). Implemented by the server /// in [`storage_controller::http`] use serde::{Deserialize,...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/models/partitioning.rs
libs/pageserver_api/src/models/partitioning.rs
use utils::lsn::Lsn; use crate::keyspace::SparseKeySpace; #[derive(Debug, PartialEq, Eq)] pub struct Partitioning { pub keys: crate::keyspace::KeySpace, pub sparse_keys: crate::keyspace::SparseKeySpace, pub at_lsn: Lsn, } impl serde::Serialize for Partitioning { fn serialize<S>(&self, serializer: S) ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/models/detach_ancestor.rs
libs/pageserver_api/src/models/detach_ancestor.rs
use std::collections::HashSet; use utils::id::TimelineId; #[derive(Debug, Default, PartialEq, serde::Serialize, serde::Deserialize)] pub struct AncestorDetached { pub reparented_timelines: HashSet<TimelineId>, }
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/models/utilization.rs
libs/pageserver_api/src/models/utilization.rs
use std::time::SystemTime; use utils::serde_percent::Percent; use utils::serde_system_time; /// Pageserver current utilization and scoring for how good candidate the pageserver would be for /// the next tenant. /// /// See and maintain pageserver openapi spec for `/v1/utilization_score` as the truth. /// /// `format:...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/pageserver_api/src/config/tests.rs
libs/pageserver_api/src/config/tests.rs
use super::*; #[test] fn test_node_metadata_v1_backward_compatibilty() { let v1 = serde_json::to_vec(&serde_json::json!({ "host": "localhost", "port": 23, "http_host": "localhost", "http_port": 42, })); assert_eq!( serde_json::from_slice::<NodeMetadata>(&v1.unwrap()...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_ffi_types/src/lib.rs
libs/postgres_ffi_types/src/lib.rs
//! This package contains some PostgreSQL constants and datatypes that are the same in all versions //! of PostgreSQL and unlikely to change in the future either. These could be derived from the //! PostgreSQL headers with 'bindgen', but in order to avoid proliferating the dependency to bindgen //! and the PostgreSQL C...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_ffi_types/src/forknum.rs
libs/postgres_ffi_types/src/forknum.rs
// Fork numbers, from relpath.h pub const MAIN_FORKNUM: u8 = 0; pub const FSM_FORKNUM: u8 = 1; pub const VISIBILITYMAP_FORKNUM: u8 = 2; pub const INIT_FORKNUM: u8 = 3; #[derive(Debug, Clone, thiserror::Error, PartialEq, Eq)] pub enum FilePathError { #[error("invalid relation fork name")] InvalidForkName, #...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_ffi_types/src/constants.rs
libs/postgres_ffi_types/src/constants.rs
//! Misc constants, copied from PostgreSQL headers. //! //! Any constants included here must be the same in all PostgreSQL versions and unlikely to change //! in the future either! // From pg_tablespace_d.h pub const DEFAULTTABLESPACE_OID: u32 = 1663; pub const GLOBALTABLESPACE_OID: u32 = 1664;
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_connection/src/lib.rs
libs/postgres_connection/src/lib.rs
#![deny(unsafe_code)] #![deny(clippy::undocumented_unsafe_blocks)] use std::borrow::Cow; use std::fmt; use anyhow::{Context, bail}; use itertools::Itertools; use url::Host; /// Parses a string of format either `host:port` or `host` into a corresponding pair. /// /// The `host` part should be a correct `url::Host`, wh...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/postgres_versioninfo/src/lib.rs
libs/postgres_versioninfo/src/lib.rs
use serde::{Deserialize, Deserializer, Serialize, Serializer}; use serde_repr::{Deserialize_repr, Serialize_repr}; use std::fmt::{Display, Formatter}; use std::str::FromStr; /// An enum with one variant for each major version of PostgreSQL that we support. /// #[derive(Debug, Clone, Copy, Ord, PartialOrd, Eq, PartialE...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/config.rs
libs/remote_storage/src/config.rs
use std::fmt::Debug; use std::num::NonZeroUsize; use std::str::FromStr; use std::time::Duration; use aws_sdk_s3::types::StorageClass; use camino::Utf8PathBuf; use serde::{Deserialize, Serialize}; use crate::{ DEFAULT_MAX_KEYS_PER_LIST_RESPONSE, DEFAULT_REMOTE_STORAGE_AZURE_CONCURRENCY_LIMIT, DEFAULT_REMOTE_ST...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/support.rs
libs/remote_storage/src/support.rs
use std::future::Future; use std::pin::Pin; use std::task::{Context, Poll}; use std::time::Duration; use bytes::Bytes; use futures_util::Stream; use tokio_util::sync::CancellationToken; use crate::TimeoutOrCancel; pin_project_lite::pin_project! { /// An `AsyncRead` adapter which carries a permit for the lifetime...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/lib.rs
libs/remote_storage/src/lib.rs
//! A set of generic storage abstractions for the page server to use when backing up and restoring its state from the external storage. //! No other modules from this tree are supposed to be used directly by the external code. //! //! [`RemoteStorage`] trait a CRUD-like generic abstraction to use for adapting external ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/s3_bucket.rs
libs/remote_storage/src/s3_bucket.rs
//! AWS S3 storage wrapper around `rusoto` library. //! //! Respects `prefix_in_bucket` property from [`S3Config`], //! allowing multiple api users to independently work with the same S3 bucket, if //! their bucket prefixes are both specified and different. use std::borrow::Cow; use std::collections::HashMap; use std:...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/gcs_bucket.rs
libs/remote_storage/src/gcs_bucket.rs
use crate::config::GCSConfig; use crate::error::Cancelled; pub(super) use crate::metrics::RequestKind; use crate::metrics::{AttemptOutcome, start_counting_cancelled_wait, start_measuring_requests}; use crate::{ ConcurrencyLimiter, Download, DownloadError, DownloadOpts, GCS_SCOPES, Listing, ListingMode, ListingO...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/error.rs
libs/remote_storage/src/error.rs
/// Reasons for downloads or listings to fail. #[derive(Debug)] pub enum DownloadError { /// Validation or other error happened due to user input. BadInput(anyhow::Error), /// The file was not found in the remote storage. NotFound, /// The caller provided an ETag, and the file was not modified. ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/local_fs.rs
libs/remote_storage/src/local_fs.rs
//! Local filesystem acting as a remote storage. //! Multiple API users can use the same "storage" of this kind by using different storage roots. //! //! This storage used in tests, but can also be used in cases when a certain persistent //! volume is mounted to the local FS. use std::collections::HashSet; use std::io...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/simulate_failures.rs
libs/remote_storage/src/simulate_failures.rs
//! This module provides a wrapper around a real RemoteStorage implementation that //! causes the first N attempts at each upload or download operatio to fail. For //! testing purposes. use rand::Rng; use std::cmp; use std::collections::HashMap; use std::collections::hash_map::Entry; use std::num::NonZeroU32; use std::...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/metrics.rs
libs/remote_storage/src/metrics.rs
use metrics::{ Histogram, IntCounter, register_histogram_vec, register_int_counter, register_int_counter_vec, }; use once_cell::sync::Lazy; pub(super) static BUCKET_METRICS: Lazy<BucketMetrics> = Lazy::new(Default::default); #[derive(Clone, Copy, Debug)] pub(crate) enum RequestKind { Get = 0, Put = 1, ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/src/azure_blob.rs
libs/remote_storage/src/azure_blob.rs
//! Azure Blob Storage wrapper use std::borrow::Cow; use std::collections::HashMap; use std::fmt::Display; use std::num::NonZeroU32; use std::pin::Pin; use std::str::FromStr; use std::sync::Arc; use std::time::{Duration, SystemTime}; use std::{env, io}; use anyhow::{Context, Result, anyhow}; use azure_core::request_o...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
true
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/tests/test_real_azure.rs
libs/remote_storage/tests/test_real_azure.rs
use std::collections::HashSet; use std::env; use std::num::NonZeroUsize; use std::ops::ControlFlow; use std::sync::Arc; use std::time::{Duration, UNIX_EPOCH}; use anyhow::Context; use remote_storage::{ AzureConfig, GenericRemoteStorage, RemotePath, RemoteStorageConfig, RemoteStorageKind, }; use test_context::Async...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/tests/test_real_gcs.rs
libs/remote_storage/tests/test_real_gcs.rs
#![allow(dead_code)] #![allow(unused)] mod common; use crate::common::{download_to_vec, upload_stream}; use anyhow::Context; use camino::Utf8Path; use futures::StreamExt; use futures::stream::Stream; use remote_storage::{ DownloadKind, DownloadOpts, GCSConfig, GenericRemoteStorage, ListingMode, RemotePath, Re...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/tests/test_real_s3.rs
libs/remote_storage/tests/test_real_s3.rs
use std::collections::HashSet; use std::env; use std::fmt::{Debug, Display}; use std::future::Future; use std::num::NonZeroUsize; use std::ops::ControlFlow; use std::sync::Arc; use std::time::{Duration, SystemTime, UNIX_EPOCH}; use anyhow::Context; use camino::Utf8Path; use futures_util::StreamExt; use remote_storage:...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/tests/common/tests.rs
libs/remote_storage/tests/common/tests.rs
use std::collections::HashSet; use std::num::NonZeroU32; use std::ops::Bound; use std::sync::Arc; use anyhow::Context; use camino::Utf8Path; use futures::StreamExt; use remote_storage::{DownloadError, DownloadOpts, ListingMode, ListingObject, RemotePath}; use test_context::test_context; use tokio_util::sync::Cancellat...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/remote_storage/tests/common/mod.rs
libs/remote_storage/tests/common/mod.rs
use std::collections::HashSet; use std::ops::ControlFlow; use std::path::PathBuf; use std::sync::Arc; use anyhow::Context; use bytes::Bytes; use camino::Utf8Path; use futures::stream::Stream; use once_cell::sync::OnceCell; use remote_storage::{Download, GenericRemoteStorage, RemotePath}; use tokio::task::JoinSet; use ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/safekeeper_api/src/lib.rs
libs/safekeeper_api/src/lib.rs
#![deny(unsafe_code)] #![deny(clippy::undocumented_unsafe_blocks)] use const_format::formatcp; use pq_proto::SystemId; use serde::{Deserialize, Serialize}; pub mod membership; /// Public API types pub mod models; pub use postgres_versioninfo::{PgMajorVersion, PgVersionId}; /// Consensus logical timestamp. Note: it i...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/safekeeper_api/src/membership.rs
libs/safekeeper_api/src/membership.rs
//! Types defining safekeeper membership, see //! rfcs/035-safekeeper-dynamic-membership-change.md //! for details. use std::collections::HashSet; use std::fmt::Display; use anyhow; use anyhow::bail; use serde::{Deserialize, Serialize}; use utils::id::NodeId; /// 1 is the first valid generation, 0 is used as /// a p...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/libs/safekeeper_api/src/models.rs
libs/safekeeper_api/src/models.rs
//! Types used in safekeeper http API. Many of them are also reused internally. use std::net::SocketAddr; use pageserver_api::shard::ShardIdentity; use postgres_ffi_types::TimestampTz; use postgres_versioninfo::PgVersionId; use serde::{Deserialize, Serialize}; use tokio::time::Instant; use utils::id::{NodeId, TenantI...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/build.rs
pgxn/neon/communicator/build.rs
use std::env; fn main() -> Result<(), Box<dyn std::error::Error>> { let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap(); match cbindgen::generate(crate_dir) { Ok(bindings) => { bindings.write_to_file("communicator_bindings.h"); } Err(cbindgen::Error::ParseSyntaxError { ...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/lib.rs
pgxn/neon/communicator/src/lib.rs
mod worker_process; /// Name of the Unix Domain Socket that serves the metrics, and other APIs in the /// future. This is within the Postgres data directory. const NEON_COMMUNICATOR_SOCKET_NAME: &str = "neon-communicator.socket";
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/worker_interface.rs
pgxn/neon/communicator/src/worker_process/worker_interface.rs
//! Functions called from the C code in the worker process use std::ffi::{CStr, CString, c_char}; use crate::worker_process::main_loop; use crate::worker_process::main_loop::CommunicatorWorkerProcessStruct; /// Launch the communicator's tokio tasks, which do most of the work. /// /// The caller has initialized the p...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/control_socket.rs
pgxn/neon/communicator/src/worker_process/control_socket.rs
//! Communicator control socket. //! //! Currently, the control socket is used to provide information about the communicator //! process, file cache etc. as prometheus metrics. In the future, it can be used to //! expose more things. //! //! The exporter speaks HTTP, listens on a Unix Domain Socket under the Postgres /...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/callbacks.rs
pgxn/neon/communicator/src/worker_process/callbacks.rs
//! C callbacks to PostgreSQL facilities that the neon extension needs to provide. These //! are implemented in `neon/pgxn/communicator_process.c`. The function signatures better //! match! //! //! These are called from the communicator threads! Careful what you do, most Postgres //! functions are not safe to call in t...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/mod.rs
pgxn/neon/communicator/src/worker_process/mod.rs
//! This code runs in the communicator worker process. This provides //! the glue code to: //! //! - launch the main loop, //! - receive IO requests from backends and process them, //! - write results back to backends. mod callbacks; mod control_socket; mod lfc_metrics; mod logging; mod main_loop; mod worker_interface...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/logging.rs
pgxn/neon/communicator/src/worker_process/logging.rs
//! Glue code to hook up Rust logging with the `tracing` crate to the PostgreSQL log //! //! In the Rust threads, the log messages are written to a mpsc Channel, and the Postgres //! process latch is raised. That wakes up the loop in the main thread, see //! `communicator_new_bgworker_main()`. It reads the message from...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/lfc_metrics.rs
pgxn/neon/communicator/src/worker_process/lfc_metrics.rs
use measured::{ FixedCardinalityLabel, Gauge, GaugeVec, LabelGroup, MetricGroup, label::{LabelName, LabelValue, StaticLabelSet}, metric::{MetricEncoding, gauge::GaugeState, group::Encoding}, }; use super::callbacks::callback_get_lfc_metrics; pub(crate) struct LfcMetricsCollector; #[derive(MetricGroup)] #...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
neondatabase/neon
https://github.com/neondatabase/neon/blob/015b1c7cb3259a6fcd5039bc2bd46a462e163ae8/pgxn/neon/communicator/src/worker_process/main_loop.rs
pgxn/neon/communicator/src/worker_process/main_loop.rs
use std::str::FromStr as _; use crate::worker_process::lfc_metrics::LfcMetricsCollector; use measured::MetricGroup; use measured::metric::MetricEncoding; use measured::metric::gauge::GaugeState; use measured::metric::group::Encoding; use utils::id::{TenantId, TimelineId}; pub struct CommunicatorWorkerProcessStruct {...
rust
Apache-2.0
015b1c7cb3259a6fcd5039bc2bd46a462e163ae8
2026-01-04T15:40:24.223849Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/app.rs
candle-wasm-examples/llama2-c/src/app.rs
use crate::console_log; use crate::worker::{ModelData, Worker, WorkerInput, WorkerOutput}; use std::str::FromStr; use wasm_bindgen::prelude::*; use wasm_bindgen_futures::JsFuture; use yew::{html, Component, Context, Html}; use yew_agent::{Bridge, Bridged}; async fn fetch_url(url: &str) -> Result<Vec<u8>, JsValue> { ...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/lib.rs
candle-wasm-examples/llama2-c/src/lib.rs
mod app; pub mod model; pub mod worker; pub use app::App; pub use worker::Worker;
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/worker.rs
candle-wasm-examples/llama2-c/src/worker.rs
use crate::model::{Cache, Config, Llama}; use byteorder::{LittleEndian, ReadBytesExt}; use candle::{DType, Device, IndexOp, Result, Shape, Tensor}; use candle_nn::VarBuilder; use candle_transformers::generation::LogitsProcessor; use serde::{Deserialize, Serialize}; use tokenizers::Tokenizer; use wasm_bindgen::prelude::...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/model.rs
candle-wasm-examples/llama2-c/src/model.rs
use candle::{DType, Device, IndexOp, Result, Tensor, D}; use candle_nn::{ embedding, linear_no_bias as linear, rms_norm, Embedding, Linear, Module, RmsNorm, VarBuilder, }; use std::collections::HashMap; use std::sync::{Arc, Mutex}; #[derive(Debug, Clone)] pub struct Config { pub dim: usize, // transform...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/bin/app.rs
candle-wasm-examples/llama2-c/src/bin/app.rs
fn main() { wasm_logger::init(wasm_logger::Config::new(log::Level::Trace)); console_error_panic_hook::set_once(); yew::Renderer::<candle_wasm_example_llama2::App>::new().render(); }
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/bin/m.rs
candle-wasm-examples/llama2-c/src/bin/m.rs
use candle::{Device, Tensor}; use candle_transformers::generation::LogitsProcessor; use candle_wasm_example_llama2::worker::{Model as M, ModelData}; use wasm_bindgen::prelude::*; #[wasm_bindgen] pub struct Model { inner: M, logits_processor: LogitsProcessor, tokens: Vec<u32>, repeat_penalty: f32, } im...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/llama2-c/src/bin/worker.rs
candle-wasm-examples/llama2-c/src/bin/worker.rs
use yew_agent::PublicWorker; fn main() { console_error_panic_hook::set_once(); candle_wasm_example_llama2::Worker::register(); }
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/segment-anything/src/lib.rs
candle-wasm-examples/segment-anything/src/lib.rs
use candle_transformers::models::segment_anything::sam; use wasm_bindgen::prelude::*; pub use sam::{Sam, IMAGE_SIZE}; #[wasm_bindgen] extern "C" { // Use `js_namespace` here to bind `console.log(..)` instead of just // `log(..)` #[wasm_bindgen(js_namespace = console)] pub fn log(s: &str); } #[macro_e...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/segment-anything/src/bin/m.rs
candle-wasm-examples/segment-anything/src/bin/m.rs
use candle::{DType, Device, Tensor}; use candle_nn::VarBuilder; use candle_wasm_example_sam as sam; use wasm_bindgen::prelude::*; struct Embeddings { original_width: u32, original_height: u32, width: u32, height: u32, data: Tensor, } #[wasm_bindgen] pub struct Model { sam: sam::Sam, embedd...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/phi/src/lib.rs
candle-wasm-examples/phi/src/lib.rs
use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { // Use `js_namespace` here to bind `console.log(..)` instead of just // `log(..)` #[wasm_bindgen(js_namespace = console)] pub fn log(s: &str); } #[macro_export] macro_rules! console_log { // Note that this is using the `log` function impor...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/phi/src/bin/m.rs
candle-wasm-examples/phi/src/bin/m.rs
use candle::{DType, Device, Tensor}; use candle_nn::VarBuilder; use candle_transformers::generation::LogitsProcessor; use candle_transformers::models::mixformer::{Config, MixFormerSequentialForCausalLM as MixFormer}; use candle_transformers::models::quantized_mixformer::MixFormerSequentialForCausalLM as QMixFormer; use...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/bert/src/lib.rs
candle-wasm-examples/bert/src/lib.rs
use candle_transformers::models::bert; use wasm_bindgen::prelude::*; pub use bert::{BertModel, Config, DTYPE}; pub use tokenizers::{PaddingParams, Tokenizer}; #[wasm_bindgen] extern "C" { // Use `js_namespace` here to bind `console.log(..)` instead of just // `log(..)` #[wasm_bindgen(js_namespace = consol...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/bert/src/bin/m.rs
candle-wasm-examples/bert/src/bin/m.rs
use candle::{DType, Device, Tensor}; use candle_nn::VarBuilder; use candle_transformers::models::bert::{BertModel, Config}; use candle_wasm_example_bert::console_log; use tokenizers::{PaddingParams, Tokenizer}; use wasm_bindgen::prelude::*; #[wasm_bindgen] pub struct Model { bert: BertModel, tokenizer: Tokeniz...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/blip/src/lib.rs
candle-wasm-examples/blip/src/lib.rs
use wasm_bindgen::prelude::*; pub mod token_output_stream; #[wasm_bindgen] extern "C" { // Use `js_namespace` here to bind `console.log(..)` instead of just // `log(..)` #[wasm_bindgen(js_namespace = console)] pub fn log(s: &str); } #[macro_export] macro_rules! console_log { // Note that this is u...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/blip/src/token_output_stream.rs
candle-wasm-examples/blip/src/token_output_stream.rs
use candle::Result; /// This is a wrapper around a tokenizer to ensure that tokens can be returned to the user in a /// streaming way rather than having to wait for the full decoding. pub struct TokenOutputStream { tokenizer: tokenizers::Tokenizer, tokens: Vec<u32>, prev_index: usize, current_index: us...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/blip/src/bin/m.rs
candle-wasm-examples/blip/src/bin/m.rs
use candle::{DType, Device, Tensor}; use candle_nn::VarBuilder; use candle_transformers::generation::LogitsProcessor; use candle_transformers::models::blip; use candle_transformers::models::quantized_blip; use candle_wasm_example_blip::console_log; use candle_wasm_example_blip::token_output_stream::TokenOutputStream; u...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/moondream/src/lib.rs
candle-wasm-examples/moondream/src/lib.rs
use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { // Use `js_namespace` here to bind `console.log(..)` instead of just // `log(..)` #[wasm_bindgen(js_namespace = console)] pub fn log(s: &str); } #[macro_export] macro_rules! console_log { // Note that this is using the `log` function impor...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/moondream/src/bin/m.rs
candle-wasm-examples/moondream/src/bin/m.rs
use candle::{DType, Device, Tensor}; use candle_nn::VarBuilder; use candle_transformers::{ generation::LogitsProcessor, models::{moondream, quantized_moondream}, }; use candle_wasm_example_moondream::console_log; use js_sys::Date; use serde::{Deserialize, Serialize}; use tokenizers::Tokenizer; use wasm_bindgen:...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/app.rs
candle-wasm-examples/yolo/src/app.rs
use crate::console_log; use crate::worker::{ModelData, RunData, Worker, WorkerInput, WorkerOutput}; use wasm_bindgen::prelude::*; use wasm_bindgen_futures::JsFuture; use yew::{html, Component, Context, Html}; use yew_agent::{Bridge, Bridged}; async fn fetch_url(url: &str) -> Result<Vec<u8>, JsValue> { use web_sys:...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/lib.rs
candle-wasm-examples/yolo/src/lib.rs
mod app; pub mod coco_classes; pub mod model; pub mod worker; pub use app::App; pub use worker::Worker;
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/worker.rs
candle-wasm-examples/yolo/src/worker.rs
use crate::model::{report_detect, report_pose, Bbox, Multiples, YoloV8, YoloV8Pose}; use candle::{DType, Device, Result, Tensor}; use candle_nn::{Module, VarBuilder}; use serde::{Deserialize, Serialize}; use wasm_bindgen::prelude::*; use yew_agent::{HandlerId, Public, WorkerLink}; #[wasm_bindgen] extern "C" { // U...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/model.rs
candle-wasm-examples/yolo/src/model.rs
use candle::{DType, IndexOp, Result, Tensor, D}; use candle_nn::{ batch_norm, conv2d, conv2d_no_bias, BatchNorm, Conv2d, Conv2dConfig, Module, VarBuilder, }; use image::DynamicImage; // Model architecture from https://github.com/ultralytics/ultralytics/issues/189 // https://github.com/tinygrad/tinygrad/blob/master...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/coco_classes.rs
candle-wasm-examples/yolo/src/coco_classes.rs
pub const NAMES: [&str; 80] = [ "person", "bicycle", "car", "motorbike", "aeroplane", "bus", "train", "truck", "boat", "traffic light", "fire hydrant", "stop sign", "parking meter", "bench", "bird", "cat", "dog", "horse", "sheep", "cow", ...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/bin/app.rs
candle-wasm-examples/yolo/src/bin/app.rs
fn main() { wasm_logger::init(wasm_logger::Config::new(log::Level::Trace)); console_error_panic_hook::set_once(); yew::Renderer::<candle_wasm_example_yolo::App>::new().render(); }
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/bin/m.rs
candle-wasm-examples/yolo/src/bin/m.rs
use candle_wasm_example_yolo::coco_classes; use candle_wasm_example_yolo::model::Bbox; use candle_wasm_example_yolo::worker::Model as M; use candle_wasm_example_yolo::worker::ModelPose as P; use wasm_bindgen::prelude::*; #[wasm_bindgen] pub struct Model { inner: M, } #[wasm_bindgen] impl Model { #[wasm_bindge...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/yolo/src/bin/worker.rs
candle-wasm-examples/yolo/src/bin/worker.rs
use yew_agent::PublicWorker; fn main() { console_error_panic_hook::set_once(); candle_wasm_example_yolo::Worker::register(); }
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/t5/src/lib.rs
candle-wasm-examples/t5/src/lib.rs
use wasm_bindgen::prelude::*; #[wasm_bindgen] extern "C" { // Use `js_namespace` here to bind `console.log(..)` instead of just // `log(..)` #[wasm_bindgen(js_namespace = console)] pub fn log(s: &str); } #[macro_export] macro_rules! console_log { // Note that this is using the `log` function impor...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/t5/src/bin/m.rs
candle-wasm-examples/t5/src/bin/m.rs
use candle::{DType, Device, Tensor}; use candle_nn::VarBuilder; use candle_transformers::generation::LogitsProcessor; pub use candle_transformers::models::t5::{Config, T5EncoderModel, T5ForConditionalGeneration}; use candle_wasm_example_t5::console_log; use tokenizers::Tokenizer; use wasm_bindgen::prelude::*; #[wasm_bi...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/t5/src/bin/m-quantized.rs
candle-wasm-examples/t5/src/bin/m-quantized.rs
use candle::{Device, Tensor}; use candle_transformers::generation::LogitsProcessor; pub use candle_transformers::models::quantized_t5::{ Config, T5EncoderModel, T5ForConditionalGeneration, VarBuilder, }; use candle_wasm_example_t5::console_log; use tokenizers::Tokenizer; use wasm_bindgen::prelude::*; const DEVICE:...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/whisper/src/app.rs
candle-wasm-examples/whisper/src/app.rs
use crate::console_log; use crate::worker::{ModelData, Segment, Worker, WorkerInput, WorkerOutput}; use js_sys::Date; use wasm_bindgen::prelude::*; use wasm_bindgen_futures::JsFuture; use yew::{html, Component, Context, Html}; use yew_agent::{Bridge, Bridged}; const SAMPLE_NAMES: [&str; 6] = [ "audios/samples_jfk....
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/whisper/src/lib.rs
candle-wasm-examples/whisper/src/lib.rs
pub const WITH_TIMER: bool = true; mod app; mod audio; pub mod languages; pub mod worker; pub use app::App; pub use worker::Worker;
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false
huggingface/candle
https://github.com/huggingface/candle/blob/a4ad7c79666958c38b9afc0e0c3e3499ab8991d8/candle-wasm-examples/whisper/src/worker.rs
candle-wasm-examples/whisper/src/worker.rs
use crate::languages::LANGUAGES; use anyhow::Error as E; use candle::{safetensors::Load, DType, Device, IndexOp, Tensor, D}; use candle_nn::{ops::softmax, VarBuilder}; pub use candle_transformers::models::whisper::{self as m, Config}; use rand::{distr::Distribution, rngs::StdRng, SeedableRng}; use serde::{Deserialize, ...
rust
Apache-2.0
a4ad7c79666958c38b9afc0e0c3e3499ab8991d8
2026-01-04T15:42:50.663313Z
false