Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 140 for hamster (0.14 sec)

  1. src/cmd/compile/internal/types2/instantiate.go

    	}
    	if ctxt != nil {
    		ctxts = append(ctxts, ctxt)
    	}
    	assert(len(ctxts) > 0)
    
    	// Compute all hashes; hashes may differ across contexts due to different
    	// unique IDs for Named types within the hasher.
    	hashes := make([]string, len(ctxts))
    	for i, ctxt := range ctxts {
    		hashes[i] = ctxt.instanceHash(orig, targs)
    	}
    
    	// Record the result in all contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    // Derived from Inferno utils/6l/obj.c and utils/6l/span.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/obj.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/span.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    	overflow := x.add(y)
    	x.maybeSubtractModulus(choice(overflow), m)
    	return x
    }
    
    // montgomeryRepresentation calculates x = x * R mod m, with R = 2^(_W * n) and
    // n = len(m.nat.limbs).
    //
    // Faster Montgomery multiplication replaces standard modular multiplication for
    // numbers in this representation.
    //
    // This assumes that x is already reduced mod m.
    func (x *Nat) montgomeryRepresentation(m *Modulus) *Nat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/crypto/cipher/gcm.go

    // be zero.
    //
    // Only use this function if you require compatibility with an existing
    // cryptosystem that uses non-standard nonce lengths. All other users should use
    // [NewGCM], which is faster and more resistant to misuse.
    func NewGCMWithNonceSize(cipher Block, size int) (AEAD, error) {
    	return newGCMWithNonceAndTagSize(cipher, size, gcmTagSize)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/time/zoneinfo_read.go

    // Used this way, the zip file format serves as a commonly readable
    // container for the individual small files. We choose zip over tar
    // because zip files have a contiguous table of contents, making
    // individual file lookups faster, and because the per-file overhead
    // in a zip file is considerably less than tar's 512 bytes.
    
    // get4 returns the little-endian 32-bit value in b.
    func get4(b []byte) int {
    	if len(b) < 4 {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/internal/stringslite/strings.go

    			return bytealg.IndexString(s, substr)
    		}
    		c0 := substr[0]
    		c1 := substr[1]
    		i := 0
    		t := len(s) - n + 1
    		fails := 0
    		for i < t {
    			if s[i] != c0 {
    				// IndexByte is faster than bytealg.IndexString, so use it as long as
    				// we're not getting lots of false positives.
    				o := IndexByte(s[i+1:t], c0)
    				if o < 0 {
    					return -1
    				}
    				i += o + 1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/builtin.go

    	}
    	return n
    }
    
    // walkMakeChan walks an OMAKECHAN node.
    func walkMakeChan(n *ir.MakeExpr, init *ir.Nodes) ir.Node {
    	// When size fits into int, use makechan instead of
    	// makechan64, which is faster and shorter on 32 bit platforms.
    	size := n.Len
    	fnname := "makechan64"
    	argtype := types.Types[types.TINT64]
    
    	// Type checking guarantees that TIDEAL size is positive and fits in an int.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/doc.go

    // permutation. For a detailed specification see http://keccak.noekeon.org/
    //
    // # Guidance
    //
    // If you aren't sure what function you need, use SHAKE256 with at least 64
    // bytes of output. The SHAKE instances are faster than the SHA3 instances;
    // the latter have to allocate memory to conform to the hash.Hash interface.
    //
    // If you need a secret-key MAC (message authentication code), prepend the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pilot/pkg/features/tuning.go

    	).Get()
    
    	PushThrottle = func() int {
    		v := env.Register(
    			"PILOT_PUSH_THROTTLE",
    			0,
    			"Limits the number of concurrent pushes allowed. On larger machines this can be increased for faster pushes. "+
    				"If set to 0 or unset, the max will be automatically determined based on the machine size",
    		).Get()
    		if v > 0 {
    			return v
    		}
    		procs := runtime.GOMAXPROCS(0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion.go

    	discoverabilityPolicy := model.AlwaysDiscoverable
    	if features.EnableMCSServiceDiscovery {
    		// MCS spec does not allow export of external name services.
    		// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-multicluster/1645-multi-cluster-services-api#exporting-services.
    		discoverabilityPolicy = model.DiscoverableFromSameCluster
    	}
    	for _, portEntry := range svc.Ports {
    		out = append(out, &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top