Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 273 for sumC (0.06 sec)

  1. src/runtime/syscall_windows_test.go

    // calling convention by default, since this is redundant with the existing
    // tests.
    var cbFuncsRegABI = []cbFunc{
    	{sum2},
    	{sum3},
    	{sum4},
    	{sum5},
    	{sum6},
    	{sum7},
    	{sum8},
    	{sum9},
    	{sum10},
    	{sum9uint8},
    	{sum9uint16},
    	{sum9int8},
    	{sum5mix},
    	{sum5andPair},
    	{sum9andGC},
    }
    
    func getCallbackTestFuncs() []cbFunc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/go.sum

    Ben Luddy <******@****.***> 1715279458 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/go.sum

    Ben Luddy <******@****.***> 1715279458 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/go.sum

    Ben Luddy <******@****.***> 1715279458 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. 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)
  6. go.work.sum

    Stephen Kitt <******@****.***> 1716824549 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
        // We also define the sum of the products of the differences from the means
        //           C_n = \sum_{i=1}^n x_i y_i - n X_n Y_n
        // for all n >= 1. Then for all n > 1:
        //       C_{n-1} = \sum_{i=1}^{n-1} x_i y_i - (n-1) X_{n-1} Y_{n-1}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux.go

    		}
    	}
    }
    
    // setMemoryQoS sums the memory requests of all pods in the Burstable class,
    // and set the sum memory as the memory.min in the Unified field of CgroupConfig.
    func (m *qosContainerManagerImpl) setMemoryQoS(configs map[v1.PodQOSClass]*CgroupConfig) {
    	qosMemoryRequests := m.getQoSMemoryRequests()
    
    	// Calculate the memory.min:
    	// for burstable(/kubepods/burstable): sum of all burstable pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		}
    		return a.sym.Start < b.sym.Start
    	}
    	if maxFuncs < 0 {
    		sort.Sort(orderSyms{syms, byName})
    	} else {
    		byFlatSum := func(a, b *objSymbol) bool {
    			suma, _ := symNodes[a].Sum()
    			sumb, _ := symNodes[b].Sum()
    			if suma != sumb {
    				return suma > sumb
    			}
    			return byName(a, b)
    		}
    		sort.Sort(orderSyms{syms, byFlatSum})
    		if len(syms) > maxFuncs {
    			syms = syms[:maxFuncs]
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/internal/trace/gc.go

    var bandsPerSeries = 1000
    
    func newMMUSeries(util []MutatorUtil) mmuSeries {
    	// Compute cumulative sum.
    	sums := make([]totalUtil, len(util))
    	var prev MutatorUtil
    	var sum totalUtil
    	for j, u := range util {
    		sum += totalUtilOf(prev.Util, u.Time-prev.Time)
    		sums[j] = sum
    		prev = u
    	}
    
    	// Divide the utilization curve up into equal size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top