Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for Fulfilled (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	uid := types.UID("uid")
    
    	tc := &patchTestCase{
    		name: "TestPatchResourceWithStaleVersionConflict",
    
    		startingPod: &example.Pod{},
    		updatePod:   &example.Pod{},
    
    		expectedError: `Operation cannot be fulfilled on pods.example.apiserver.k8s.io "foo": existing 2, new 1`,
    		expectedTries: 1,
    	}
    
    	// starting pod is at rv=2
    	tc.startingPod.Name = name
    	tc.startingPod.Namespace = namespace
    	tc.startingPod.UID = uid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/config.go

    	Patch(orig config.Config, patchFn config.PatchFunc) (string, error)
    
    	// Delete removes an object from the store by key
    	// For k8s, resourceVersion must be fulfilled before a deletion is carried out.
    	// If not possible, a 409 Conflict status will be returned.
    	Delete(typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/eviction_test.go

    			}},
    			eviction:            &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t4", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:         `Operation cannot be fulfilled on tests "2": message: Conflict`,
    			podPhase:            api.PodPending,
    			podName:             "t4",
    			expectedDeleteCount: EvictionsRetry.Steps,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    // ValidateAllObjectFunc is a "admit everything" instance of ValidateObjectFunc.
    func ValidateAllObjectFunc(ctx context.Context, obj runtime.Object) error {
    	return nil
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    type Preconditions struct {
    	// Specifies the target UID.
    	// +optional
    	UID *types.UID `json:"uid,omitempty"`
    	// Specifies the target ResourceVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1beta1";
    
    // MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/admissionregistration/v1";
    
    // MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook.
    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"preconditions":      "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    		Reason: metav1.StatusReasonConflict,
    		Details: &metav1.StatusDetails{
    			Group: qualifiedResource.Group,
    			Kind:  qualifiedResource.Resource,
    			Name:  name,
    		},
    		Message: fmt.Sprintf("Operation cannot be fulfilled on %s %q: %v", qualifiedResource.String(), name, err),
    	}}
    }
    
    // NewApplyConflict returns an error including details on the requests apply conflicts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set.go

    			if err != nil {
    				return err
    			}
    		default:
    		}
    	}
    
    	return nil
    }
    
    // syncReplicaSet will sync the ReplicaSet with the given key if it has had its expectations fulfilled,
    // meaning it did not expect to see any more of its pods created or deleted. This function is not meant to be
    // invoked concurrently with the same key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // specified type will be used.
      // Defaults to a per object value if not specified. zero means delete immediately.
      // +optional
      optional int64 gracePeriodSeconds = 1;
    
      // Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be
      // returned.
      // +k8s:conversion-gen=false
      // +optional
      optional Preconditions preconditions = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top