Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for fulfilled (0.12 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/responsewriters/status_test.go

    		},
    		errors.NewConflict(schema.GroupResource{Resource: "foos"}, "bar", stderrs.New("failure")): {
    			Status:  metav1.StatusFailure,
    			Code:    http.StatusConflict,
    			Reason:  "Conflict",
    			Message: "Operation cannot be fulfilled on foos \"bar\": failure",
    			Details: &metav1.StatusDetails{
    				Group: "",
    				Kind:  "foos",
    				Name:  "bar",
    			},
    		},
    	}
    	for k, v := range cases {
    		actual := ErrorToAPIStatus(k)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 05 13:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  3. 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. 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)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batching_fallback.mlir

    func.func @matmul_cpu(%ch: !tfrt.chain, %a: !tfrt_fallback.tf_tensor, %b: !tfrt_fallback.tf_tensor) -> (!tfrt.chain, !tfrt_fallback.tf_tensor) {
      // Enqueue a sleep onto blocking work queue, %ch0 is fulfilled when sleeping is done.
      %us = tfrt.constant.i32 1000
      %ch0 = "tfrt_test.blocking.usleep"(%us) : (i32) -> (!tfrt.chain)
    
      %ch1 = tfrt.merge.chains %ch, %ch0 : !tfrt.chain, !tfrt.chain
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 18 22:58:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. pkg/filewatcher/filewatcher_test.go

    	// Validate Add behavior
    	err := w.Add(watchFile1)
    	g.Expect(err).NotTo(HaveOccurred())
    	err = w.Add(watchFile2)
    	g.Expect(err).NotTo(HaveOccurred())
    
    	// Validate events and errors channel are fulfilled.
    	events1 := w.Events(watchFile1)
    	g.Expect(events1).NotTo(BeNil())
    	events2 := w.Events(watchFile2)
    	g.Expect(events2).NotTo(BeNil())
    
    	errors1 := w.Errors(watchFile1)
    	g.Expect(errors1).NotTo(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top