Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,598 for paused (0.13 sec)

  1. src/runtime/mstats.go

    	// and only the garbage collector can run.
    	PauseTotalNs uint64
    
    	// PauseNs is a circular buffer of recent GC stop-the-world
    	// pause times in nanoseconds.
    	//
    	// The most recent pause is at PauseNs[(NumGC+255)%256]. In
    	// general, PauseNs[N%256] records the time paused in the most
    	// recent N%256th GC cycle. There may be multiple pauses per
    	// GC cycle; this is the sum of all pauses during a cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"revisionHistoryLimit":    "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    	"paused":                  "Indicates that the deployment is paused.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // version of both map-based and more expressive set-based selectors. This is done to
      // avoid introspection in the clients. The string will be in the same format as the
      // query-param syntax. If the target type only supports map-based selectors, both this
      // field and map-based selector field are populated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.proto

      // version of both map-based and more expressive set-based selectors. This is done to
      // avoid introspection in the clients. The string will be in the same format as the
      // query-param syntax. If the target type only supports map-based selectors, both this
      // field and map-based selector field are populated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // Indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // The maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/generated.proto

      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    
      // Indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // The maximum time in seconds for a deployment to make progress before it
      // is considered to be failed. The deployment controller will continue to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector.go

    		if reflect.DeepEqual(oldResources, newResources) {
    			logger.V(5).Info("no resource updates from discovery, skipping garbage collector sync")
    			return
    		}
    
    		// Ensure workers are paused to avoid processing events before informers
    		// have resynced.
    		gc.workerLock.Lock()
    		defer gc.workerLock.Unlock()
    
    		// Once we get here, we should not unpause workers until we've successfully synced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top