Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for 113 (0.04 sec)

  1. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

          .assertLogEqual("--> POST $url (3-byte body)")
          .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms, 0-byte body\)"""))
          .assertNoMoreLogs()
        networkLogs
          .assertLogEqual("--> POST $url http/1.1 (3-byte body)")
          .assertLogMatch(Regex("""<-- 200 OK $url \(\d+ms, 0-byte body\)"""))
          .assertNoMoreLogs()
      }
    
      @Test
      fun basicResponseBody() {
        setLevel(Level.BASIC)
        server.enqueue(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/IntMathTest.java

      @GwtIncompatible // java.math.BigInteger
      public void testMean() {
        // Odd-sized ranges have an obvious mean
        assertMean(2, 1, 3);
    
        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1 << 30) - 1, -1, Integer.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/LongMathTest.java

      @GwtIncompatible // java.math.BigInteger
      public void testMean() {
        // Odd-sized ranges have an obvious mean
        assertMean(2, 1, 3);
    
        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1L << 62) - 1, -1, Long.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/DoublesTest.java

        testReverse(new double[] {}, new double[] {});
        testReverse(new double[] {1}, new double[] {1});
        testReverse(new double[] {1, 2}, new double[] {2, 1});
        testReverse(new double[] {3, 1, 1}, new double[] {1, 1, 3});
        testReverse(new double[] {-1, 1, -2, 2}, new double[] {2, -2, 1, -1});
      }
    
      private static void testReverse(double[] input, double[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/LongsTest.java

        testReverse(new long[] {}, new long[] {});
        testReverse(new long[] {1}, new long[] {1});
        testReverse(new long[] {1, 2}, new long[] {2, 1});
        testReverse(new long[] {3, 1, 1}, new long[] {1, 1, 3});
        testReverse(new long[] {-1, 1, -2, 2}, new long[] {2, -2, 1, -1});
      }
    
      private static void testReverse(long[] input, long[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 28.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testReverse(new short[] {}, new short[] {});
        testReverse(new short[] {1}, new short[] {1});
        testReverse(new short[] {1, 2}, new short[] {2, 1});
        testReverse(new short[] {3, 1, 1}, new short[] {1, 1, 3});
        testReverse(new short[] {-1, 1, -2, 2}, new short[] {2, -2, 1, -1});
      }
    
      private static void testReverse(short[] input, short[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        testReverse(new float[] {}, new float[] {});
        testReverse(new float[] {1}, new float[] {1});
        testReverse(new float[] {1, 2}, new float[] {2, 1});
        testReverse(new float[] {3, 1, 1}, new float[] {1, 1, 3});
        testReverse(new float[] {-1, 1, -2, 2}, new float[] {2, -2, 1, -1});
      }
    
      private static void testReverse(float[] input, float[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/IntsTest.java

      public void testReverse() {
        testReverse(new int[] {}, new int[] {});
        testReverse(new int[] {1}, new int[] {1});
        testReverse(new int[] {1, 2}, new int[] {2, 1});
        testReverse(new int[] {3, 1, 1}, new int[] {1, 1, 3});
        testReverse(new int[] {-1, 1, -2, 2}, new int[] {2, -2, 1, -1});
      }
    
      private static void testReverse(int[] input, int[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/FloatsTest.java

        testReverse(new float[] {}, new float[] {});
        testReverse(new float[] {1}, new float[] {1});
        testReverse(new float[] {1, 2}, new float[] {2, 1});
        testReverse(new float[] {3, 1, 1}, new float[] {1, 1, 3});
        testReverse(new float[] {-1, 1, -2, 2}, new float[] {2, -2, 1, -1});
      }
    
      private static void testReverse(float[] input, float[] expectedOutput) {
        input = Arrays.copyOf(input, input.length);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg debug/elf, const R_PPC_EMB_NADDR32 = 101
    pkg debug/elf, const R_PPC_EMB_RELSDA = 116
    pkg debug/elf, const R_PPC_EMB_RELSEC16 = 111
    pkg debug/elf, const R_PPC_EMB_RELST_HA = 114
    pkg debug/elf, const R_PPC_EMB_RELST_HI = 113
    pkg debug/elf, const R_PPC_EMB_RELST_LO = 112
    pkg debug/elf, const R_PPC_EMB_SDA21 = 109
    pkg debug/elf, const R_PPC_EMB_SDA2I16 = 107
    pkg debug/elf, const R_PPC_EMB_SDA2REL = 108
    pkg debug/elf, const R_PPC_EMB_SDAI16 = 106
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top