Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for pipe1 (0.38 sec)

  1. src/cmd/go/internal/work/security.go

    	re(`-m(no-)?ssse3`),
    	re(`-mthumb(-interwork)?`),
    	re(`-mthreads`),
    	re(`-mwindows`),
    	re(`-no-canonical-prefixes`),
    	re(`--param=ssp-buffer-size=[0-9]*`),
    	re(`-pedantic(-errors)?`),
    	re(`-pipe`),
    	re(`-pthread`),
    	re(`-?-std=([^@\-].*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`--sysroot=([^@\-].*)`),
    	re(`-w`),
    	re(`-x([^@\-].*)`),
    	re(`-v`),
    }
    
    var validCompilerFlagsWithNextArg = []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. src/syscall/zerrors_solaris_amd64.go

    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    	33:  "argument out of domain",
    	34:  "result too large",
    	35:  "no message of desired type",
    	36:  "identifier removed",
    	37:  "channel number out of range",
    	38:  "level 2 not synchronized",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/testing/testing.go

    		// With -v=json, stdout and stderr are pointing to the same pipe,
    		// which is leading into test2json. In general, operating systems
    		// do a good job of ensuring that writes to the same pipe through
    		// different file descriptors are delivered whole, so that writing
    		// AAA to stdout and BBB to stderr simultaneously produces
    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/net/http/transport_test.go

    	defer afterTest(t)
    	resBody := make(chan io.Reader, 1)
    	connr, connw := io.Pipe() // connection pipe pair
    	lw := &logWritesConn{
    		rch: resBody,
    		w:   connw,
    	}
    	tr := &Transport{
    		Dial: func(network, addr string) (net.Conn, error) {
    			return lw, nil
    		},
    	}
    	bodyr, bodyw := io.Pipe() // body pipe pair
    	go func() {
    		defer bodyw.Close()
    		for i := 0; i < 3; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	ContextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc)
    }
    
    // pipe is a goroutine-safe io.Reader/io.Writer pair. It's like
    // io.Pipe except there are no PipeReader/PipeWriter halves, and the
    // underlying buffer is an interface. (io.Pipe is always unbuffered)
    type http2pipe struct {
    	mu       sync.Mutex
    	c        sync.Cond       // c.L lazily initialized to &p.mu
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top