Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 933 for pcount (0.17 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// metrics contains the specifications for which to use to calculate the
    	// desired replica count (the maximum replica count across all metrics will
    	// be used).  The desired replica count is calculated multiplying the
    	// ratio between the target value and the current value by the current
    	// number of pods.  Ergo, metrics used must decrease as the pod count is
    	// increased, and vice-versa.  See the individual metric source types for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	for volumeUniqueName, volumeLimitKey := range attachedVolumes {
    		// Don't count single volume used in multiple pods more than once
    		delete(newVolumes, volumeUniqueName)
    		attachedVolumeCount[volumeLimitKey]++
    	}
    
    	newVolumeCount := map[string]int{}
    	for _, volumeLimitKey := range newVolumes {
    		newVolumeCount[volumeLimitKey]++
    	}
    
    	for volumeLimitKey, count := range newVolumeCount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

    import org.opensearch.search.aggregations.metrics.Cardinality;
    
    public class SearchLogService {
    
        private static final String YYYY_MM_DD_HH_MM = "yyyy-MM-dd HH:mm";
    
        private static final String COUNT = "count";
    
        private static final String KEY = "key";
    
        private static final String ID = "id";
    
        private static final String USER_INFO_ID = "userInfoId";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/cmd/trace/goroutines.go

    <br>
    Click a start location to view more details about that group.<br>
    <br>
    <table>
      <tr>
        <th>Start location</th>
    	<th>Count</th>
    	<th>Total execution time</th>
      </tr>
    {{range $}}
      <tr>
        <td><code><a href="/goroutine?name={{.Name}}">{{or .Name "(Inactive, no stack trace sampled)"}}</a></code></td>
    	<td>{{.N}}</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/value.go

    	AuxInt int64
    	Aux    Aux
    
    	// Arguments of this value
    	Args []*Value
    
    	// Containing basic block
    	Block *Block
    
    	// Source position
    	Pos src.XPos
    
    	// Use count. Each appearance in Value.Args and Block.Controls counts once.
    	Uses int32
    
    	// wasm: Value stays on the WebAssembly stack. This value will not get a "register" (WebAssembly variable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    internal fun checkOffsetAndCount(
      arrayLength: Long,
      offset: Long,
      count: Long,
    ) {
      if (offset or count < 0L || offset > arrayLength || arrayLength - offset < count) {
        throw ArrayIndexOutOfBoundsException("length=$arrayLength, offset=$offset, count=$offset")
      }
    }
    
    val commonEmptyHeaders: Headers = Headers.headersOf()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            when:
            configurationCacheRun(":count")
    
            then:
            configurationCache.assertStateStored()
            outputContains 'Count: 1'
    
            when:
            configurationCacheRun(":count")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains 'Count: 1'
    
            where:
            serviceName | finalize | finalizeOnRead
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    }
    
    // setCounterStmt returns the expression: __count[23] = 1.
    func setCounterStmt(f *File, counter string) string {
    	return fmt.Sprintf("%s = 1", counter)
    }
    
    // incCounterStmt returns the expression: __count[23]++.
    func incCounterStmt(f *File, counter string) string {
    	return fmt.Sprintf("%s++", counter)
    }
    
    // atomicCounterStmt returns the expression: atomic.AddUint32(&__count[23], 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/runtime/mgclimit.go

    // now must be the timestamp from the end of the STW pause.
    func (l *gcCPULimiterState) finishGCTransition(now int64) {
    	if !l.transitioning {
    		throw("finishGCTransition called without starting one?")
    	}
    	// Count the full nprocs set of CPU time because the world is stopped
    	// between startGCTransition and finishGCTransition. Even though the GC
    	// isn't running on all CPUs, it is preventing user code from doing so,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. cmd/site-replication-metrics_gen.go

    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "Count":
    			z.Count, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "Count")
    				return
    			}
    		case "Bytes":
    			z.Bytes, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "Bytes")
    				return
    			}
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top