Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for sumAsm (0.12 sec)

  1. src/runtime/mpagealloc.go

    func mergeSummaries(sums []pallocSum, logMaxPagesPerSum uint) pallocSum {
    	// Merge the summaries in sums into one.
    	//
    	// We do this by keeping a running summary representing the merged
    	// summaries of sums[:i] in start, most, and end.
    	start, most, end := sums[0].unpack()
    	for i := 1; i < len(sums); i++ {
    		// Merge in sums[i].
    		si, mi, ei := sums[i].unpack()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/fetch.go

    // WriteGoSum writes the go.sum file if it needs to be updated.
    //
    // keep is used to check whether a newly added sum should be saved in go.sum.
    // It should have entries for both module content sums and go.mod sums
    // (version ends with "/go.mod"). Existing sums will be preserved unless they
    // have been marked for deletion with TrimGoSum.
    func WriteGoSum(ctx context.Context, keep map[module.Version]bool, readonly bool) error {
    	goSum.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/qos_container_manager_linux.go

    	burstableCPUShares := MilliCPUToShares(burstablePodCPURequest)
    	configs[v1.PodQOSBurstable].ResourceParameters.CPUShares = &burstableCPUShares
    	return nil
    }
    
    // getQoSMemoryRequests sums and returns the memory request of all pods for
    // guaranteed and burstable qos classes.
    func (m *qosContainerManagerImpl) getQoSMemoryRequests() map[v1.PodQOSClass]int64 {
    	qosMemoryRequests := map[v1.PodQOSClass]int64{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/internal/trace/gc.go

    // An MMUCurve is the minimum mutator utilization curve across
    // multiple window sizes.
    type MMUCurve struct {
    	series []mmuSeries
    }
    
    type mmuSeries struct {
    	util []MutatorUtil
    	// sums[j] is the cumulative sum of util[:j].
    	sums []totalUtil
    	// bands summarizes util in non-overlapping bands of duration
    	// bandDur.
    	bands []mmuBand
    	// bandDur is the duration of each band.
    	bandDur int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

            if (downloadMonitor != null) {
                wagon.addTransferListener(downloadMonitor);
            }
    
            Map<String, ChecksumObserver> checksums = new HashMap<>(2);
    
            Map<String, String> sums = new HashMap<>(2);
    
            // TODO configure these on the repository
            for (int i = 0; i < CHECKSUM_IDS.length; i++) {
                checksums.put(CHECKSUM_IDS[i], addChecksumObserver(wagon, CHECKSUM_ALGORITHMS[i]));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/download.go

    		// module cache. In modules that aren't at go 1.17 or higher, it may fetch
    		// modules that aren't needed to build packages in the main module. This is
    		// usually not intended, so don't save sums for downloaded modules
    		// (golang.org/issue/45332). We do still fix inconsistencies in go.mod
    		// though.
    		//
    		// TODO(#64008): In the future, report an error if go.mod or go.sum need to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/gradients.cc

      // gradients for the node associated with `src`.
      Status BackpropAlongEdge(const Output& dst_grad, const Output& src);
    
      // Adds a node to the graph (returned in `grad`) that sums the in-bound
      // gradients to `src` (if there are more than one).
      Status SumGradients(const Output& src, Output* grad);
    
      // Returns true if `opname` is registered in `registry_` with no gradient
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    // if a module contains a package, but we don't have a sum for its .zip file.
    // We might need sums for multiple modules to verify the package is unique.
    //
    // TODO(#43653): consolidate multiple errors of this type into a single error
    // that suggests a 'go get' command for root packages that transitively import
    // packages from modules with missing sums. load.CheckPackageErrors would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// serialized raw bytes to the http ResponseWriter object (via the
    	// Write method) associated with the request.
    	// The Write method can be invoked multiple times, so we use a
    	// latency tracker that sums up the duration from each call.
    	ResponseWriteTracker DurationTracker
    
    	// DecodeTracker is used to track latency incurred inside the function
    	// that takes an object returned from the underlying storage layer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/hash/maphash/smhasher_test.go

    	// More precisely, we did N = k.bits() * hashSize experiments where
    	// each is the sum of REP coin flips. We want to find bounds on the
    	// sum of coin flips such that a truly random experiment would have
    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top