Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for useIvy (0.34 sec)

  1. 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)
  2. 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)
  3. src/cmd/compile/internal/ssa/config.go

    	ctxt           *obj.Link   // Generic arch information
    	optimize       bool        // Do optimization
    	noDuffDevice   bool        // Don't use Duff's device
    	useSSE         bool        // Use SSE for non-float operations
    	useAvg         bool        // Use optimizations that need Avg* operations
    	useHmul        bool        // Use optimizations that need Hmul* operations
    	SoftFloat      bool        //
    	Race           bool        // race detector enabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/runtime/map_faststr.go

    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/runtime/map_fast64.go

    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/runtime/map_fast32.go

    					throw("bad map state")
    				}
    				var useY uint8
    				if !h.sameSizeGrow() {
    					// Compute hash to make our evacuation decision (whether we need
    					// to send this key/elem to bucket x or bucket y).
    					hash := t.Hasher(k, uintptr(h.hash0))
    					if hash&newbit != 0 {
    						useY = 1
    					}
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY, enforced in makemap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

                           << kNearZeroTolerance;
          min -= kNearZeroTolerance;
          max += kNearZeroTolerance;
        }
      }
    };
    
    template <typename VerifierT>
    bool UsedBy(Operation* op) {
      for (Operation* user : op->getUsers()) {
        if (llvm::isa_and_nonnull<VerifierT>(user)) return true;
      }
      return false;
    }
    
    template <typename VerifierT>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. src/runtime/map.go

    						// after multiple grows.
    						useY = top & 1
    						top = tophash(hash)
    					} else {
    						if hash&newbit != 0 {
    							useY = 1
    						}
    					}
    				}
    
    				if evacuatedX+1 != evacuatedY || evacuatedX^1 != evacuatedY {
    					throw("bad evacuatedN")
    				}
    
    				b.tophash[i] = evacuatedX + useY // evacuatedX + 1 == evacuatedY
    				dst := &xy[useY]                 // evacuation destination
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages_test.go

    			}
    		}
    	}
    	if rand.Intn(10) > 5 && s.EarlyData {
    		s.alpnProtocol = string(randomBytes(rand.Intn(10), rand))
    	}
    	if s.isClient {
    		if isTLS13 {
    			s.useBy = uint64(rand.Int63())
    			s.ageAdd = uint32(rand.Int63() & math.MaxUint32)
    		}
    	}
    	return reflect.ValueOf(s)
    }
    
    func (s *SessionState) marshal() ([]byte, error) { return s.Bytes() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top