Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for npipe (0.03 sec)

  1. src/cmd/go/internal/modget/get.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: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    func (f *fakeDNSPacketConn) Close() error {
    	return f.fakeDNSConn.Close()
    }
    
    // UDP round-tripper algorithm should ignore invalid DNS responses (issue 13281).
    func TestIgnoreDNSForgeries(t *testing.T) {
    	c, s := Pipe()
    	go func() {
    		b := make([]byte, maxDNSPacketSize)
    		n, err := s.Read(b)
    		if err != nil {
    			t.Error(err)
    			return
    		}
    
    		var msg dnsmessage.Message
    		if msg.Unpack(b[:n]) != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		// so we print it here. We can't always check whether it was printed
    		// because some tests need stdout to be a terminal (golang.org/issue/34791),
    		// not a pipe.
    		// TODO(golang.org/issue/29062): tests that exit with status 0 without
    		// printing a final result should fail.
    		prefix := ""
    		if testJSON || testV.json {
    			prefix = "\x16"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func pipe(p *[2]_C_int) (err error) {
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_PIPE<<4, uintptr(unsafe.Pointer(p)))
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
Back to top