Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mkfifo (0.22 sec)

  1. src/sync/mutex.go

    	mutexWoken
    	mutexStarving
    	mutexWaiterShift = iota
    
    	// Mutex fairness.
    	//
    	// Mutex can be in 2 modes of operations: normal and starvation.
    	// In normal mode waiters are queued in FIFO order, but a woken up waiter
    	// does not own the mutex and competes with new arriving goroutines over
    	// the ownership. New arriving goroutines have an advantage -- they are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. hack/unwanted-dependencies.json

            "sigs.k8s.io/kustomize/kyaml"
          ],
          "github.com/pkg/errors": [
            "github.com/Microsoft/hcsshim",
            "github.com/containerd/continuity",
            "github.com/containerd/fifo",
            "github.com/containerd/go-runc",
            "github.com/containerd/typeurl",
            "github.com/google/cadvisor",
            "github.com/grpc-ecosystem/go-grpc-middleware",
            "gotest.tools/v3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    type ObjReaderFn func(inputReader io.Reader, h http.Header, cleanupFns ...func()) (r *GetObjectReader, err error)
    
    // NewGetObjectReader creates a new GetObjectReader. The cleanUpFns
    // are called on Close() in FIFO order as passed in ObjReadFn(). NOTE: It is
    // assumed that clean up functions do not panic (otherwise, they may
    // not all run!).
    func NewGetObjectReader(rs *HTTPRangeSpec, oi ObjectInfo, opts ObjectOptions, h http.Header) (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    // by the checking result.
    type PreEnqueueCheck func(pod *v1.Pod) bool
    
    // SchedulingQueue is an interface for a queue to store pods waiting to be scheduled.
    // The interface follows a pattern similar to cache.FIFO and cache.Heap and
    // makes it easy to use those data structures as a SchedulingQueue.
    type SchedulingQueue interface {
    	framework.PodNominator
    	Add(logger klog.Logger, pod *v1.Pod) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. go.sum

    github.com/containerd/containerd v1.4.9/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA=
    github.com/containerd/continuity v0.1.0/go.mod h1:ICJu0PwR54nI0yPEnJ6jcS+J7CZAUXrLh8lPo2knzsM=
    github.com/containerd/fifo v1.0.0/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4=
    github.com/containerd/go-runc v1.0.0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
Back to top