Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for 1F (0.05 seconds)

  1. guava-tests/test/com/google/common/math/MathPreconditionsTest.java

      }
    
      public void testCheckNonNegative_positiveFloat() {
        MathPreconditions.checkNonNegative("float", 1f);
      }
    
      public void testCheckNonNegative_negativeFloat() {
        assertThrows(
            IllegalArgumentException.class, () -> MathPreconditions.checkNonNegative("float", -1f));
      }
    
      public void testCheckNonNegative_nanFloat() {
        assertThrows(
            IllegalArgumentException.class,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/math/MathPreconditionsTest.java

      }
    
      public void testCheckNonNegative_positiveFloat() {
        MathPreconditions.checkNonNegative("float", 1f);
      }
    
      public void testCheckNonNegative_negativeFloat() {
        assertThrows(
            IllegalArgumentException.class, () -> MathPreconditions.checkNonNegative("float", -1f));
      }
    
      public void testCheckNonNegative_nanFloat() {
        assertThrows(
            IllegalArgumentException.class,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                            final Map<String, Object> fieldMap = new HashMap<>(2, 1f);
                            fieldMap.put("name", field.getName());
                            fieldMap.put("result", field.getValueCountMap().entrySet().stream().map(e -> {
                                final Map<String, Object> valueCount = new HashMap<>(2, 1f);
                                valueCount.put("value", e.getKey());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  4. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        setDefault(Short.class, (short) 1);
        setDefault(int.class, 1);
        setDefault(Integer.class, 1);
        setDefault(long.class, 1L);
        setDefault(Long.class, 1L);
        setDefault(float.class, 1F);
        setDefault(Float.class, 1F);
        setDefault(double.class, 1D);
        setDefault(Double.class, 1D);
        setDefault(Class.class, Class.class);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

      private static final float GREATEST = Float.POSITIVE_INFINITY;
    
      private static final float[] NUMBERS =
          new float[] {
            LEAST,
            -Float.MAX_VALUE,
            -1f,
            -0f,
            0f,
            1f,
            Float.MAX_VALUE,
            GREATEST,
            Float.MIN_NORMAL,
            -Float.MIN_NORMAL,
            Float.MIN_VALUE,
            -Float.MIN_VALUE,
            Integer.MIN_VALUE,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 01:43:32 GMT 2026
    - 29.4K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/primitives/FloatsTest.java

      private static final float GREATEST = Float.POSITIVE_INFINITY;
    
      private static final float[] NUMBERS =
          new float[] {
            LEAST,
            -Float.MAX_VALUE,
            -1f,
            -0f,
            0f,
            1f,
            Float.MAX_VALUE,
            GREATEST,
            Float.MIN_NORMAL,
            -Float.MIN_NORMAL,
            Float.MIN_VALUE,
            -Float.MIN_VALUE,
            Integer.MIN_VALUE,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 01:43:32 GMT 2026
    - 29.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

            if ("dismax".equals(ComponentUtil.getFessConfig().getQueryDefaultQueryType())) {
                return QueryBuilders.disMaxQuery()
                        .tieBreaker(0.1f)//
                        .add(QueryBuilders.matchPhraseQuery("title", query).boost(titleBoost))//
                        .add(QueryBuilders.matchPhraseQuery("content", query).boost(contentBoost))//
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 53.2K bytes
    - Click Count (0)
Back to Top