Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 147 for suspending (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                    return Cast.uncheckedCast(provider);
                }
                return null;
            }
    
            @Override
            public void putPending(String name, ProviderInternal<? extends T> provider) {
                delegate.putPending(name, provider);
            }
    
            @Override
            public void removePending(String name) {
                delegate.removePending(name);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	if plState == nil {
    		klog.V(7).Infof("plName=%s, plState==nil", plName)
    		return
    	}
    	useless := plState.quiescing && plState.numPending == 0 && plState.queues.IsIdle()
    	klog.V(7).Infof("plState.quiescing=%v, plState.numPending=%d, useless=%v", plState.quiescing, plState.numPending, useless)
    	if !useless {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    # For this module, v2.1.0 exists and has a go.mod file.
    # 'go list -m github.com/russross/blackfriday@v2.0' will check
    # the latest v2.0 tag, discover that it isn't the right module, and stop there
    # (instead of spending the time to check O(N) previous tags).
    
    ! go list -m github.com/russross/blackfriday@v2.0
    stderr '^go: module github.com/russross/blackfriday: no matching versions for query "v2\.0\"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    				cgoTest("auto-pie", "testnocgo", "auto", "pie")
    			}
    		}
    	}
    }
    
    // runPending runs pending test commands, in parallel, emitting headers as appropriate.
    // When finished, it emits header for nextTest, which is going to run after the
    // pending commands are done (and runPending returns).
    // A test should call runPending if it wants to make sure that it is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            }
    
            if (isConstraint) {
                // Need to double check that the target still has hard edges to it
                ModuleResolveState module = targetComponent.getModule();
                if (module.isPending()) {
                    selector.getTargetModule().removeUnattachedDependency(this);
                    from.makePending(this);
                    module.registerConstraintProvider(from);
                    return;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils.go

    }
    
    // isCreated returns true if pod has been created and is maintained by the API server
    func isCreated(pod *v1.Pod) bool {
    	return pod.Status.Phase != ""
    }
    
    // isPending returns true if pod has a Phase of PodPending
    func isPending(pod *v1.Pod) bool {
    	return pod.Status.Phase == v1.PodPending
    }
    
    // isFailed returns true if pod has a Phase of PodFailed
    func isFailed(pod *v1.Pod) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    if (dependencyState.getDependency().isConstraint()) {
                        ModuleResolveState targetModule = resolveState.getModule(dependencyState.getModuleIdentifier());
                        if (targetModule.isPending()) {
                            targetModule.unregisterConstraintProvider(this);
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_SIGSUSPEND             = 341 // { int sigsuspend(const sigset_t *sigmask); }
    	SYS_SIGACTION              = 342 // { int sigaction(int sig, const struct sigaction *act, \
    	SYS_SIGPENDING             = 343 // { int sigpending(sigset_t *set); }
    	SYS_SIGRETURN              = 344 // { int sigreturn(ucontext_t *sigcntxp); }
    	SYS_SIGTIMEDWAIT           = 345 // { int sigtimedwait(const sigset_t *set,\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_386.go

    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, \
    	SYS_SIGSUSPEND               = 341 // { int sigsuspend(const sigset_t *sigmask); }
    	SYS_SIGPENDING               = 343 // { int sigpending(sigset_t *set); }
    	SYS_SIGTIMEDWAIT             = 345 // { int sigtimedwait(const sigset_t *set, \
    	SYS_SIGWAITINFO              = 346 // { int sigwaitinfo(const sigset_t *set, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, \
    	SYS_SIGSUSPEND               = 341 // { int sigsuspend(const sigset_t *sigmask); }
    	SYS_SIGPENDING               = 343 // { int sigpending(sigset_t *set); }
    	SYS_SIGTIMEDWAIT             = 345 // { int sigtimedwait(const sigset_t *set, \
    	SYS_SIGWAITINFO              = 346 // { int sigwaitinfo(const sigset_t *set, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top