Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 844 for steady (0.15 sec)

  1. common-protos/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional UncountedTerminatedPods uncountedTerminatedPods = 8;
    
      // The number of pods which have a Ready condition.
      //
      // This field is beta-level. The job controller populates the field when
      // the feature gate JobReadyPods is enabled (enabled by default).
      // +optional
      optional int32 ready = 9;
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    			toBeAdded = canBeAdded
    		}
    
    		if truncateReady {
    			// Truncate ready Addresses to allocated proportion and truncate all not ready
    			// addresses
    			subset.Addresses = addressSubset(subset.Addresses, toBeAdded)
    			subset.NotReadyAddresses = []v1.EndpointAddress{}
    			canBeAdded -= len(subset.Addresses)
    		} else {
    			// Only truncate the not ready addresses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/context/x_test.go

    	veryLongDuration = 1000 * time.Hour     // an arbitrary upper bound on the test's running time
    )
    
    // quiescent returns an arbitrary duration by which the program should have
    // completed any remaining work and reached a steady (idle) state.
    func quiescent(t *testing.T) time.Duration {
    	deadline, ok := t.Deadline()
    	if !ok {
    		return 5 * time.Second
    	}
    
    	const arbitraryCleanupMargin = 1 * time.Second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    						makeNode(pod1nonamespace, virtual)},
    					absentOwnerCache: []objectReference{pod1ns1}, // missing parent cached
    				}),
    
    				// 10,11: observe deletion of good child
    				// steady-state is bad cluster child and bad virtual parent coordinates, with no retries
    				processEvent(makeDeleteEvent(pod2ns1, pod1ns1)),
    				assertState(state{
    					graphNodes: []*node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/generated.proto

      // The structure is empty for finished jobs.
      // +optional
      optional UncountedTerminatedPods uncountedTerminatedPods = 8;
    
      // The number of active pods which have a Ready condition and are not
      // terminating (without a deletionTimestamp).
      optional int32 ready = 9;
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    message JobTemplateSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"ready":                   "The number of active pods which have a Ready condition and are not terminating (without a deletionTimestamp).",
    }
    
    func (JobStatus) SwaggerDoc() map[string]string {
    	return map_JobStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    	// The number of active pods which have a Ready condition and are not
    	// terminating (without a deletionTimestamp).
    	Ready *int32 `json:"ready,omitempty" protobuf:"varint,9,opt,name=ready"`
    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. pkg/apis/batch/types.go

    	// the feature gate JobPodReplacementPolicy is enabled (enabled by default).
    	// +optional
    	Terminating *int32
    
    	// The number of active pods which have a Ready condition and are not
    	// terminating (without a deletionTimestamp).
    	// +optional
    	Ready *int32
    
    	// The number of pods which reached phase Succeeded.
    	// The value increases monotonically for a given spec. However, it may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/edit.go

    	for {
    		mg, err = readModGraph(ctx, rootPruning, roots, upgradedRoot)
    		// We keep on going even if err is non-nil until we reach a steady state.
    		// (Note that readModGraph returns a non-nil *ModuleGraph even in case of
    		// errors.) The caller may be able to fix the errors by adjusting versions,
    		// so we really want to return as complete a result as we can.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager_test.go

    		originalCallback(resourceName, devices)
    		updateChan <- new(interface{})
    	}
    	activePods := func() []*v1.Pod {
    		return []*v1.Pod{}
    	}
    
    	// test steady state, initialization where sourcesReady, containerMap and containerRunningSet
    	// are relevant will be tested with a different flow
    	err = w.Start(activePods, &sourcesReadyStub{}, containermap.NewContainerMap(), sets.New[string]())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top