Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for T1 (0.01 sec)

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

     *
     * @author koichik
     * @param <T1>
     *            The type of the first value
     * @param <T2>
     *            The type of the second value
     */
    public class Pair<T1, T2> {
    
        /** The first value */
        protected T1 first;
    
        /** The second value */
        protected T2 second;
    
        /**
         * Creates and returns a pair of two values.
         *
         * @param <T1>
         *            The type of the first value
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt

          assertThat(source.readUtf8()).isEqualTo(responseBody)
          assertThat(response.peekTrailers()).isEqualTo(headersOf("t1", "v2"))
          assertThat(response.peekTrailers()).isEqualTo(headersOf("t1", "v2")) // Idempotent.
          assertThat(response.trailers()).isEqualTo(headersOf("t1", "v2"))
        }
      }
    
      @Test
      fun trailersWithServerTruncatedResponseHttp1() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 18K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple4.java

    /**
     * A tuple of four values.
     *
     * @param <T1>
     *            The type of the first value
     * @param <T2>
     *            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 */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/misc/Tuple5.java

         * @param value4
         *            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);
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            /**
             * @return T1
             */
            T1[] array();
    
            /**
             * @return List
             */
            List<T2> list();
    
            /**
             * @return Set
             */
            Set<T1> set();
    
            /**
             * @return Map
             */
            Map<T1, T2> map();
        }
    
        /**
         *
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/Tuple3.java

    /**
     * A tuple of three values.
     *
     * @author koichik
     * @param <T1>
     *            The type of the first value
     * @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;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  7. ci/official/utilities/rename_and_verify_wheels.sh

      fi
    fi
    "$python" -m pip install *.whl $TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS
    if [[ "$TFCI_WHL_IMPORT_TEST_ENABLE" == "1" ]]; then
      "$python" -c 'import tensorflow as tf; t1=tf.constant([1,2,3,4]); t2=tf.constant([5,6,7,8]); print(tf.add(t1,t2).shape)'
      "$python" -c 'import sys; import tensorflow as tf; sys.exit(0 if "keras" in tf.keras.__name__ else 1)'
    fi
    # Import tf nightly wheel built with numpy2 from PyPI in numpy1 env for testing.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Apr 25 00:22:38 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb1/smb1/TestLockingTest.java

            TestLocking t1 = new TestLocking();
            TestLocking t2 = new TestLocking();
    
            // Set different values
            t1.numThreads = 2;
            t1.url = "smb://server1/share/file.txt";
    
            t2.numThreads = 5;
            t2.url = "smb://server2/share/file.txt";
    
            // Verify independence
            assertEquals(2, t1.numThreads, "t1 should have its own numThreads value");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      public <T extends NoInterface, T1 extends T, T2 extends T1>
          void testGetGenericInterfaces_typeVariable_boundIsTypeVariableAndClass() {
        assertThat(TypeToken.of(new TypeCapture<T2>() {}.capture()).getGenericInterfaces()).isEmpty();
        assertHasArrayInterfaces(new TypeToken<T2[]>() {});
      }
    
      public <T extends Iterable<T>, T1 extends T, T2 extends T1>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      public <T extends NoInterface, T1 extends T, T2 extends T1>
          void testGetGenericInterfaces_typeVariable_boundIsTypeVariableAndClass() {
        assertThat(TypeToken.of(new TypeCapture<T2>() {}.capture()).getGenericInterfaces()).isEmpty();
        assertHasArrayInterfaces(new TypeToken<T2[]>() {});
      }
    
      public <T extends Iterable<T>, T1 extends T, T2 extends T1>
    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