Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created August 31, 2021 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/0733e291bae17252885a07c9d3dca659 to your computer and use it in GitHub Desktop.
Save Whateverable/0733e291bae17252885a07c9d3dca659 to your computer and use it in GitHub Desktop.
greppable6
ThreadPoolScheduler
File Code
JSTOWE/Audio-Libshout
…/Libshout.pm :665:
$!helper-promise = Promise.start(&send, scheduler => ThreadPoolScheduler.new);
JSTOWE/Manifesto
…/030-failures.t :8:
my $*SCHEDULER = ThreadPoolScheduler.new(max_threads => 1);
FCO/Test-Fuzz
…/classes :97:
ThreadPoolScheduler
finanalyst/pod-cached
…/Cached.pm6 :141:
PROCESS::<$SCHEDULER> = ThreadPoolScheduler.new(initial_threads => 0, max_threads => MAX-COMPILATIONS);
perl6/Blin
…/blin.p6 :317:
# ThreadPoolScheduler. Note that as of today machines with
perl6/doc
…/concurrency.pod6 :750:
=head3 ThreadPoolScheduler
perl6/doc
…/concurrency.pod6 :752:
The L<ThreadPoolScheduler|/type/ThreadPoolScheduler> is the default scheduler, it maintains a pool
perl6/doc
…/variables.pod6 :1501:
This is a L<ThreadPoolScheduler|/type/ThreadPoolScheduler> object representing the current default
perl6/doc
…/variables.pod6 :1511:
my $*SCHEDULER = ThreadPoolScheduler.new( max_threads => 128 );
perl6/doc
…/ThreadPool.p6 :6:
=SUBTITLE Instrument for collecting ThreadPoolScheduler data
perl6/doc
…/ThreadPoolScheduler.pod6 :3:
=TITLE class ThreadPoolScheduler
perl6/doc
…/ThreadPoolScheduler.pod6 :8:
class ThreadPoolScheduler does Scheduler {}
perl6/doc
…/ThreadPoolScheduler.pod6 :11:
The C<ThreadPoolScheduler> has a range of number of threads that it maintains,
perl6/doc
…/ThreadPoolScheduler.pod6 :22:
Creates a new C<ThreadPoolScheduler> object with the given range of threads to
perl6/doc
…/type-graph.txt :180:
class ThreadPoolScheduler does Scheduler
perl6/perl6-pod-to-bigpage
…/pod2onepage :33:
PROCESS::<$SCHEDULER> = ThreadPoolScheduler.new(initial_threads => 0, max_threads => $threads);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment