Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 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. pilot/pkg/bootstrap/configcontroller.go

    				AddRunFunction(func(leaderStop <-chan struct{}) {
    					log.Infof("Starting gateway status writer")
    					gwc.SetStatusWrite(true, s.statusManager)
    
    					// Trigger a push so we can recompute status
    					s.XDSServer.ConfigUpdate(&model.PushRequest{
    						Full:   true,
    						Reason: model.NewReasonStats(model.GlobalUpdate),
    					})
    					<-leaderStop
    					log.Infof("Stopping gateway status writer")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	choices      []string            // Name Of variables in group
    	defaultValue string              // Default value for this field.
    }
    
    var (
    	configFields []configField // Precomputed metadata per config field
    
    	// configFieldMap holds an entry for every config field as well as an
    	// entry for every valid choice for a multi-choice field.
    	configFieldMap map[string]configField
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/mcache.go

    				// refill conservatively counted unallocated slots in gcController.heapLive.
    				// Undo this.
    				//
    				// If this span was cached before sweep, then gcController.heapLive was totally
    				// recomputed since caching this span, so we don't do this for stale spans.
    				dHeapLive -= int64(s.nelems-s.allocCount) * int64(s.elemsize)
    			}
    
    			// Release the span to the mcentral.
    			mheap_.central[i].mcentral.uncacheSpan(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/go/internal/mvs/mvs.go

    	// should not add new dependencies on module paths that nothing else in the
    	// updated module graph even requires.
    	//
    	// In order to eliminate those spurious dependencies, we recompute the build
    	// list with the actual versions of the downgraded modules as selected by MVS,
    	// instead of our initial downgrades.
    	// (See the downhiddenartifact and downhiddencross test cases).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    func (r *tileHashReader) ReadHashes(indexes []int64) ([]Hash, error) {
    	h := r.tr.Height()
    
    	tileOrder := make(map[Tile]int) // tileOrder[tileKey(tiles[i])] = i
    	var tiles []Tile
    
    	// Plan to fetch tiles necessary to recompute tree hash.
    	// If it matches, those tiles are authenticated.
    	stx := subTreeIndex(0, r.tree.N, nil)
    	stxTileOrder := make([]int, len(stx))
    	for i, x := range stx {
    		tile, _, _ := tileForIndex(h, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/runtime/mgcsweep.go

    		if sweepone() == ^uintptr(0) {
    			mheap_.sweepPagesPerByte = 0
    			break
    		}
    		if mheap_.pagesSweptBasis.Load() != sweptBasis {
    			// Sweep pacing changed. Recompute debt.
    			goto retry
    		}
    	}
    
    	trace = traceAcquire()
    	if trace.ok() {
    		trace.GCSweepDone()
    		traceRelease(trace)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. pkg/controller/servicecidrs/servicecidrs_controller.go

    		c.queue.Add(cidr)
    	}
    }
    
    // overlappingServiceCIDRs, given a ServiceCIDR return the ServiceCIDRs that contain or are contained,
    // this is required because adding or removing a CIDR will require to recompute the
    // state of each ServiceCIDR to check if can be unblocked on deletion.
    func (c *Controller) overlappingServiceCIDRs(serviceCIDR *networkingapiv1alpha1.ServiceCIDR) []string {
    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. 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)
Back to top