Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for npipe (0.04 sec)

  1. 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)
  2. 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)
  3. src/runtime/debug/garbage.go

    // it to the given file descriptor.
    //
    // WriteHeapDump suspends the execution of all goroutines until the heap
    // dump is completely written.  Thus, the file descriptor must not be
    // connected to a pipe or socket whose other end is in the same Go
    // process; instead, use a temporary file or network socket.
    //
    // The heap dump format is defined at https://golang.org/s/go15heapdump.
    func WriteHeapDump(fd uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/crypto/tls/boring_test.go

    func TestBoringClientHello(t *testing.T) {
    	// Test that no matter what we put in the client config,
    	// the client does not offer non-FIPS configurations.
    	fipstls.Force()
    	defer fipstls.Abandon()
    
    	c, s := net.Pipe()
    	defer c.Close()
    	defer s.Close()
    
    	clientConfig := testConfig.Clone()
    	// All sorts of traps for the client to avoid.
    	clientConfig.MinVersion = VersionSSL30
    	clientConfig.MaxVersion = VersionTLS13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_test.go

    	}
    	path := file.Name()
    	file.WriteString(contents)
    	file.Close()
    	return path
    }
    
    // localListener is set up by TestMain and used by localPipe to create Conn
    // pairs like net.Pipe, but connected by an actual buffered TCP connection.
    var localListener struct {
    	mu   sync.Mutex
    	addr net.Addr
    	ch   chan net.Conn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. src/math/rand/v2/regress_test.go

    	}
    }
    
    func TestUpdateExample(t *testing.T) {
    	if !*update {
    		t.Skip("-update not given")
    	}
    
    	oldStdout := os.Stdout
    	defer func() {
    		os.Stdout = oldStdout
    	}()
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer r.Close()
    	defer w.Close()
    
    	go func() {
    		os.Stdout = w
    		Example_rand()
    		os.Stdout = oldStdout
    		w.Close()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. internal/ringbuffer/ring_buffer.go

    	ErrWriteOnClosed = errors.New("write on closed ringbuffer")
    )
    
    // RingBuffer is a circular buffer that implement io.ReaderWriter interface.
    // It operates like a buffered pipe, where data written to a RingBuffer
    // and can be read back from another goroutine.
    // It is safe to concurrently read and write RingBuffer.
    type RingBuffer struct {
    	buf       []byte
    	size      int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    		{"Cost Benefit Analysis (2009-2010).pptx", true},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", true},
    		{"SHØRT", true},
    		{"f*le", true},
    		{"contains-^-caret", true},
    		{"contains-|-pipe", true},
    		{"contains-`-tick", true},
    		{"..test", true},
    		{".. test", true},
    		{". test", true},
    		{".test", true},
    		{"There are far too many object names, and far too few bucket names!", true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. cmd/storage-rest-client.go

    	}
    	respBody, err := client.call(ctx, storageRESTMethodReadMultiple, nil, bytes.NewReader(body), int64(len(body)))
    	if err != nil {
    		return err
    	}
    	defer xhttp.DrainBody(respBody)
    
    	pr, pw := io.Pipe()
    	go func() {
    		pw.CloseWithError(waitForHTTPStream(respBody, ioutil.NewDeadlineWriter(pw, globalDriveConfig.GetMaxTimeout())))
    	}()
    	mr := msgp.NewReader(pr)
    	defer readMsgpReaderPoolPut(mr)
    	for {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_aix_ppc64.go

    //go:build aix && ppc64
    
    package syscall
    
    import "unsafe"
    
    //go:cgo_import_dynamic libc_fcntl fcntl "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_Dup2 dup2 "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_pipe pipe "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_readlink readlink "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_utimes utimes "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_utimensat utimensat "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top