Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for InProgress (0.29 sec)

  1. operator/pkg/util/progress/progress.go

    	template   string
    	mu         sync.Mutex
    	state      InstallState
    }
    
    func NewLog() *Log {
    	return &Log{
    		components: map[string]*ManifestLog{},
    		bar:        createBar(),
    	}
    }
    
    const inProgress = `{{ yellow (cycle . "-" "-" "-" " ") }} `
    
    // createStatus will return a string to report the current status.
    // ex: - Processing resources for components. Waiting for foo, bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    	// Return the pointer to the op we're already building.
    	if opPtr := inProgress[rt]; opPtr != nil {
    		return opPtr, ut.indir
    	}
    	typ := ut.base
    	indir := ut.indir
    	k := typ.Kind()
    	var op encOp
    	if int(k) < len(encOpTable) {
    		op = encOpTable[k]
    	}
    	if op == nil {
    		inProgress[rt] = &op
    		// Special cases
    		switch t := typ; t.Kind() {
    		case reflect.Slice:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	e.queue.Add(ns)
    
    	if e.inProgress.Has(ns) {
    		e.dirtyWork[ns] = append(e.dirtyWork[ns], a)
    		return
    	}
    
    	e.work[ns] = append(e.work[ns], a)
    }
    
    func (e *quotaEvaluator) completeWork(ns string) {
    	e.workLock.Lock()
    	defer e.workLock.Unlock()
    
    	e.queue.Done(ns)
    	e.work[ns] = e.dirtyWork[ns]
    	delete(e.dirtyWork, ns)
    	e.inProgress.Delete(ns)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		newRequests         v1.ResourceList
    		expectedAllocations v1.ResourceList
    		expectedResize      v1.PodResizeStatus
    	}{
    		{
    			name:                "Request CPU and memory decrease - expect InProgress",
    			pod:                 testPod2,
    			newRequests:         v1.ResourceList{v1.ResourceCPU: cpu500m, v1.ResourceMemory: mem500M},
    			expectedAllocations: v1.ResourceList{v1.ResourceCPU: cpu500m, v1.ResourceMemory: mem500M},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// the specified VolumeAttributesClass not existing
    	PersistentVolumeClaimModifyVolumePending PersistentVolumeClaimModifyVolumeStatus = "Pending"
    	// InProgress indicates that the volume is being modified
    	PersistentVolumeClaimModifyVolumeInProgress PersistentVolumeClaimModifyVolumeStatus = "InProgress"
    	// Infeasible indicates that the request has been rejected as invalid by the CSI driver. To
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // "Absent" from the profile, and end up "Satisfied" by the time the profile is
    // complete. While a goroutine's stack is being captured, its
    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.lock.Unlock()
    }
    
    // isPodResourcesResizedDown returns true if a pod CPU and/or memory resize request has been
    // admitted by kubelet, is 'InProgress', and results in a net sizing down of updated resources.
    // It returns false if either CPU or memory resource is net resized up, or if no resize is in progress.
    func isPodResourcesResizedDown(pod *v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// the specified VolumeAttributesClass not existing
    	PersistentVolumeClaimModifyVolumePending PersistentVolumeClaimModifyVolumeStatus = "Pending"
    	// InProgress indicates that the volume is being modified
    	PersistentVolumeClaimModifyVolumeInProgress PersistentVolumeClaimModifyVolumeStatus = "InProgress"
    	// Infeasible indicates that the request has been rejected as invalid by the CSI driver. To
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    							AllocatedResources: CPU1AndMem1GAndStorage2GAndCustomResource,
    						},
    					},
    					Resize: "InProgress",
    				},
    			},
    		},
    		{
    			name: "cpu/memory resource in ResourcesAllocated, resize should be null",
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					UID:       "1234560",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n   the specified VolumeAttributesClass not existing.\n - InProgress\n   InProgress indicates that the volume is being modified.\n - Infeasible\n  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t  resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top