Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Fulfilled (0.15 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                    .filter(it -> !types.test(it))
                    .map(JavaClass::getName)
                    .collect(ImmutableSet.toImmutableSet());
                boolean fulfilled = matchedClasses.isEmpty();
                String message = fulfilled
                    ? String.format("%s has only arguments/return type that are %s in %s",
                    method.getDescription(),
                    types.getDescription(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/core/pod/storage/storage_test.go

    	}{
    		{
    			name: "pod with non-nil schedulingGates",
    			schedulingGates: []api.PodSchedulingGate{
    				{Name: "foo"},
    				{Name: "bar"},
    			},
    			wantErr: goerrors.New(`Operation cannot be fulfilled on pods/binding "foo": pod foo has non-empty .spec.schedulingGates`),
    		},
    		{
    			name:            "pod with nil schedulingGates",
    			schedulingGates: nil,
    			wantErr:         nil,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. pkg/controller/controller_utils_test.go

    	// In practice we can't really have add and delete expectations since we only either create or
    	// delete replicas in one rc pass, and the rc goes to sleep soon after until the expectations are
    	// either fulfilled or timeout.
    	adds, dels := 10, 30
    	rc := newReplicationController(1)
    
    	// RC fires off adds and deletes at apiserver, then sets expectations
    	rcKey, err := KeyFunc(rc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top