Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for InProgress (0.14 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultIncomingConnectionHandler.java

            lock.lock();
            try {
                inProgress.add(connection);
            } finally {
                lock.unlock();
            }
        }
    
        private void onFinishHandling(SynchronizedDispatchConnection<Message> connection) {
            lock.lock();
            try {
                inProgress.remove(connection);
                condition.signalAll();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. src/encoding/gob/decode.go

    // GobEncoder/Decoder pairs.
    // Structs are considered ok; fields will be checked later.
    func (dec *Decoder) compatibleType(fr reflect.Type, fw typeId, inProgress map[reflect.Type]typeId) bool {
    	if rhs, ok := inProgress[fr]; ok {
    		return rhs == fw
    	}
    	inProgress[fr] = fw
    	ut := userType(fr)
    	wire, ok := dec.wireType[fw]
    	// If wire was encoded with an encoding method, fr must have that method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    gled(t))},_toggleElement:function(t,e,i){var n=this;if(e=z(e)?e:ni.inProgress(t)?Oe(t,"uk-animation-leave"):Ze.inProgress(t)?"0px"===t.style.height:!this.isToggled(t),!Kt(t,"before"+(e?"show":"hide"),[this]))return se.reject();var r,o,s,a,h,u,c,l,d,f,p,g,m=($(i)?i:!1!==i&&this.hasAnimation?this.hasTransition?(c=(u=this).isToggled,l=u.duration,d=u.initProps,f=u.hideProps,p=u.transition,g=u._toggle,function(t,e){var i=Ze.inProgress(t),n=t.hasChildNodes?j(Ve(t.firstElementChild,"marginTop"))+j(Ve(t...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top