Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for suspending (0.39 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

        val classLoader: ClassLoader
    
        fun beanStateReaderFor(beanType: Class<*>): BeanStateReader
    
        /**
         * When in immediate mode, [read] calls are NOT suspending.
         * Useful for bridging with non-suspending serialization protocols such as [java.io.Serializable].
         */
        var immediateMode: Boolean // TODO:configuration-cache prevent StackOverflowErrors when crossing protocols
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			expectedDeletions:     2,
    			expectedCompletedIdxs: "0",
    			expectedActive:        0,
    			expectedFailed:        0,
    			expectedPodPatches:    5,
    			expectedReady:         ptr.To[int32](0),
    		},
    		"suspending a job with satisfied expectations": {
    			// Suspended Job should delete active pods when expectations are
    			// satisfied.
    			suspend:                 true,
    			parallelism:             2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// false to true), the Job controller will delete all active Pods associated
    	// with this Job. Users must design their workload to gracefully handle this.
    	// Suspending a Job will reset the StartTime field of the Job, effectively
    	// resetting the ActiveDeadlineSeconds timer too. Defaults to false.
    	//
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

                        node.clearConstraintEdges(pendingDependencies, removalSource);
                    }
                }
            }
        }
    
        boolean isPending() {
            return pendingDependencies.isPending();
        }
    
        PendingDependencies getPendingDependencies() {
            return pendingDependencies;
        }
    
        void registerConstraintProvider(NodeState node) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K 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. 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)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

              "type": "boolean"
            },
            "template": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top