Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for suspending (0.33 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_SIGACTION              = 342 // { int sigaction(int sig, const struct sigaction *act, struct sigaction *oact); }
    	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,siginfo_t *info, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    	// especially if the input causes the worker process to terminated, requiring
    	// repeated restarts.
    	Timeout time.Duration
    
    	// Limit is the maximum number of values to test, without spending more time
    	// than Duration. 0 indicates no limit.
    	Limit int64
    
    	// KeepCoverage is a set of coverage counters the worker should attempt to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^BIOC/ ||
    		$2 ~ /^DIOC/ ||
    		$2 ~ /^RUSAGE_(SELF|CHILDREN|THREAD)/ ||
    		$2 ~ /^RLIMIT_(AS|CORE|CPU|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK)|RLIM_INFINITY/ ||
    		$2 ~ /^PRIO_(PROCESS|PGRP|USER)/ ||
    		$2 ~ /^CLONE_[A-Z_]+/ ||
    		$2 !~ /^(BPF_TIMEVAL|BPF_FIB_LOOKUP_[A-Z]+|BPF_F_LINK)$/ &&
    		$2 ~ /^(BPF|DLT)_/ ||
    		$2 ~ /^AUDIT_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "template": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    		if err != nil || !isValidName(name) || b64 == "" || len(sig) < 5 {
    			return nil, errMalformedNote
    		}
    		hash := binary.BigEndian.Uint32(sig[0:4])
    		sig = sig[4:]
    
    		if numSig++; numSig > 100 {
    			// Avoid spending forever parsing a note with many signatures.
    			return nil, errMalformedNote
    		}
    
    		v, err := known.Verifier(name, hash)
    		if _, ok := err.(*UnknownVerifierError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	// stack is owned by the goroutine that put it in _Gcopystack.
    	_Gcopystack // 8
    
    	// _Gpreempted means this goroutine stopped itself for a
    	// suspendG preemption. It is like _Gwaiting, but nothing is
    	// yet responsible for ready()ing it. Some suspendG must CAS
    	// the status to _Gwaiting to take responsibility for
    	// ready()ing this G.
    	_Gpreempted // 9
    
    	// _Gscan combined with one of the above states other than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }
    	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, siginfo_t *info, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, const sigset_t *set, sigset_t *oset); }
    	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, siginfo_t *info, const struct timespec *timeout); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top