Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for pcount (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

        }
    
        sealed class Peano {
    
            companion object {
    
                fun fromInt(n: Int): Peano = (0 until n).fold(Z as Peano) { acc, _ -> S(acc) }
            }
    
            fun toInt(): Int = sequence().count() - 1
    
            object Z : Peano() {
                override fun toString() = "Z"
            }
    
            data class S(val n: Peano) : Peano() {
                override fun toString() = "S($n)"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	return c.storage.GuaranteedUpdate(ctx, key, destination, ignoreNotFound, preconditions, tryUpdate, nil)
    }
    
    // Count implements storage.Interface.
    func (c *Cacher) Count(pathPrefix string) (int64, error) {
    	return c.storage.Count(pathPrefix)
    }
    
    // baseObjectThreadUnsafe omits locking for cachingObject.
    func baseObjectThreadUnsafe(object runtime.Object) runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

            if ($system_log_monitors.count -gt 0) {
              $flags+=" --config.system-log-monitor={0}" -f ($system_log_monitors -join ",")
            }
            if ($system_stats_monitors.count -gt 0) {
              $flags+=" --config.system-stats-monitor={0}" -f ($system_stats_monitors -join ",")
            }
            if ($custom_plugin_monitors.count -gt 0) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/runlit.cfg.py

    if platform.system() == 'Windows':
      tool_patterns = [
          ToolSubst('FileCheck.exe', unresolved='fatal'),
          #  Handle these specially as they are strings searched for during testing.
          ToolSubst('count.exe', unresolved='fatal'),
          ToolSubst('not.exe', unresolved='fatal')
      ]
    
      llvm_config.config.substitutions.append(
          ('%python', '"%s"' % (sys.executable)))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/certs.go

    	if !ok {
    		return errors.New("certs phase invoked with an invalid data struct")
    	}
    
    	// if external CA mode, skip service account key generation
    	if data.ExternalCA() {
    		fmt.Printf("[certs] Using existing sa keys\n")
    		return nil
    	}
    
    	// create the new service account key (or use existing)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	}
    	return "global"
    }
    
    func recordJobPodFailurePolicyActions(job *batch.Job, podFailureCountByPolicyAction map[string]int) {
    	for action, count := range podFailureCountByPolicyAction {
    		metrics.PodFailuresHandledByFailurePolicy.WithLabelValues(action).Add(float64(count))
    	}
    }
    
    func countReadyPods(pods []*v1.Pod) int32 {
    	cnt := int32(0)
    	for _, p := range pods {
    		if podutil.IsPodReady(p) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

    	// Create svc acc
    	cr := c.mustCreateSvcAccount(ctx, value.AccessKeyID, userAdmClient)
    
    	// 1. Check that svc account appears in listing
    	c.assertSvcAccAppearsInListing(ctx, userAdmClient, value.AccessKeyID, cr.AccessKey)
    
    	// 2. Check that svc account info can be queried
    	c.assertSvcAccInfoQueryable(ctx, userAdmClient, value.AccessKeyID, cr.AccessKey, true)
    
    	// 3. Check S3 access
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    			}
    
    			if qs.QStats.Avg.Count > 0 || qs.QStats.Curr.Count > 0 {
    				qt := qs.QStats
    				currInQueueBytes.Value = qt.Curr.Bytes
    				currInQueueCount.Value = qt.Curr.Count
    				avgQueueBytes.Value = qt.Avg.Bytes
    				avgQueueCount.Value = qt.Avg.Count
    				maxQueueBytes.Value = qt.Max.Bytes
    				maxQueueCount.Value = qt.Max.Count
    			}
    			activeWorkersCount.Value = float64(qs.ActiveWorkers.Curr)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// CompactionInterval is an interval of requesting compaction from apiserver.
    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    	// CountMetricPollPeriod specifies how often should count metric be updated
    	CountMetricPollPeriod time.Duration
    	// DBMetricPollInterval specifies how often should storage backend metric be updated.
    	DBMetricPollInterval time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                return this;
            }
    
            @Override
            public ExecutionFailure assertHasFailures(int count) {
                outputFailure.assertHasFailures(count);
                if (failures.size() != count) {
                    throw new AssertionFailedError(String.format("Expected %s failures, but found %s", count, failures.size()));
                }
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top