Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for npipe (0.06 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/os/signal/doc.go

    # SIGPIPE
    
    When a Go program writes to a broken pipe, the kernel will raise a
    SIGPIPE signal.
    
    If the program has not called Notify to receive SIGPIPE signals, then
    the behavior depends on the file descriptor number. A write to a
    broken pipe on file descriptors 1 or 2 (standard output or standard
    error) will cause the program to exit with a SIGPIPE signal. A write
    to a broken pipe on some other file descriptor will take no action on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/os/exec_test.go

    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatalf("Pipe() got err %v, want nil", err)
    	}
    	defer r.Close()
    	defer w.Close()
    
    	p, err := os.StartProcess(testenv.GoToolPath(t), []string{"go"}, &os.ProcAttr{
    		// N.B. On Windows, StartProcess requires exactly 3 Files. Pass
    		// in a dummy pipe to avoid irrelevant output on the test stdout.
    		Files: []*os.File{r, w, w},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    }
    
    // StdinPipe returns a pipe that will be connected to the command's
    // standard input when the command starts.
    // The pipe will be closed automatically after [Cmd.Wait] sees the command exit.
    // A caller need only call Close to force the pipe to close sooner.
    // For example, if the command being run will not exit until standard input
    // is closed, the caller must close the pipe.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. cni/pkg/log/uds_test.go

    	stop := make(chan struct{})
    	defer close(stop)
    	assert.NoError(t, logger.StartUDSLogServer(udsSock, stop))
    
    	// Configure log to tee to UDS server
    	stdout := os.Stdout
    	r, w, _ := os.Pipe()
    	os.Stdout = w
    	loggingOptions := istiolog.DefaultOptions()
    	loggingOptions.JSONEncoding = true
    	loggingOptions.WithTeeToUDS(udsSock, constants.UDSLogPath)
    	assert.NoError(t, istiolog.Configure(loggingOptions))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/os/exec/exec_test.go

    	//
    	// When issue #61080 was present, a long-lived "hang" subprocess would
    	// occasionally inherit the fork/exec status pipe from an "exit" subprocess,
    	// causing the parent process (which expects to see an EOF on that pipe almost
    	// immediately) to unexpectedly block on reading from the pipe.
    	var (
    		nHangs       = runtime.GOMAXPROCS(0)
    		nExits       = runtime.GOMAXPROCS(0)
    		hangs, exits sync.WaitGroup
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  7. cmd/metacache-set.go

    		return nil
    	}
    	readers := make([]*metacacheReader, len(disks))
    	defer func() {
    		for _, r := range readers {
    			r.Close()
    		}
    	}()
    	for i := range disks {
    		r, w := io.Pipe()
    		// Make sure we close the pipe so blocked writes doesn't stay around.
    		defer r.CloseWithError(context.Canceled)
    
    		readers[i] = newMetacacheReader(r)
    		d := disks[i]
    
    		// Send request to each disk.
    		go func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    	address := BuildNetworkAddress(bind, port, istionetworking.TransportProtocolTCP)
    	if address != nil {
    		return address
    	}
    
    	return &core.Address{
    		Address: &core.Address_Pipe{
    			Pipe: &core.Pipe{
    				Path: strings.TrimPrefix(bind, model.UnixAddressPrefix),
    			},
    		},
    	}
    }
    
    // BuildAdditionalAddresses can add extra addresses to additional addresses for a listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder.go

    	ep := &endpoint.LbEndpoint{
    		HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    			Endpoint: &endpoint.Endpoint{
    				Address: &core.Address{
    					Address: &core.Address_Pipe{
    						Pipe: &core.Pipe{
    							Path: addr,
    						},
    					},
    				},
    			},
    		},
    	}
    	options := &http.HttpProtocolOptions{}
    	options.UpstreamProtocolOptions = &http.HttpProtocolOptions_ExplicitHttpConfig_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. 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)
Back to top