Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,320 for numbuf (0.3 sec)

  1. pkg/controller/job/metrics/metrics.go

    		&metrics.CounterOpts{
    			Subsystem:      JobControllerSubsystem,
    			Name:           "job_syncs_total",
    			Help:           "The number of job syncs",
    			StabilityLevel: metrics.STABLE,
    		},
    		[]string{"completion_mode", "result", "action"},
    	)
    	// JobFinishedNum tracks the number of Jobs that finish. Empty reason label
    	// is used to count successful jobs.
    	// Possible label values:
    	//   completion_mode: Indexed, NonIndexed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

        name: default.header.0
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
      - name: default.echo.0
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    		if r.err != nil {
    			return 0, r.err
    		}
    		outn := copy(r.outbuf, r.outbuf[r.lastBoundary:])
    		r.outbuf = r.outbuf[0:outn]
    		r.bufStart = 0
    
    		n, err := r.r.Read(r.inbuf)
    		r.rb.src = inputBytes(r.inbuf[0:n])
    		r.rb.nsrc, r.err = n, err
    		if n > 0 {
    			r.outbuf = doAppend(&r.rb, r.outbuf, 0)
    		}
    		if err == io.EOF {
    			r.lastBoundary = len(r.outbuf)
    		} else {
    			r.lastBoundary = lastBoundary(&r.rb.f, r.outbuf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    // Spec to control the desired behavior of daemon set rolling update.
    message RollingUpdateDaemonSet {
      // The maximum number of DaemonSet pods that can be unavailable during the
      // update. Value can be an absolute number (ex: 5) or a percentage of total
      // number of DaemonSet pods at the start of the update (ex: 10%). Absolute
      // number is calculated from percentage by rounding up.
      // This cannot be 0 if MaxSurge is 0
      // Default value is 1.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/generated.proto

    // Spec to control the desired behavior of daemon set rolling update.
    message RollingUpdateDaemonSet {
      // The maximum number of DaemonSet pods that can be unavailable during the
      // update. Value can be an absolute number (ex: 5) or a percentage of total
      // number of DaemonSet pods at the start of the update (ex: 10%). Absolute
      // number is calculated from percentage by rounding up.
      // This cannot be 0 if MaxSurge is 0
      // Default value is 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"maxUnavailable": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.d...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. cmd/metrics-v3-replication.go

    	replicationAverageActiveWorkersMD = NewGaugeMD(replicationAverageActiveWorkers,
    		"Average number of active replication workers")
    	replicationAverageQueuedBytesMD = NewGaugeMD(replicationAverageQueuedBytes,
    		"Average number of bytes queued for replication since server start")
    	replicationAverageQueuedCountMD = NewGaugeMD(replicationAverageQueuedCount,
    		"Average number of objects queued for replication since server start")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // that the total number of pods available at all times during the update is at
      // least 70% of desired pods.
      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 1;
    
      // The maximum number of pods that can be scheduled above the desired number of
      // pods.
      // Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. pkg/proxy/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// IPTablesRulesTotal is the total number of iptables rules that the iptables
    	// proxy has installed.
    	IPTablesRulesTotal = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_iptables_total",
    			Help:           "Total number of iptables rules owned by kube-proxy",
    			StabilityLevel: metrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

    public interface DirectorySnapshotterStatistics {
        /**
         * The number of visited directory trees.
         */
        long getVisitedHierarchyCount();
    
        /**
         * The number of visited directories.
         */
        long getVisitedDirectoryCount();
    
        /**
         * The number of visited files.
         */
        long getVisitedFiles();
    
        /**
         * The number of files we failed to visit.
         */
        long getFailedFiles();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top