Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for Precompute (0.16 sec)

  1. src/math/big/float.go

    		// rounding and fewer than p mantissa bits of precision available
    		// (the exponent remains fixed but the mantissa gets shifted right).
    		p := mbits + 1 // precision of normal float
    		if e < emin {
    			// recompute precision
    			p = mbits + 1 - emin + int(e)
    			// If p == 0, the mantissa of x is shifted so much to the right
    			// that its msb falls immediately to the right of the float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p256_asm.go

    // stored at an index offset of -1 like in p256Table, and [0]P is not stored.
    type p256AffineTable [32]p256AffinePoint
    
    // p256Precomputed is a series of precomputed multiples of G, the canonical
    // generator. The first p256AffineTable contains multiples of G. The second one
    // multiples of [2⁶]G, the third one of [2¹²]G, and so on, where each successive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    	ctxt.GOPATH, GOPATHChanged = EnvOrAndChanged("GOPATH", gopath(ctxt))
    	ctxt.GOOS = Goos
    	ctxt.GOARCH = Goarch
    
    	// Clear the GOEXPERIMENT-based tool tags, which we will recompute later.
    	var save []string
    	for _, tag := range ctxt.ToolTags {
    		if !strings.HasPrefix(tag, "goexperiment.") {
    			save = append(save, tag)
    		}
    	}
    	ctxt.ToolTags = save
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    			benchName := benchmarkName(b.name, procs)
    
    			// If it's chatty, we've already printed this information.
    			if b.chatty == nil {
    				fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)
    			}
    			// Recompute the running time for all but the first iteration.
    			if i > 0 || j > 0 {
    				b = &B{
    					common: common{
    						signal: make(chan bool),
    						name:   b.name,
    						w:      b.w,
    						chatty: b.chatty,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/named.go

    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    			if check == nil { // golang/go#61561: all newly created interfaces must be fully evaluated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/go/types/named.go

    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    			if check == nil { // golang/go#61561: all newly created interfaces must be fully evaluated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768.go

    	SharedKeySize        = 32
    	SeedSize             = 32 + 32
    )
    
    // A DecapsulationKey is the secret key used to decapsulate a shared key from a
    // ciphertext. It includes various precomputed values.
    type DecapsulationKey struct {
    	dk [DecapsulationKeySize]byte
    	encryptionKey
    	decryptionKey
    }
    
    // Bytes returns the extended encoding of the decapsulation key, according to
    // FIPS 203 (DRAFT).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    	if err != nil {
    		proxier.logger.Error(err, "nftables sync failed")
    		metrics.NFTablesSyncFailuresTotal.Inc()
    
    		// staleChains is now incorrect since we didn't actually flush the
    		// chains in it. We can recompute it next time.
    		clear(proxier.staleChains)
    		return
    	}
    	success = true
    
    	for name, lastChangeTriggerTimes := range endpointUpdateResult.LastChangeTriggerTimes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    //     selected at the same version or is upgraded by the dependencies of a
    //     root.
    //
    // If any module that provided a package has been upgraded above its previous
    // version, the caller may need to reload and recompute the package graph.
    //
    // To ensure that the loading process eventually converges, the caller should
    // add any needed roots from the tidy root set (without removing existing untidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    	defer cacher.Stop()
    	// Update bookmarkFrequency to speed up test.
    	// Note that the frequency lower than 1s doesn't change much due to
    	// resolution how frequency we recompute.
    	cacher.bookmarkWatchers.bookmarkFrequency = time.Second
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if err := cacher.ready.wait(context.Background()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top