Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Purpose (0.03 sec)

  1. guava/src/com/google/common/collect/TopKSelector.java

        T tmp = buffer[i];
        buffer[i] = buffer[j];
        buffer[j] = tmp;
      }
    
      /*
       * While the current implementation returns `this`, that's not something we mean to guarantee.
       * Anyway, the purpose of this method is to implement a BinaryOperator combiner for a Collector,
       * so its return value will get used naturally.
       */
      @SuppressWarnings("CanIgnoreReturnValueSuggester")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      @SuppressWarnings("rawtypes") // purpose is to test raw type
      public void testGetSupertype_fromRawClass() {
        assertEquals(
            Types.newParameterizedType(Iterable.class, List.class.getTypeParameters()[0]),
            new TypeToken<List>() {}.getSupertype(Iterable.class).getType());
      }
    
      @SuppressWarnings({"rawtypes", "unchecked"}) // purpose is to test raw type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      @SuppressWarnings("rawtypes") // purpose is to test raw type
      public void testGetSupertype_fromRawClass() {
        assertEquals(
            Types.newParameterizedType(Iterable.class, List.class.getTypeParameters()[0]),
            new TypeToken<List>() {}.getSupertype(Iterable.class).getType());
      }
    
      @SuppressWarnings({"rawtypes", "unchecked"}) // purpose is to test raw type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

                // or restricted access to system resources. This is acceptable.
                // We primarily want to ensure the method can be called without compilation errors
    
                // Log the exception for debugging purposes but don't fail the test
                System.out.println("Expected exception in test environment: " + t.getClass().getSimpleName() + ": " + t.getMessage());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top