Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for finalizer (3.98 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. 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)
  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/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			claim.Finalizers = append(claim.Finalizers, resourcev1alpha2.Finalizer)
    			if _, err := pl.clientset.ResourceV1alpha2().ResourceClaims(claim.Namespace).Update(ctx, claim, metav1.UpdateOptions{}); err != nil {
    				return nil, fmt.Errorf("add finalizer: %v", err)
    			}
    		}
    	}
    
    	// The claim might be stale, for example because the claim can get shared and some
    	// other goroutine has updated it in the meantime. We therefore cannot use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. 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)
  6. src/runtime/pprof/pprof_test.go

    			})
    		}
    		wg.Wait()
    	})
    
    	// The finalizer goroutine should not show up in most profiles, since it's
    	// marked as a system goroutine when idle.
    	t.Run("finalizer not present", func(t *testing.T) {
    		var w strings.Builder
    		goroutineProf.WriteTo(&w, 1)
    		prof := w.String()
    		if includesFinalizer(prof) {
    			t.Errorf("profile includes finalizer (but finalizer should be marked as system):\n%s", prof)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K 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

    	// 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: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  10. pkg/apis/certificates/validation/validation_test.go

    	}{{
    		name:   "no-op",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    		oldCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec},
    	}, {
    		name:   "finalizer change with invalid status",
    		newCSR: &capi.CertificateSigningRequest{ObjectMeta: validUpdateMeta, Spec: validSpec, Status: capi.CertificateSigningRequestStatus{Certificate: invalidCertificateNoPEM}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top