Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for Fulfilled (0.18 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. guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

    import java.util.List;
    import org.junit.Ignore;
    
    /**
     * Tests for the {@code inverse} view of a BiMap.
     *
     * <p>This assumes that {@code bimap.inverse().inverse() == bimap}, which is not technically
     * required but is fulfilled by all current implementations.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

    import java.util.List;
    import org.junit.Ignore;
    
    /**
     * Tests for the {@code inverse} view of a BiMap.
     *
     * <p>This assumes that {@code bimap.inverse().inverse() == bimap}, which is not technically
     * required but is fulfilled by all current implementations.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set_test.go

    	if !exists || err != nil || podExp.Fulfilled() {
    		t.Fatalf("Wrong expectations %#v", podExp)
    	}
    
    	// A pod with a non-nil deletion timestamp should also be ignored by the
    	// delete handler, because it's already been counted in the update.
    	manager.deletePod(logger, &pod)
    	podExp, exists, err = manager.expectations.GetExpectations(rsKey)
    	if !exists || err != nil || podExp.Fulfilled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

         *
         * @param request information about the desired configuration
         * @return the configuration that was created or already existed
         * @throws GradleException if the request cannot be fulfilled
         */
        Configuration maybeCreate(RoleBasedConfigurationCreationRequest request);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top