Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for 2345 (0.03 sec)

  1. okhttp/src/main/kotlin/okhttp3/MediaType.kt

    import okhttp3.internal.commonHashCode
    import okhttp3.internal.commonParameter
    import okhttp3.internal.commonToMediaType
    import okhttp3.internal.commonToMediaTypeOrNull
    import okhttp3.internal.commonToString
    
    /**
     * An [RFC 2045][rfc_2045] Media Type, appropriate to describe the content type of an HTTP request
     * or response body.
     *
     * [rfc_2045]: http://tools.ietf.org/html/rfc2045
     */
    class MediaType internal constructor(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/IterablesTest.java

              }
            };
        assertEquals(2, Iterables.size(iterable));
      }
    
      @SuppressWarnings("serial")
      public void testSize_collection_doesntIterate() {
        List<Integer> nums = asList(1, 2, 3, 4, 5);
        List<Integer> collection =
            new ArrayList<Integer>(nums) {
              @Override
              public Iterator<Integer> iterator() {
                throw new AssertionFailedError("Don't iterate me!");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:12:33 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * AWS: SSL support for ELB listeners through annotations ([#23495](https://github.com/kubernetes/kubernetes/pull/23495), [@therc](https://github.com/therc))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers_test.go

    	defer cancel()
    
    	enrolledNotRedirected := &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "enrolled-not-redirected",
    			Namespace: "test",
    			UID:       "12345",
    			Labels:    map[string]string{label.IoIstioDataplaneMode.Name: constants.DataplaneModeAmbient},
    		},
    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/ConverterTest.java

            }
    
            @Override
            public String toString() {
              return "string2long";
            }
          };
    
      private static final Long LONG_VAL = 12345L;
      private static final String STR_VAL = "12345";
    
      private static final ImmutableList<String> STRINGS = ImmutableList.of("123", "456");
      private static final ImmutableList<Long> LONGS = ImmutableList.of(123L, 456L);
    
      public void testConverter() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 01 16:09:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterator<Integer> iterator = singleton(0).iterator();
        assertEquals(1, Iterators.size(iterator));
      }
    
      public void testSize_partiallyConsumed() {
        Iterator<Integer> iterator = asList(1, 2, 3, 4, 5).iterator();
        iterator.next();
        iterator.next();
        assertEquals(3, Iterators.size(iterator));
      }
    
      public void test_contains_nonnull_yes() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. fuzzing/fuzzingserver-expected.txt

    "13.4.14 UNIMPLEMENTED"
    "13.4.15 UNIMPLEMENTED"
    "13.4.16 UNIMPLEMENTED"
    "13.4.17 UNIMPLEMENTED"
    "13.4.18 UNIMPLEMENTED"
    "13.4.2 UNIMPLEMENTED"
    "13.4.3 UNIMPLEMENTED"
    "13.4.4 UNIMPLEMENTED"
    "13.4.5 UNIMPLEMENTED"
    "13.4.6 UNIMPLEMENTED"
    "13.4.7 UNIMPLEMENTED"
    "13.4.8 UNIMPLEMENTED"
    "13.4.9 UNIMPLEMENTED"
    "13.5.1 UNIMPLEMENTED"
    "13.5.10 UNIMPLEMENTED"
    "13.5.11 UNIMPLEMENTED"
    "13.5.12 UNIMPLEMENTED"
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

      public void testBytes() {
        TestHasher hasher = new TestHasher(); // byte order insignificant here
        byte[] expected = {1, 2, 3, 4, 5, 6, 7, 8};
        hasher.putByte((byte) 1);
        hasher.putBytes(new byte[] {2, 3, 4, 5, 6});
        hasher.putByte((byte) 7);
        hasher.putBytes(new byte[] {});
        hasher.putBytes(new byte[] {8});
        hasher.assertBytes(expected);
      }
    
      public void testShort() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. fess-crawler/src/test/resources/extractor/xml/test_utf16bebom.xml

    ��<address xmlns:hoge="http://www.example.com/hoge">
            <item sex="male" custid="A12345">
                    <name>�4g(Y*��</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. fess-crawler/src/test/resources/extractor/xml/test_utf16lebom.xml

    ��<address xmlns:hoge="http://www.example.com/hoge">
            <item sex="male" custid="A12345">
                    <name>4�(g*Yΐ</name>
                    <access kind="email"></access>
                    <access kind="url">http://www.taro.com/</access>
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Wed Aug 01 02:48:58 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top