Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 60 for 3349 (0.06 seconds)

  1. fuzzing/fuzzingserver-expected.txt

    "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"
    "13.5.13 UNIMPLEMENTED"
    "13.5.14 UNIMPLEMENTED"
    "13.5.15 UNIMPLEMENTED"
    "13.5.16 UNIMPLEMENTED"
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 26 02:01:32 GMT 2019
    - 6.7K bytes
    - Click Count (1)
  2. android/guava-testlib/src/com/google/common/collect/testing/AbstractTester.java

       * TestCase#assertNull(String, Object)}.
       *
       * <p>The {@link TestCase} version (which is from JUnit 3) produces a failure message that does
       * not include the value of the object.
       *
       * @since 33.4.0
       */
      public static void assertNull(String message, Object object) {
        assertEquals(message, null, object);
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractTester.java

       * TestCase#assertNull(String, Object)}.
       *
       * <p>The {@link TestCase} version (which is from JUnit 3) produces a failure message that does
       * not include the value of the object.
       *
       * @since 33.4.0
       */
      public static void assertNull(String message, Object object) {
        assertEquals(message, null, object);
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/math/StatsAccumulator.java

          add(value);
        }
      }
    
      /**
       * Adds the given values to the dataset. The stream will be completely consumed by this method.
       *
       * @param values a series of values
       * @since 33.4.0 (but since 28.2 in the JRE flavor)
       */
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public void addAll(DoubleStream values) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Apr 14 16:36:11 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/collect/RangeTest.java

        Range<Integer> range = Range.closed(3, 5);
        assertTrue(range.containsAll(asList(3, 3, 4, 5)));
        assertFalse(range.containsAll(asList(3, 3, 4, 5, 6)));
    
        // We happen to know that natural-order sorted sets use a different code
        // path, so we test that separately
        assertTrue(range.containsAll(ImmutableSortedSet.of(3, 3, 4, 5)));
        assertTrue(range.containsAll(ImmutableSortedSet.of(3)));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 24.2K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/math/Stats.java

       *
       * <p>If you have a {@code Stream<Double>} rather than a {@code DoubleStream}, you should collect
       * the values using {@link #toStats()} instead.
       *
       * @param values a series of values
       * @since 33.4.0 (but since 28.2 in the JRE flavor)
       */
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static Stats of(DoubleStream values) {
        return values
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 25.1K bytes
    - Click Count (0)
  7. futures/failureaccess/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-parent</artifactId>
        <version>33.4.0-android</version>
      </parent>
      <artifactId>failureaccess</artifactId>
      <version>1.0.3</version>
      <packaging>jar</packaging>
      <name>Guava InternalFutureFailureAccess and InternalFutures</name>
      <description>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Oct 02 19:27:26 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/Comparators.java

       * Returns a comparator of {@link Optional} values which treats {@link Optional#empty} as less
       * than all other values, and orders the rest using {@code valueComparator} on the contained
       * value.
       *
       * @since 33.4.0 (but since 22.0 in the JRE flavor)
       */
      @IgnoreJRERequirement // Users will use this only if they're already using Optional.
      public static <T> Comparator<Optional<T>> emptiesFirst(Comparator<? super T> valueComparator) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 11.5K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/io/CharSource.java

       *   lines.map(...)
       *       .filter(...)
       *       .forEach(...);
       * }
       * }
       *
       * @throws IOException if an I/O error occurs while opening the stream
       * @since 33.4.0 (but since 22.0 in the JRE flavor)
       */
      @MustBeClosed
      // If users use this when they shouldn't, we hope that NewApi will catch subsequent Stream calls.
      @IgnoreJRERequirement
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

         *
         * @param initialDelay the time to delay first execution
         * @param delay the delay between the termination of one execution and the commencement of the
         *     next
         * @since 33.4.0 (but since 28.0 in the JRE flavor)
         */
        @IgnoreJRERequirement // Users will use this only if they're already using Duration
        public static Scheduler newFixedDelaySchedule(Duration initialDelay, Duration delay) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 27.7K bytes
    - Click Count (0)
Back to Top