Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for finalizerB (0.17 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.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 Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. 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)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			expectedErr: true,
    		},
    		"skip-adding-finalizer": {
    			pod:    podWithClaimName,
    			claims: []*resourcev1alpha2.ResourceClaim{pendingImmediateClaim},
    			oldObj: pendingImmediateClaim,
    			newObj: func() *resourcev1alpha2.ResourceClaim {
    				claim := pendingImmediateClaim.DeepCopy()
    				claim.Finalizers = append(claim.Finalizers, "foo")
    				return claim
    			}(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation_test.go

    func TestValidateCertificateSigningRequestUpdate(t *testing.T) {
    	validUpdateMeta := validObjectMeta
    	validUpdateMeta.ResourceVersion = "1"
    
    	validUpdateMetaWithFinalizers := validUpdateMeta
    	validUpdateMetaWithFinalizers.Finalizers = []string{"foo"}
    
    	validSpec := capi.CertificateSigningRequestSpec{
    		Usages:     validUsages,
    		Request:    newCSRPEM(t),
    		SignerName: "example.com/something",
    	}
    
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            ModelNode.State.Initialized     | ModelActionRole.Initialize.name()
            ModelNode.State.Mutated         | ModelActionRole.Mutate.name()
            ModelNode.State.Finalized       | ModelActionRole.Finalize.name()
            ModelNode.State.SelfClosed      | ModelActionRole.Validate.name()
            ModelNode.State.GraphClosed     | ModelActionRole.Validate.name()
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 62.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
Back to top