Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 937 for DerivedT (0.2 sec)

  1. android/guava-tests/test/com/google/common/collect/SetsTest.java

        verifySortedSetContents(set, SOME_ITERABLE, null);
      }
    
      public void testNewTreeSetFromIterableDerived() {
        Iterable<Derived> iterable = Arrays.asList(new Derived("foo"), new Derived("bar"));
        TreeSet<Derived> set = Sets.newTreeSet(iterable);
        assertThat(set).containsExactly(new Derived("bar"), new Derived("foo")).inOrder();
      }
    
      public void testNewTreeSetFromIterableNonGeneric() {
        Iterable<LegacyComparable> iterable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 47.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_issue47650.txt

    [short] skip 'creates and uses a git repository'
    [!git] skip
    
    env GOPRIVATE=vcs-test.golang.org
    
    # If we request a package in a subdirectory of a module by commit hash, we
    # successfully resolve it to a pseudo-version derived from a tag on the parent
    # commit.
    cp go.mod go.mod.orig
    go get -x vcs-test.golang.org/git/issue47650.git/cmd/issue47650@21535ef346c3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/ResolutionProvider.java

     */
    
    package org.gradle.internal.exceptions;
    
    import org.gradle.api.NonNullApi;
    
    import java.util.List;
    
    /**
     * A provider of resolutions for an exception.
     * Exceptions can be derived from this interface to provide a list of resolutions that are then displayed in the suggestion section of the error message.
     */
    
    @NonNullApi
    public interface ResolutionProvider {
        List<String> getResolutions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1014 bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/DerivedGenerator.java

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A generator that relies on a preexisting generator for most of its work. For example, a derived
     * iterator generator may delegate the work of creating the underlying collection to an inner
     * collection generator.
     *
     * <p>{@code GwtTestSuiteGenerator} expects every {@code DerivedIterator} implementation to provide
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/DerivedGenerator.java

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A generator that relies on a preexisting generator for most of its work. For example, a derived
     * iterator generator may delegate the work of creating the underlying collection to an inner
     * collection generator.
     *
     * <p>{@code GwtTestSuiteGenerator} expects every {@code DerivedIterator} implementation to provide
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. src/crypto/tls/key_schedule_test.go

    	}
    	tests := []struct {
    		name string
    		args args
    		want []byte
    	}{
    		{
    			`derive secret for handshake "tls13 derived"`,
    			args{
    				parseVector(`PRK (32 octets):  33 ad 0a 1c 60 7e c0 3b 09 e6 cd 98 93 68 0c e2
    				10 ad f3 00 aa 1f 26 60 e1 b2 2e 10 f1 70 f9 2a`),
    				"derived",
    				nil,
    			},
    			parseVector(`expanded (32 octets):  6f 26 15 a1 08 c7 02 c5 67 8f 54 fc 9d ba
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/SetsTest.java

        verifySortedSetContents(set, SOME_ITERABLE, null);
      }
    
      public void testNewTreeSetFromIterableDerived() {
        Iterable<Derived> iterable = Arrays.asList(new Derived("foo"), new Derived("bar"));
        TreeSet<Derived> set = Sets.newTreeSet(iterable);
        assertThat(set).containsExactly(new Derived("bar"), new Derived("foo")).inOrder();
      }
    
      public void testNewTreeSetFromIterableNonGeneric() {
        Iterable<LegacyComparable> iterable =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/rest/storage_flowcontrol_test.go

    	stopCh := make(chan struct{})
    	ctx, cancel := contextFromChannelAndMaxWaitDuration(stopCh, time.Hour)
    	defer cancel()
    
    	select {
    	case <-ctx.Done():
    		t.Fatalf("Expected the derived context to be not cancelled, but got: %v", ctx.Err())
    	default:
    	}
    
    	close(stopCh)
    
    	<-ctx.Done()
    	if ctx.Err() != context.Canceled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 16:08:39 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    ----
    <1> TestSuiteName attribute; value is derived from link:{javadocPath}/org/gradle/api/plugins/jvm/JvmTestSuite.html#getName--[JvmTestSuite#getName()].
    <2> TestSuiteTargetName attribute; value is derived from link:{javadocPath}/org/gradle/api/plugins/jvm/JvmTestSuiteTarget.html#getName--[JvmTestSuiteTarget#getName()].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/graph_optimization_pass.h

    #include <string>
    
    #include "tensorflow/compiler/mlir/mlir_graph_optimization_pass.h"
    
    namespace mlir {
    namespace TF {
    
    // Bundle generic MLIR graph optimization passes (some derived from TF Grappler
    // graph optimizers) into a single MLIR optimization pass.
    class MlirGraphOptimizationPass : public ::tensorflow::MlirOptimizationPass {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 21 23:21:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top