Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for finalizerB (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            given:
            Task finalizerDep = task("finalizerDep", type: Async)
            Task finalizer = task("finalizer", dependsOn: [finalizerDep])
            Task a = task("a", type: Async, finalizedBy: [finalizer])
            Task finalizerDep2 = task("finalizerDep2", type: Async, dependsOn: [finalizer])
            Task finalizer2 = task("finalizer2", dependsOn: [finalizerDep2])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            0 * _
    
            and:
            value == someValue()
        }
    
        def "replaces provider with fixed value when value finalized after value implicitly finalized but not read yet"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // collector. If so, returns the set of deletion finalizers to apply and a bool
    // indicating whether the finalizer list has changed and is in need of updating.
    //
    // The finalizers returned are intended to be handled by the garbage collector.
    // If garbage collection is disabled for the store, this function returns false
    // to ensure finalizers aren't set which will never be cleared.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    	}
    	return string(batch.NonIndexedCompletion)
    }
    
    func appendJobCompletionFinalizerIfNotFound(finalizers []string) []string {
    	for _, fin := range finalizers {
    		if fin == batch.JobTrackingFinalizer {
    			return finalizers
    		}
    	}
    	return append(finalizers, batch.JobTrackingFinalizer)
    }
    
    func removeTrackingFinalizerPatch(pod *v1.Pod) []byte {
    	if !hasJobTrackingFinalizer(pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            0 * closure._
            1 * fileResolver.resolve('a') >> file1
            1 * fileResolver.resolve('b') >> file2
            0 * fileResolver._
        }
    
        def "can finalize when already finalized"() {
            given:
            def file = new File('one')
            collection.from('a')
    
            when:
            collection.finalizeValue()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // in this list can only be removed.
      // Finalizers may be processed and removed in any order.  Order is NOT enforced
      // because it introduces significant risk of stuck finalizers.
      // finalizers is a shared field, any actor with permission can reorder it.
      // If the finalizer list is processed in order, then this can lead to a situation
      // in which the component responsible for the first finalizer in the list is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // in this list can only be removed.
      // Finalizers may be processed and removed in any order.  Order is NOT enforced
      // because it introduces significant risk of stuck finalizers.
      // finalizers is a shared field, any actor with permission can reorder it.
      // If the finalizer list is processed in order, then this can lead to a situation
      // in which the component responsible for the first finalizer in the list is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// component responsible for a finalizer later in the list, resulting in a deadlock.
    	// Without enforced ordering finalizers are free to order amongst themselves and
    	// are not vulnerable to ordering changes in the list.
    	// +optional
    	// +patchStrategy=merge
    	// +listType=set
    	Finalizers []string `json:"finalizers,omitempty" patchStrategy:"merge" protobuf:"bytes,14,rep,name=finalizers"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top