Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for t3 (0.01 sec)

  1. src/main/java/org/codelibs/core/misc/Tuple4.java

     *            The type of the second value
     * @param <T3>
     *            The type of the third value
     * @param <T4>
     *            The type of the fourth value
     */
    public class Tuple4<T1, T2, T3, T4> {
    
        /** The first value */
        protected T1 value1;
    
        /** The second value */
        protected T2 value2;
    
        /** The third value */
        protected T3 value3;
    
        /** The fourth value */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/Tuple5.java

         *            The fourth value
         * @param value5
         *            The fifth value
         * @return A tuple of five values
         */
        public static <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5> tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4,
                final T5 value5) {
            return new Tuple5<>(value1, value2, value3, value4, value5);
        }
    
        /**
         * Constructs an instance.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            final Method m3 = MapType.class.getMethod("mapOfWildcard");
            final Type t3 = m3.getGenericReturnType();
            assertThat(GenericsUtil.isTypeOf(t3, Map.class), is(true));
            assertThat(WildcardType.class.isInstance(GenericsUtil.getKeyTypeOfMap(t3)), is(true));
            assertThat(WildcardType.class.isInstance(GenericsUtil.getValueTypeOfMap(t3)), is(true));
        }
    
        /**
         * @throws Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Tuple3.java

     * @param <T2>
     *            The type of the second value
     * @param <T3>
     *            The type of the third value
     */
    public class Tuple3<T1, T2, T3> {
    
        /** The first value */
        protected T1 value1;
    
        /** The second value */
        protected T2 value2;
    
        /** The third value */
        protected T3 value3;
    
        /**
         * Creates and returns a tuple of three values.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. callbacks/helper_test.go

    )
    
    func TestLoadOrStoreVisitMap(t *testing.T) {
    	var vm visitMap
    	var loaded bool
    	type testM struct {
    		Name string
    	}
    
    	t1 := testM{Name: "t1"}
    	t2 := testM{Name: "t2"}
    	t3 := testM{Name: "t3"}
    
    	vm = make(visitMap)
    	if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf(&t1)); loaded {
    		t.Fatalf("loaded should be false")
    	}
    
    	if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf(&t1)); !loaded {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Mar 05 02:22:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

        val t2 = System.nanoTime() / 1e6 - t1
        assertThat(t2).isCloseTo(750.0, 250.0)
    
        assertThat(log.take()).isEqualTo("runOnce delays.size=1")
        val t3 = System.nanoTime() / 1e6 - t1
        assertThat(t3).isCloseTo(1750.0, 250.0)
      }
    
      @Test fun taskFailsWithUncheckedException() {
        queue.schedule("task", TimeUnit.MILLISECONDS.toNanos(100)) {
          log.put("failing task running")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(actualSubtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
      }
    
      public <T> void testGetSubtype_manyGenericArgs() {
        class FourTypeArgs<T1, T2, T3, T4> {}
        class ThreeTypeArgs<T1, T2, T3> extends FourTypeArgs<T1, T2, T3, String> {}
        TypeToken<FourTypeArgs<T, Integer, ?, ?>> supertype =
            new TypeToken<FourTypeArgs<T, Integer, ?, ?>>() {};
        TypeToken<ThreeTypeArgs<T, Integer, String>> subtype =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(actualSubtype.getActualTypeArguments()[0]).isInstanceOf(WildcardType.class);
      }
    
      public <T> void testGetSubtype_manyGenericArgs() {
        class FourTypeArgs<T1, T2, T3, T4> {}
        class ThreeTypeArgs<T1, T2, T3> extends FourTypeArgs<T1, T2, T3, String> {}
        TypeToken<FourTypeArgs<T, Integer, ?, ?>> supertype =
            new TypeToken<FourTypeArgs<T, Integer, ?, ?>>() {};
        TypeToken<ThreeTypeArgs<T, Integer, String>> subtype =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
Back to top