Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 287 for finalizer (0.14 sec)

  1. pkg/apis/core/helper/helpers.go

    var standardFinalizers = sets.New(
    	string(core.FinalizerKubernetes),
    	metav1.FinalizerOrphanDependents,
    	metav1.FinalizerDeleteDependents,
    )
    
    // IsStandardFinalizerName checks if the input string is a standard finalizer name
    func IsStandardFinalizerName(str string) bool {
    	return standardFinalizers.Has(str)
    }
    
    // GetAccessModesAsString returns a string representation of an array of access modes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(":cPing")
                run ":cPing", ":aPing"
            }
        }
    
        @Timeout(30)
        def "handles an exception thrown while walking the task graph when a finalizer is present"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                class BrokenTask extends DefaultTask {
                    @OutputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:\n\n1. Add the pod UID to the arrays in this field. 2. Remove the pod finalizer. 3. Remove the pod UID from the arrays while increasing the corresponding\n    counter.\n\nOld jobs might not be tracked using this field, in which case...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                        }
                        // Skipped some nodes, which may invalidate some earlier nodes (for example a shared dependency of multiple finalizers when all finalizers are skipped), so start again
                        readyNodes.removeAndRestart(node);
                        continue;
                    }
    
                    if (node.hasPendingPreExecutionNodes()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  5. doc/go_mem.html

    and Java’s <code>volatile</code> variables.
    </p>
    
    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.proto

      //
      // The job controller creates pods with a finalizer. When a pod terminates
      // (succeeded or failed), the controller does three steps to account for it
      // in the job status:
      //
      // 1. Add the pod UID to the arrays in this field.
      // 2. Remove the pod finalizer.
      // 3. Remove the pod UID from the arrays while increasing the corresponding
      //     counter.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

        "linux" : 430,
        "windows" : 768,
        "macOs" : 423
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.calculate task graph with test finalizer",
      "durations" : [ {
        "testProject" : "largeAndroidBuild",
        "linux" : 492
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  8. pkg/scheduler/testing/wrappers.go

    // This modifies the allocation result and adds the reserved finalizer if the claim
    // is allocated. The claim has to become local to a node. The assumption is that
    // "named resources" are used.
    func (wrapper *ResourceClaimWrapper) Structured(nodeName string, namedResourcesInstances ...string) *ResourceClaimWrapper {
    	if wrapper.ResourceClaim.Status.Allocation != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. .teamcity/performance-tests-ci.json

            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.android.RealLifeAndroidBuildPerformanceTest.calculate task graph with test finalizer",
        "groups" : [ {
          "testProject" : "largeAndroidBuild",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/range_allocator.go

    			if err == nil {
    				ra.queue.Add(key)
    			}
    		},
    		DeleteFunc: func(obj interface{}) {
    			// The informer cache no longer has the object, and since Node doesn't have a finalizer,
    			// we don't see the Update with DeletionTimestamp != 0.
    			// TODO: instead of executing the operation directly in the handler, build a small cache with key node.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top