Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for npipe (0.07 sec)

  1. cluster/gce/util.sh

      # Turn off kernel memory cgroup notification.
      flags+=" --kernel-memcg-notification=false"
    
      WINDOWS_CONTAINER_RUNTIME_ENDPOINT=${KUBE_WINDOWS_CONTAINER_RUNTIME_ENDPOINT:-npipe:////./pipe/containerd-containerd}
      flags+=" --container-runtime-endpoint=${WINDOWS_CONTAINER_RUNTIME_ENDPOINT}"
    
      # If ENABLE_AUTH_PROVIDER_GCP is set to true, kubelet is enabled to use out-of-tree auth
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	// Direct log output to a pipe.
    	//
    	// We read from the pipe to verify that the handler actually caught the panic
    	// and logged something.
    	//
    	// We use a pipe rather than a buffer, because when testing connection hijacking
    	// server shutdown doesn't wait for the hijacking handler to return, so the
    	// log may occur after the server has shut down.
    	pr, pw := io.Pipe()
    	defer pw.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    		}
    	}
    }
    
    func (p *ReplicationPool) persistToDrive(ctx context.Context, v MRFReplicateEntries) {
    	newReader := func() io.ReadCloser {
    		r, w := io.Pipe()
    		go func() {
    			// Initialize MRF meta header.
    			var data [4]byte
    			binary.LittleEndian.PutUint16(data[0:2], mrfMetaFormat)
    			binary.LittleEndian.PutUint16(data[2:4], mrfMetaVersion)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // The general form of the GOVCS setting is a comma-separated list of
    // pattern:vcslist rules. The pattern is a glob pattern that must match
    // one or more leading elements of the module or import path. The vcslist
    // is a pipe-separated list of allowed version control commands, or "all"
    // to allow use of any known command, or "off" to disallow all commands.
    // Note that if a module matches a pattern with vcslist "off", it may still be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top