Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Fulfilled (0.19 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. pkg/controller/controller_utils.go

    // Add increments the add and del counters.
    func (e *ControlleeExpectations) Add(add, del int64) {
    	atomic.AddInt64(&e.add, add)
    	atomic.AddInt64(&e.del, del)
    }
    
    // Fulfilled returns true if this expectation has been fulfilled.
    func (e *ControlleeExpectations) Fulfilled() bool {
    	// TODO: think about why this line being atomic doesn't matter
    	return atomic.LoadInt64(&e.add) <= 0 && atomic.LoadInt64(&e.del) <= 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc_test.go

    				// end of that chunk. That is the only purpose A serves.
    				{1, PageBase(BaseChunkIdx, PallocChunkPages-1), 0},
    				// Then, we make a big allocation that doesn't fit into B, and so must be
    				// fulfilled by C.
    				//
    				// On the way to fulfilling the allocation into C, we estimate searchAddr
    				// using the summary structure, but that will give us a searchAddr of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top