Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for fulfilled (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

            def writer = new StringWriter()
            new UnboundRulesReporter(new PrintWriter(writer), "").reportOn(rules)
            normaliseLineSeparators(writer.toString())
        }
    
        def "creates unbound rules for unfulfilled binders with unbound subject reference"() {
            binder {
                descriptor("ruleWithUnboundSubjectReference")
                subjectReference("path.subject", String)
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ListenableFuture.java

      /** Note that this method is not expected to be overridden. */
      @JsMethod
      @Override
      default <R extends @Nullable Object> IThenable<R> then(
          @JsOptional @Nullable IThenOnFulfilledCallbackFn<? super V, ? extends R> onFulfilled,
          @JsOptional @Nullable IThenOnRejectedCallbackFn<? extends R> onRejected) {
        return new Promise<V>(
                (resolve, reject) -> {
                  Futures.addCallback(
                      this,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 24 18:27:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer_test.go

    	target.Initialize(wantDrainedNotification)
    	if wantDrainedNotification.stopCh == nil {
    		t.Errorf("expected stopCh to be initialized but found nil")
    	}
    }
    
    // WantExternalKubeInformerFactory is a test stub that fulfills the WantsExternalKubeInformerFactory interface
    type WantExternalKubeInformerFactory struct {
    	sf informers.SharedInformerFactory
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. pkg/apis/authentication/types.go

    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // TokenReview attempts to authenticate a token to a known user.
    type TokenReview struct {
    	metav1.TypeMeta
    	// ObjectMeta fulfills the metav1.ObjectMetaAccessor interface so that the stock
    	// REST handler paths work
    	metav1.ObjectMeta
    
    	// Spec holds information about the request being evaluated
    	Spec TokenReviewSpec
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. pkg/kube/rpc_creds.go

    		expirationSeconds:   expirationSeconds,
    		sunsetPeriod:        time.Duration(sunsetPeriodSeconds) * time.Second,
    		kubeClient:          kubeClient,
    	}, nil
    }
    
    // GetRequestMetadata fulfills the grpc/credentials.PerRPCCredentials interface
    func (its *tokenSupplier) GetRequestMetadata(ctx context.Context, uri ...string) (map[string]string, error) {
    	its.mu.RLock()
    	token := its.Token
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top