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
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/throttle.rs
tokio-stream/src/stream_ext/throttle.rs
//! Slow down a stream by enforcing a delay between items. use crate::Stream; use tokio::time::{Duration, Instant, Sleep}; use std::future::Future; use std::pin::Pin; use std::task::{self, ready, Poll}; use pin_project_lite::pin_project; pub(super) fn throttle<T>(duration: Duration, stream: T) -> Throttle<T> where ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/timeout.rs
tokio-stream/src/stream_ext/timeout.rs
use crate::stream_ext::Fuse; use crate::Stream; use tokio::time::{Instant, Sleep}; use core::future::Future; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; use std::fmt; use std::time::Duration; pin_project! { /// Stream returned by the [`timeout`](super::StreamExt:...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/all.rs
tokio-stream/src/stream_ext/all.rs
use crate::Stream; use core::future::Future; use core::marker::PhantomPinned; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Future for the [`all`](super::StreamExt::all) method. #[derive(Debug)] #[must_use = "futures do nothing unless you...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/collect.rs
tokio-stream/src/stream_ext/collect.rs
use crate::Stream; use core::future::Future; use core::marker::{PhantomData, PhantomPinned}; use core::mem; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; // Do not export this struct until `FromStream` can be unsealed. pin_project! { /// Future returned by the [`co...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/next.rs
tokio-stream/src/stream_ext/next.rs
use crate::Stream; use core::future::Future; use core::marker::PhantomPinned; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Future for the [`next`](super::StreamExt::next) method. /// /// # Cancel safety /// /// This method is cancel saf...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/filter.rs
tokio-stream/src/stream_ext/filter.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream returned by the [`filter`](super::StreamExt::filter) method. #[must_use = "streams do nothing unless polled"] pub struct Filter<St, F> { #[pin]...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/take.rs
tokio-stream/src/stream_ext/take.rs
use crate::Stream; use core::cmp; use core::fmt; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`take`](super::StreamExt::take) method. #[must_use = "streams do nothing unless polled"] pub struct Take<St> { #[pin] ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/map_while.rs
tokio-stream/src/stream_ext/map_while.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`map_while`](super::StreamExt::map_while) method. #[must_use = "streams do nothing unless polled"] pub struct MapWhile<St, F> { #[pin] ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/timeout_repeating.rs
tokio-stream/src/stream_ext/timeout_repeating.rs
use crate::stream_ext::Fuse; use crate::{Elapsed, Stream}; use tokio::time::Interval; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream returned by the [`timeout_repeating`](super::StreamExt::timeout_repeating) method. #[must_use = "stream...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/chain.rs
tokio-stream/src/stream_ext/chain.rs
use crate::stream_ext::Fuse; use crate::Stream; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream returned by the [`chain`](super::StreamExt::chain) method. pub struct Chain<T, U> { #[pin] a: Fuse<T>, #[pin] ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/filter_map.rs
tokio-stream/src/stream_ext/filter_map.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream returned by the [`filter_map`](super::StreamExt::filter_map) method. #[must_use = "streams do nothing unless polled"] pub struct FilterMap<St, F> { ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/chunks_timeout.rs
tokio-stream/src/stream_ext/chunks_timeout.rs
use crate::stream_ext::Fuse; use crate::Stream; use tokio::time::{sleep, Sleep}; use core::future::Future; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; use std::time::Duration; pin_project! { /// Stream returned by the [`chunks_timeout`](super::StreamExt::chunks_t...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/map.rs
tokio-stream/src/stream_ext/map.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`map`](super::StreamExt::map) method. #[must_use = "streams do nothing unless polled"] pub struct Map<St, F> { #[pin] stream: St, ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/skip_while.rs
tokio-stream/src/stream_ext/skip_while.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`skip_while`](super::StreamExt::skip_while) method. #[must_use = "streams do nothing unless polled"] pub struct SkipWhile<St, F> { #[p...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/any.rs
tokio-stream/src/stream_ext/any.rs
use crate::Stream; use core::future::Future; use core::marker::PhantomPinned; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Future for the [`any`](super::StreamExt::any) method. #[derive(Debug)] #[must_use = "futures do nothing unless you...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/fuse.rs
tokio-stream/src/stream_ext/fuse.rs
use crate::Stream; use pin_project_lite::pin_project; use std::pin::Pin; use std::task::{ready, Context, Poll}; pin_project! { /// Stream returned by [`fuse()`][super::StreamExt::fuse]. #[derive(Debug)] pub struct Fuse<T> { #[pin] stream: Option<T>, } } impl<T> Fuse<T> where T: St...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/then.rs
tokio-stream/src/stream_ext/then.rs
use crate::Stream; use core::fmt; use core::future::Future; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`then`](super::StreamExt::then) method. #[must_use = "streams do nothing unless polled"] pub struct Then<St, Fut, F> { ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/skip.rs
tokio-stream/src/stream_ext/skip.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{ready, Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`skip`](super::StreamExt::skip) method. #[must_use = "streams do nothing unless polled"] pub struct Skip<St> { #[pin] stream: ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/peekable.rs
tokio-stream/src/stream_ext/peekable.rs
use std::pin::Pin; use std::task::{Context, Poll}; use futures_core::Stream; use pin_project_lite::pin_project; use crate::stream_ext::Fuse; use crate::StreamExt; pin_project! { /// Stream returned by the [`peekable`](super::StreamExt::peekable) method. pub struct Peekable<T: Stream> { peek: Option<T...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/try_next.rs
tokio-stream/src/stream_ext/try_next.rs
use crate::stream_ext::Next; use crate::Stream; use core::future::Future; use core::marker::PhantomPinned; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Future for the [`try_next`](super::StreamExt::try_next) method. /// /// # Cancel safety ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/stream_ext/take_while.rs
tokio-stream/src/stream_ext/take_while.rs
use crate::Stream; use core::fmt; use core::pin::Pin; use core::task::{Context, Poll}; use pin_project_lite::pin_project; pin_project! { /// Stream for the [`take_while`](super::StreamExt::take_while) method. #[must_use = "streams do nothing unless polled"] pub struct TakeWhile<St, F> { #[pin] ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/mpsc_bounded.rs
tokio-stream/src/wrappers/mpsc_bounded.rs
use crate::Stream; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::sync::mpsc::Receiver; /// A wrapper around [`tokio::sync::mpsc::Receiver`] that implements [`Stream`]. /// /// # Example /// /// ``` /// use tokio::sync::mpsc; /// use tokio_stream::wrappers::ReceiverStream; /// use tokio_stream::StreamEx...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/broadcast.rs
tokio-stream/src/wrappers/broadcast.rs
use std::pin::Pin; use tokio::sync::broadcast::error::RecvError; use tokio::sync::broadcast::Receiver; use futures_core::Stream; use tokio_util::sync::ReusableBoxFuture; use std::fmt; use std::task::{ready, Context, Poll}; /// A wrapper around [`tokio::sync::broadcast::Receiver`] that implements [`Stream`]. /// /// ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/tcp_listener.rs
tokio-stream/src/wrappers/tcp_listener.rs
use crate::Stream; use std::io; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::net::{TcpListener, TcpStream}; /// A wrapper around [`TcpListener`] that implements [`Stream`]. /// /// # Example /// /// Accept connections from both IPv4 and IPv6 listeners in the same loop: /// /// ```no_run /// # #[cfg(no...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/watch.rs
tokio-stream/src/wrappers/watch.rs
use std::pin::Pin; use tokio::sync::watch::Receiver; use futures_core::Stream; use tokio_util::sync::ReusableBoxFuture; use std::fmt; use std::task::{ready, Context, Poll}; use tokio::sync::watch::error::RecvError; /// A wrapper around [`tokio::sync::watch::Receiver`] that implements [`Stream`]. /// /// This stream ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/signal_windows.rs
tokio-stream/src/wrappers/signal_windows.rs
use crate::Stream; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::signal::windows::{CtrlBreak, CtrlC}; /// A wrapper around [`CtrlC`] that implements [`Stream`]. /// /// [`CtrlC`]: struct@tokio::signal::windows::CtrlC /// [`Stream`]: trait@crate::Stream /// /// # Example /// /// ```no_run /// use tokio:...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/lines.rs
tokio-stream/src/wrappers/lines.rs
use crate::Stream; use pin_project_lite::pin_project; use std::io; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::io::{AsyncBufRead, Lines}; pin_project! { /// A wrapper around [`tokio::io::Lines`] that implements [`Stream`]. /// /// # Example /// /// ``` /// use tokio::io::Async...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/mpsc_unbounded.rs
tokio-stream/src/wrappers/mpsc_unbounded.rs
use crate::Stream; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::sync::mpsc::UnboundedReceiver; /// A wrapper around [`tokio::sync::mpsc::UnboundedReceiver`] that implements [`Stream`]. /// /// # Example /// /// ``` /// use tokio::sync::mpsc; /// use tokio_stream::wrappers::UnboundedReceiverStream; ///...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/interval.rs
tokio-stream/src/wrappers/interval.rs
use crate::Stream; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::time::{Instant, Interval}; /// A wrapper around [`Interval`] that implements [`Stream`]. /// /// # Example /// /// ``` /// use tokio::time::{Duration, Instant, interval}; /// use tokio_stream::wrappers::IntervalStream; /// use tokio_strea...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/unix_listener.rs
tokio-stream/src/wrappers/unix_listener.rs
use crate::Stream; use std::io; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::net::{UnixListener, UnixStream}; /// A wrapper around [`UnixListener`] that implements [`Stream`]. /// /// # Example /// /// ```no_run /// use tokio::net::UnixListener; /// use tokio_stream::{StreamExt, wrappers::UnixListener...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/read_dir.rs
tokio-stream/src/wrappers/read_dir.rs
use crate::Stream; use std::io; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::fs::{DirEntry, ReadDir}; /// A wrapper around [`tokio::fs::ReadDir`] that implements [`Stream`]. /// /// # Example /// /// ``` /// use tokio::fs::read_dir; /// use tokio_stream::{StreamExt, wrappers::ReadDirStream}; /// /// #...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/split.rs
tokio-stream/src/wrappers/split.rs
use crate::Stream; use pin_project_lite::pin_project; use std::io; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::io::{AsyncBufRead, Split}; pin_project! { /// A wrapper around [`tokio::io::Split`] that implements [`Stream`]. /// /// # Example /// /// ``` /// use tokio::io::Async...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/src/wrappers/signal_unix.rs
tokio-stream/src/wrappers/signal_unix.rs
use crate::Stream; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::signal::unix::Signal; /// A wrapper around [`Signal`] that implements [`Stream`]. /// /// # Example /// /// ```no_run /// use tokio::signal::unix::{signal, SignalKind}; /// use tokio_stream::{StreamExt, wrappers::SignalStream}; /// /// # ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/mpsc_unbounded_stream.rs
tokio-stream/tests/mpsc_unbounded_stream.rs
use futures::{Stream, StreamExt}; use tokio::sync::mpsc; use tokio_stream::wrappers::UnboundedReceiverStream; #[tokio::test] async fn size_hint_stream_open() { let (tx, rx) = mpsc::unbounded_channel(); tx.send(1).unwrap(); tx.send(2).unwrap(); let mut stream = UnboundedReceiverStream::new(rx); a...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/time_throttle.rs
tokio-stream/tests/time_throttle.rs
#![warn(rust_2018_idioms)] #![cfg(all(feature = "time", feature = "sync", feature = "io-util"))] use tokio::time; use tokio_stream::StreamExt; use tokio_test::*; use std::time::Duration; #[tokio::test] async fn usage() { time::pause(); let mut stream = task::spawn(futures::stream::repeat(()).throttle(Durati...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_iter.rs
tokio-stream/tests/stream_iter.rs
use tokio_stream as stream; use tokio_test::task; use std::iter; #[tokio::test] async fn coop() { let mut stream = task::spawn(stream::iter(iter::repeat(1))); for _ in 0..10_000 { if stream.poll_next().is_pending() { assert!(stream.is_woken()); return; } } pan...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_once.rs
tokio-stream/tests/stream_once.rs
use tokio_stream::{self as stream, Stream, StreamExt}; #[tokio::test] async fn basic_usage() { let mut one = stream::once(1); assert_eq!(one.size_hint(), (1, Some(1))); assert_eq!(Some(1), one.next().await); assert_eq!(one.size_hint(), (0, Some(0))); assert_eq!(None, one.next().await); }
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_close.rs
tokio-stream/tests/stream_close.rs
use tokio_stream::{StreamExt, StreamNotifyClose}; #[tokio::test] async fn basic_usage() { let mut stream = StreamNotifyClose::new(tokio_stream::iter(vec![0, 1])); assert_eq!(stream.next().await, Some(Some(0))); assert_eq!(stream.next().await, Some(Some(1))); assert_eq!(stream.next().await, Some(None))...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_merge.rs
tokio-stream/tests/stream_merge.rs
use tokio_stream::{self as stream, Stream, StreamExt}; use tokio_test::task; use tokio_test::{assert_pending, assert_ready}; mod support { pub(crate) mod mpsc; } use support::mpsc; #[tokio::test] async fn merge_sync_streams() { let mut s = stream::iter(vec![0, 2, 4, 6]).merge(stream::iter(vec![1, 3, 5])); ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_stream_map.rs
tokio-stream/tests/stream_stream_map.rs
use futures::stream::iter; use tokio_stream::{self as stream, pending, Stream, StreamExt, StreamMap}; use tokio_test::{assert_ok, assert_pending, assert_ready, task}; use std::future::{poll_fn, Future}; use std::pin::{pin, Pin}; use std::task::Poll; mod support { pub(crate) mod mpsc; } use support::mpsc; macro_...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/chunks_timeout.rs
tokio-stream/tests/chunks_timeout.rs
#![warn(rust_2018_idioms)] #![cfg(all(feature = "time", feature = "sync", feature = "io-util"))] use tokio::time; use tokio_stream::{self as stream, StreamExt}; use tokio_test::assert_pending; use tokio_test::task; use futures::FutureExt; use std::time::Duration; #[tokio::test(start_paused = true)] async fn usage() ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_chunks_timeout.rs
tokio-stream/tests/stream_chunks_timeout.rs
#![warn(rust_2018_idioms)] use futures::FutureExt; use std::error::Error; use tokio::time; use tokio::time::Duration; use tokio_stream::{self as stream, StreamExt}; use tokio_test::assert_pending; use tokio_test::task; #[tokio::test(start_paused = true)] async fn stream_chunks_remainder() -> Result<(), Box<dyn Error>...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/watch.rs
tokio-stream/tests/watch.rs
#![cfg(feature = "sync")] use tokio::sync::watch; use tokio_stream::wrappers::WatchStream; use tokio_stream::StreamExt; use tokio_test::assert_pending; use tokio_test::task::spawn; #[tokio::test] async fn watch_stream_message_not_twice() { let (tx, rx) = watch::channel("hello"); let mut counter = 0; let ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_timeout.rs
tokio-stream/tests/stream_timeout.rs
#![cfg(all(feature = "time", feature = "sync", feature = "io-util"))] use tokio::time::{self, sleep, Duration}; use tokio_stream::StreamExt; use tokio_test::*; use futures::stream; async fn maybe_sleep(idx: i32) -> i32 { if idx % 2 == 0 { sleep(ms(200)).await; } idx } fn ms(n: u64) -> Duration {...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/mpsc_bounded_stream.rs
tokio-stream/tests/mpsc_bounded_stream.rs
use futures::{Stream, StreamExt}; use tokio::sync::mpsc; use tokio_stream::wrappers::ReceiverStream; #[tokio::test] async fn size_hint_stream_open() { let (tx, rx) = mpsc::channel(4); tx.send(1).await.unwrap(); tx.send(2).await.unwrap(); let mut stream = ReceiverStream::new(rx); assert_eq!(strea...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_empty.rs
tokio-stream/tests/stream_empty.rs
use tokio_stream::{self as stream, Stream, StreamExt}; #[tokio::test] async fn basic_usage() { let mut stream = stream::empty::<i32>(); for _ in 0..2 { assert_eq!(stream.size_hint(), (0, Some(0))); assert_eq!(None, stream.next().await); } }
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_chain.rs
tokio-stream/tests/stream_chain.rs
use tokio_stream::{self as stream, Stream, StreamExt}; use tokio_test::{assert_pending, assert_ready, task}; mod support { pub(crate) mod mpsc; } use support::mpsc; use tokio_stream::adapters::Chain; #[tokio::test] async fn basic_usage() { let one = stream::iter(vec![1, 2, 3]); let two = stream::iter(vec...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_pending.rs
tokio-stream/tests/stream_pending.rs
use tokio_stream::{self as stream, Stream, StreamExt}; use tokio_test::{assert_pending, task}; #[tokio::test] async fn basic_usage() { let mut stream = stream::pending::<i32>(); for _ in 0..2 { assert_eq!(stream.size_hint(), (0, None)); let mut next = task::spawn(async { stream.next().await }...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_panic.rs
tokio-stream/tests/stream_panic.rs
#![warn(rust_2018_idioms)] #![cfg(all(feature = "time", not(target_os = "wasi")))] // Wasi does not support panic recovery #![cfg(panic = "unwind")] use parking_lot::{const_mutex, Mutex}; use std::error::Error; use std::panic; use std::sync::Arc; use tokio::time::Duration; use tokio_stream::{self as stream, StreamExt}...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/async_send_sync.rs
tokio-stream/tests/async_send_sync.rs
#![allow(clippy::diverging_sub_expression)] use std::rc::Rc; #[allow(dead_code)] type BoxStream<T> = std::pin::Pin<Box<dyn tokio_stream::Stream<Item = T>>>; #[allow(dead_code)] fn require_send<T: Send>(_t: &T) {} #[allow(dead_code)] fn require_sync<T: Sync>(_t: &T) {} #[allow(dead_code)] fn require_unpin<T: Unpin>(_...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_collect.rs
tokio-stream/tests/stream_collect.rs
use tokio_stream::{self as stream, StreamExt}; use tokio_test::{assert_pending, assert_ready, assert_ready_err, assert_ready_ok, task}; mod support { pub(crate) mod mpsc; } use support::mpsc; #[allow(clippy::let_unit_value)] #[tokio::test] async fn empty_unit() { // Drains the stream. let mut iter = vec!...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/stream_fuse.rs
tokio-stream/tests/stream_fuse.rs
use tokio_stream::{Stream, StreamExt}; use std::pin::Pin; use std::task::{Context, Poll}; // a stream which alternates between Some and None struct Alternate { state: i32, } impl Stream for Alternate { type Item = i32; fn poll_next(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Option<i32>> { ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/tests/support/mpsc.rs
tokio-stream/tests/support/mpsc.rs
use async_stream::stream; use tokio::sync::mpsc::{self, UnboundedSender}; use tokio_stream::Stream; pub fn unbounded_channel_stream<T: Unpin>() -> (UnboundedSender<T>, impl Stream<Item = T>) { let (tx, mut rx) = mpsc::unbounded_channel(); let stream = stream! { while let Some(item) = rx.recv().await {...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-stream/fuzz/fuzz_targets/fuzz_stream_map.rs
tokio-stream/fuzz/fuzz_targets/fuzz_stream_map.rs
#![no_main] use libfuzzer_sys::fuzz_target; use std::pin::Pin; use tokio_stream::{self as stream, Stream, StreamMap}; use tokio_test::{assert_pending, assert_ready, task}; macro_rules! assert_ready_none { ($($t:tt)*) => { match assert_ready!($($t)*) { None => {} Some(v) => panic!(...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/src/lib.rs
tests-build/src/lib.rs
#[cfg(feature = "tokio")] pub use tokio;
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/macros_clippy.rs
tests-build/tests/macros_clippy.rs
#[cfg(feature = "full")] #[tokio::test] async fn test_with_semicolon_without_return_type() { #![deny(clippy::semicolon_if_nothing_returned)] dbg!(0); }
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/macros.rs
tests-build/tests/macros.rs
#[test] #[cfg_attr(miri, ignore)] fn compile_fail_full() { let t = trybuild::TestCases::new(); #[cfg(feature = "full")] t.pass("tests/pass/forward_args_and_output.rs"); #[cfg(feature = "full")] t.pass("tests/pass/macros_main_return.rs"); #[cfg(feature = "full")] t.pass("tests/pass/macros_...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/fail/macros_type_mismatch.rs
tests-build/tests/fail/macros_type_mismatch.rs
use tests_build::tokio; #[tokio::main] async fn missing_semicolon_or_return_type() { Ok(()) } #[tokio::main] async fn missing_return_type() { return Ok(()); } #[tokio::main] async fn extra_semicolon() -> Result<(), ()> { /* TODO(taiki-e): help message still wrong help: try using a variant of the expe...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/fail/macros_invalid_input.rs
tests-build/tests/fail/macros_invalid_input.rs
#![deny(duplicate_macro_attributes)] use tests_build::tokio; #[tokio::main] fn main_is_not_async() {} #[tokio::main(foo)] async fn main_attr_has_unknown_args() {} #[tokio::main(threadpool::bar)] async fn main_attr_has_path_args() {} #[tokio::test] fn test_is_not_async() {} #[tokio::test(foo)] async fn test_attr_h...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/fail/macros_join.rs
tests-build/tests/fail/macros_join.rs
use tests_build::tokio; #[tokio::main] async fn main() { // do not leak `RotatorSelect` let _ = tokio::join!(async { fn foo(_: impl RotatorSelect) {} }); // do not leak `std::task::Poll::Pending` let _ = tokio::join!(async { Pending }); // do not leak `std::task::Poll::Ready` let ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/fail/macros_dead_code.rs
tests-build/tests/fail/macros_dead_code.rs
#![deny(dead_code)] use tests_build::tokio; #[tokio::main] async fn f() {} fn main() {}
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/fail/macros_try_join.rs
tests-build/tests/fail/macros_try_join.rs
use tests_build::tokio; #[tokio::main] async fn main() { // do not leak `RotatorSelect` let _ = tokio::try_join!(async { fn foo(_: impl RotatorSelect) {} }); // do not leak `std::task::Poll::Pending` let _ = tokio::try_join!(async { Pending }); // do not leak `std::task::Poll::Ready` ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/fail/macros_core_no_default.rs
tests-build/tests/fail/macros_core_no_default.rs
use tests_build::tokio; #[tokio::main] async fn my_fn() {} fn main() {}
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/pass/forward_args_and_output.rs
tests-build/tests/pass/forward_args_and_output.rs
use tests_build::tokio; fn main() {} // arguments and output type is forwarded so other macros can access them #[tokio::test] async fn test_fn_has_args(_x: u8) {} #[tokio::test] async fn test_has_output() -> Result<(), Box<dyn std::error::Error>> { Ok(()) }
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/pass/macros_main_return.rs
tests-build/tests/pass/macros_main_return.rs
use tests_build::tokio; #[tokio::main] async fn main() -> Result<(), ()> { return Ok(()); }
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tests-build/tests/pass/macros_main_loop.rs
tests-build/tests/pass/macros_main_loop.rs
use tests_build::tokio; #[tokio::main] async fn main() -> Result<(), ()> { loop { if !never() { return Ok(()); } } } fn never() -> bool { std::time::Instant::now() > std::time::Instant::now() }
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/src/lib.rs
tokio-test/src/lib.rs
#![warn( missing_debug_implementations, missing_docs, rust_2018_idioms, unreachable_pub )] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables)) ))] //! Tokio and Futures based testing utilities pub mod io; pub mod stream_mock; mod macros; pu...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/src/io.rs
tokio-test/src/io.rs
#![cfg(not(loom))] //! A mock type implementing [`AsyncRead`] and [`AsyncWrite`]. //! //! //! # Overview //! //! Provides a type that implements [`AsyncRead`] + [`AsyncWrite`] that can be configured //! to handle an arbitrary sequence of read and write operations. This is useful //! for writing unit tests for networki...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/src/stream_mock.rs
tokio-test/src/stream_mock.rs
#![cfg(not(loom))] //! A mock stream implementing [`Stream`]. //! //! # Overview //! This crate provides a `StreamMock` that can be used to test code that interacts with streams. //! It allows you to mock the behavior of a stream and control the items it yields and the waiting //! intervals between items. //! //! # Us...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/src/macros.rs
tokio-test/src/macros.rs
//! A collection of useful macros for testing futures and tokio based code /// Asserts a `Poll` is ready, returning the value. /// /// This will invoke `panic!` if the provided `Poll` does not evaluate to `Poll::Ready` at /// runtime. /// /// # Custom Messages /// /// This macro has a second form, where a custom panic...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/src/task.rs
tokio-test/src/task.rs
//! Futures task based helpers to easily test futures and manually written futures. //! //! The [`Spawn`] type is used as a mock task harness that allows you to poll futures //! without needing to setup pinning or context. Any future can be polled but if the //! future requires the tokio async context you will need to ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/tests/io.rs
tokio-test/tests/io.rs
#![warn(rust_2018_idioms)] use std::io; use tokio::io::{AsyncReadExt, AsyncWriteExt}; use tokio::time::{Duration, Instant}; use tokio_test::io::Builder; #[tokio::test] async fn read() { let mut mock = Builder::new().read(b"hello ").read(b"world!").build(); let mut buf = [0; 256]; let n = mock.read(&mut ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/tests/stream_mock.rs
tokio-test/tests/stream_mock.rs
use futures_util::StreamExt; use std::time::Duration; use tokio_test::stream_mock::StreamMockBuilder; #[tokio::test] async fn test_stream_mock_empty() { let mut stream_mock = StreamMockBuilder::<u32>::new().build(); assert_eq!(stream_mock.next().await, None); assert_eq!(stream_mock.next().await, None); } ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/tests/block_on.rs
tokio-test/tests/block_on.rs
#![warn(rust_2018_idioms)] use tokio::time::{sleep_until, Duration, Instant}; use tokio_test::block_on; #[test] fn async_block() { assert_eq!(4, block_on(async { 4 })); } async fn five() -> u8 { 5 } #[test] fn async_fn() { assert_eq!(5, block_on(five())); } #[test] fn test_sleep() { let deadline = ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/tests/macros.rs
tokio-test/tests/macros.rs
#![warn(rust_2018_idioms)] use std::task::Poll; use tokio_test::{ assert_pending, assert_ready, assert_ready_eq, assert_ready_err, assert_ready_ok, }; fn ready() -> Poll<()> { Poll::Ready(()) } fn ready_ok() -> Poll<Result<(), ()>> { Poll::Ready(Ok(())) } fn ready_err() -> Poll<Result<(), ()>> { Pol...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio-test/tests/task.rs
tokio-test/tests/task.rs
use std::pin::Pin; use std::task::{Context, Poll}; use tokio_stream::Stream; use tokio_test::task; /// A [`Stream`] that has a stub size hint. struct SizedStream; impl Stream for SizedStream { type Item = (); fn poll_next(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Option<Self::Item>> { Poll...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_watch.rs
benches/sync_watch.rs
use rand::prelude::*; use std::sync::atomic::{AtomicU64, Ordering}; use std::sync::Arc; use tokio::sync::{watch, Notify}; use criterion::measurement::WallTime; use criterion::{black_box, criterion_group, criterion_main, BenchmarkGroup, Criterion}; fn rt() -> tokio::runtime::Runtime { tokio::runtime::Builder::new_...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/time_timeout.rs
benches/time_timeout.rs
use std::time::{Duration, Instant}; use criterion::{black_box, criterion_group, criterion_main, Criterion}; use tokio::{ runtime::Runtime, time::{sleep, timeout}, }; // a very quick async task, but might timeout async fn quick_job() -> usize { 1 } fn build_run_time(workers: usize) -> Runtime { if wor...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_semaphore.rs
benches/sync_semaphore.rs
use std::sync::Arc; use tokio::runtime::Runtime; use tokio::{sync::Semaphore, task}; use criterion::measurement::WallTime; use criterion::{criterion_group, criterion_main, BenchmarkGroup, Criterion}; fn single_rt() -> Runtime { tokio::runtime::Builder::new_current_thread() .build() .unwrap() } fn...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/fs.rs
benches/fs.rs
#![cfg(unix)] use tokio_stream::StreamExt; use tokio::fs::File; use tokio::io::AsyncReadExt; use tokio_util::codec::{BytesCodec, FramedRead /*FramedWrite*/}; use criterion::{criterion_group, criterion_main, Criterion}; use std::fs::File as StdFile; use std::io::Read as StdRead; fn rt() -> tokio::runtime::Runtime {...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/spawn.rs
benches/spawn.rs
//! Benchmark spawning a task onto the basic and threaded Tokio executors. //! This essentially measure the time to enqueue a task in the local and remote //! case. use criterion::{black_box, criterion_group, criterion_main, Criterion}; async fn work() -> usize { let val = 1 + 1; tokio::task::yield_now().awai...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_mpsc_oneshot.rs
benches/sync_mpsc_oneshot.rs
use tokio::{ runtime::Runtime, sync::{mpsc, oneshot}, }; use criterion::{criterion_group, criterion_main, Criterion}; fn request_reply_current_thread(c: &mut Criterion) { let rt = tokio::runtime::Builder::new_current_thread() .build() .unwrap(); request_reply(c, rt); } fn request_rep...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/signal.rs
benches/signal.rs
//! Benchmark the delay in propagating OS signals to any listeners. #![cfg(unix)] use criterion::{criterion_group, criterion_main, Criterion}; use std::future::Future; use std::pin::Pin; use std::task::{Context, Poll}; use tokio::runtime; use tokio::signal::unix::{signal, SignalKind}; use tokio::sync::mpsc; struct Sp...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_broadcast.rs
benches/sync_broadcast.rs
use rand::{Rng, RngCore, SeedableRng}; use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::Arc; use tokio::sync::{broadcast, Notify}; use criterion::measurement::WallTime; use criterion::{black_box, criterion_group, criterion_main, BenchmarkGroup, Criterion}; fn rt() -> tokio::runtime::Runtime { tokio:...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/rt_multi_threaded.rs
benches/rt_multi_threaded.rs
//! Benchmark implementation details of the threaded scheduler. These benches are //! intended to be used as a form of regression testing and not as a general //! purpose benchmark demonstrating real-world performance. use tokio::runtime::{self, Runtime}; use tokio::sync::oneshot; use std::sync::atomic::Ordering::Rel...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_mpsc.rs
benches/sync_mpsc.rs
use tokio::sync::mpsc; use criterion::measurement::WallTime; use criterion::{black_box, criterion_group, criterion_main, BenchmarkGroup, Criterion}; #[derive(Debug, Copy, Clone)] struct Medium(#[allow(dead_code)] [usize; 64]); impl Default for Medium { fn default() -> Self { Medium([0; 64]) } } #[der...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/copy.rs
benches/copy.rs
use criterion::{criterion_group, criterion_main, Criterion}; use rand::{Rng, SeedableRng}; use rand_chacha::ChaCha20Rng; use tokio::io::{copy, repeat, AsyncRead, AsyncReadExt, AsyncWrite}; use tokio::time::{interval, Interval, MissedTickBehavior}; use std::task::Poll; use std::time::Duration; const KILO: usize = 10...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/rt_current_thread.rs
benches/rt_current_thread.rs
//! Benchmark implementation details of the threaded scheduler. These benches are //! intended to be used as a form of regression testing and not as a general //! purpose benchmark demonstrating real-world performance. use tokio::runtime::{self, Runtime}; use criterion::{criterion_group, criterion_main, Criterion}; ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/time_now.rs
benches/time_now.rs
//! Benchmark spawning a task onto the basic and threaded Tokio executors. //! This essentially measure the time to enqueue a task in the local and remote //! case. use criterion::{black_box, criterion_group, criterion_main, Criterion}; fn time_now_current_thread(c: &mut Criterion) { let rt = tokio::runtime::Buil...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_rwlock.rs
benches/sync_rwlock.rs
use std::sync::Arc; use tokio::{sync::RwLock, task}; use criterion::measurement::WallTime; use criterion::{black_box, criterion_group, criterion_main, BenchmarkGroup, Criterion}; fn read_uncontended(g: &mut BenchmarkGroup<WallTime>) { let rt = tokio::runtime::Builder::new_multi_thread() .worker_threads(6)...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/spawn_blocking.rs
benches/spawn_blocking.rs
//! Benchmark spawn_blocking at different concurrency levels on the multi-threaded scheduler. //! //! For each parallelism level N (1, 2, 4, 8, 16, 32, 64, capped at available parallelism): //! - Spawns N regular async tasks //! - Each task spawns M batches of B spawn_blocking tasks (no-ops) //! - Each batch is awaited...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/benches/sync_notify.rs
benches/sync_notify.rs
use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::Arc; use tokio::sync::Notify; use criterion::measurement::WallTime; use criterion::{criterion_group, criterion_main, BenchmarkGroup, Criterion}; fn rt() -> tokio::runtime::Runtime { tokio::runtime::Builder::new_multi_thread() .worker_threads(...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/blocking.rs
tokio/src/blocking.rs
cfg_rt! { pub(crate) use crate::runtime::spawn_blocking; cfg_fs! { #[allow(unused_imports)] pub(crate) use crate::runtime::spawn_mandatory_blocking; } pub(crate) use crate::task::JoinHandle; } cfg_not_rt! { use std::fmt; use std::future::Future; use std::pin::Pin; use ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/lib.rs
tokio/src/lib.rs
#![allow( clippy::cognitive_complexity, clippy::large_enum_variant, clippy::module_inception, clippy::needless_doctest_main )] #![warn( missing_debug_implementations, missing_docs, rust_2018_idioms, unreachable_pub )] #![deny(unused_must_use, unsafe_op_in_unsafe_fn)] #![doc(test( no_...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/fuzz.rs
tokio/src/fuzz.rs
pub use crate::util::linked_list::tests::fuzz_linked_list;
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/util/sharded_list.rs
tokio/src/util/sharded_list.rs
use std::ptr::NonNull; use std::sync::atomic::Ordering; use crate::loom::sync::{Mutex, MutexGuard}; use crate::util::metric_atomics::{MetricAtomicU64, MetricAtomicUsize}; use super::linked_list::{Link, LinkedList}; /// An intrusive linked list supporting highly concurrent updates. /// /// It currently relies on `Lin...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/util/blocking_check.rs
tokio/src/util/blocking_check.rs
#[cfg(unix)] use std::os::fd::AsFd; #[cfg(unix)] #[allow(unused_variables)] #[track_caller] pub(crate) fn check_socket_for_blocking<S: AsFd>(s: &S) -> crate::io::Result<()> { #[cfg(not(tokio_allow_from_blocking_fd))] { let sock = socket2::SockRef::from(s); debug_assert!( sock.nonbl...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/util/wake_list.rs
tokio/src/util/wake_list.rs
use core::mem::MaybeUninit; use core::ptr; use std::task::Waker; const NUM_WAKERS: usize = 32; /// A list of wakers to be woken. /// /// # Invariants /// /// The first `curr` elements of `inner` are initialized. pub(crate) struct WakeList { inner: [MaybeUninit<Waker>; NUM_WAKERS], curr: usize, } impl WakeLis...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/util/wake.rs
tokio/src/util/wake.rs
use crate::loom::sync::Arc; use std::marker::PhantomData; use std::mem::ManuallyDrop; use std::ops::Deref; use std::task::{RawWaker, RawWakerVTable, Waker}; /// Simplified waking interface based on Arcs. pub(crate) trait Wake: Send + Sync + Sized + 'static { /// Wake by value. fn wake(arc_self: Arc<Self>); ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false
tokio-rs/tokio
https://github.com/tokio-rs/tokio/blob/41d1877689f8669902b003a6affce60bdfeb3025/tokio/src/util/bit.rs
tokio/src/util/bit.rs
use std::fmt; #[derive(Clone, Copy, PartialEq)] pub(crate) struct Pack { mask: usize, shift: u32, } impl Pack { /// Value is packed in the `width` least-significant bits. pub(crate) const fn least_significant(width: u32) -> Pack { let mask = mask_for(width); Pack { mask, shift: 0 } ...
rust
MIT
41d1877689f8669902b003a6affce60bdfeb3025
2026-01-04T15:33:40.250594Z
false