Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for mkfifo (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s

    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_UtimesNanoAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·UtimesNano(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_MkfifoatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Mkfifoat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_ChtagAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Chtag(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    TEXT ·get_ReadlinkatAddr(SB), NOSPLIT|NOFRAME, $0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. cmd/bucket-quota.go

    	}
    	if !quotaCfg.IsValid() {
    		if quotaCfg.Type == "fifo" {
    			internalLogIf(GlobalContext, errors.New("Detected older 'fifo' quota config, 'fifo' feature is removed and not supported anymore. Please clear your quota configs using 'mc admin bucket quota alias/bucket --clear' and use 'mc ilm add' for expiration of objects"), logger.WarningKind)
    			return quotaCfg, fmt.Errorf("invalid quota type 'fifo'")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/make.rc

    	exit wrongdir
    }
    
    # Clean old generated file that will cause problems in the build.
    rm -f ./runtime/runtime_defs.go
    
    # Determine the host compiler toolchain.
    eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
    
    vflag=()
    if(~ $1 -v) {
    	vflag=(-v)
    	shift
    }
    
    fn bootstrapenv {
    	GOROOT=$GOROOT_BOOTSTRAP GO111MODULE=off GOENV=off GOOS=() GOARCH=() GOEXPERIMENT=() GOFLAGS=() $*
    }
    
    bootgo = 1.20.6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. src/os/types.go

    	ModeTemporary  = fs.ModeTemporary  // T: temporary file; Plan 9 only
    	ModeSymlink    = fs.ModeSymlink    // L: symbolic link
    	ModeDevice     = fs.ModeDevice     // D: device file
    	ModeNamedPipe  = fs.ModeNamedPipe  // p: named pipe (FIFO)
    	ModeSocket     = fs.ModeSocket     // S: Unix domain socket
    	ModeSetuid     = fs.ModeSetuid     // u: setuid
    	ModeSetgid     = fs.ModeSetgid     // g: setgid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/runtime/tracebuf.go

    		w.byte(byte(exp))
    	}
    	w.varint(uint64(w.gen))
    	w.varint(uint64(mID))
    	w.varint(uint64(ts))
    	w.traceBuf.lenPos = w.varintReserve()
    	return w
    }
    
    // traceBufQueue is a FIFO of traceBufs.
    type traceBufQueue struct {
    	head, tail *traceBuf
    }
    
    // push queues buf into queue of buffers.
    func (q *traceBufQueue) push(buf *traceBuf) {
    	buf.link = nil
    	if q.head == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. 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)
  7. src/os/types_windows.go

    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    			// to avoid files changing unpredictably from regular to irregular we will
    			// consider DEDUP files to be close enough to regular to treat as such.
    		default:
    			m |= ModeIrregular
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/resourcequota/resource_quota_monitor.go

    					eventType: updateEvent,
    					obj:       newObj,
    					oldObj:    oldObj,
    					gvr:       resource,
    				}
    				qm.resourceChanges.Add(event)
    			}
    		},
    		DeleteFunc: func(obj interface{}) {
    			// delta fifo may wrap the object in a cache.DeletedFinalStateUnknown, unwrap it
    			if deletedFinalStateUnknown, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    				obj = deletedFinalStateUnknown.Obj
    			}
    			event := &event{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    	// that was created from net package and was opened using net_newUnixFile.
    	kindSock
    	// kindNoPoll means that we should not put the descriptor into
    	// non-blocking mode, because we know it is not a pipe or FIFO.
    	// Used by openDirAt and openDirNolog for directories.
    	kindNoPoll
    )
    
    // newFile is like NewFile, but if called from OpenFile or Pipe
    // (as passed in the kind parameter) it tries to add the file to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top