Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for useIvy (0.16 sec)

  1. src/net/testdata/freebsd-usevc-resolv.conf

    options usevc...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 18:51:13 UTC 2019
    - 13 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_multirepo.txt

    go list -deps -f {{.Dir}}
    ! stdout 'pkg[\\/]mod'
    
    # v2 import should use a downloaded module
    # both without an explicit go.mod entry ...
    cp tmp/use_v2.go x.go
    go get .
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    # ... and with one ...
    cp tmp/use_v2.mod go.mod
    go list -deps -f {{.Dir}}
    stdout 'pkg[\\/]mod[\\/]rsc.io[\\/]quote[\\/]v2@v2.0.1$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 892 bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix.go

    					//  This option disables the behavior and makes glibc
    					//  perform the IPv6 and IPv4 requests sequentially."
    					conf.singleRequest = true
    				case s == "use-vc" || s == "usevc" || s == "tcp":
    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/crypto/tls/ech.go

    	b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) { b.AddBytes(payload) })
    	return b.Bytes()
    }
    
    func computeAndUpdateOuterECHExtension(outer, inner *clientHelloMsg, ech *echContext, useKey bool) error {
    	var encapKey []byte
    	if useKey {
    		encapKey = ech.encapsulatedKey
    	}
    	encodedInner, err := encodeInnerClientHello(inner, int(ech.config.MaxNameLength))
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/net/dnsconfig_unix_test.go

    			servers:  defaultNS,
    			ndots:    1,
    			useTCP:   true,
    			timeout:  5 * time.Second,
    			attempts: 2,
    			search:   []string{"domain.local."},
    		},
    	},
    	{
    		name: "testdata/freebsd-usevc-resolv.conf",
    		want: &dnsConfig{
    			servers:  defaultNS,
    			ndots:    1,
    			useTCP:   true,
    			timeout:  5 * time.Second,
    			attempts: 2,
    			search:   []string{"domain.local."},
    		},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top