Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for combinations (1.06 sec)

  1. android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java

                return createCacheBuilder(
                    (Integer) combination.get(0),
                    (Integer) combination.get(1),
                    (Integer) combination.get(2),
                    (DurationSpec) combination.get(3),
                    (DurationSpec) combination.get(4),
                    (DurationSpec) combination.get(5),
                    (Strength) combination.get(6),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

            valve.setShowServerInfo(true);
            assertTrue(valve.isShowServerInfo());
        }
    
        public void test_settingsBothTrueAndFalse() {
            // Test all combinations of settings
            valve.setShowReport(true);
            valve.setShowServerInfo(true);
            assertTrue(valve.isShowReport());
            assertTrue(valve.isShowServerInfo());
    
            valve.setShowReport(true);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * memory but only for as long as the user retains a reference to it. That is, the set returned by
       * {@code combinations} does not retain the individual subsets.
       *
       * @param set the set of elements to take combinations of
       * @param size the number of elements per combination
       * @return the set of all combinations of {@code size} elements from {@code set}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

        if (!parentBuilder.getFeatures().contains(NoRecurse.DESCENDING)) {
          derivedSuites.add(createDescendingSuite(parentBuilder));
        }
    
        if (!parentBuilder.getFeatures().contains(NoRecurse.SUBMAP)) {
          // Other combinations are inherited from SortedMapTestSuiteBuilder.
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
          derivedSuites.add(createSubmapSuite(parentBuilder, Bound.EXCLUSIVE, Bound.NO_BOUND));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java

                throw new AssertionError();
              }
            };
        assertThrows(IllegalStateException.class, iter::hasNext);
      }
    
      // Technically we should test other reentrant scenarios (9 combinations of
      // hasNext/next/peek), but we'll cop out for now, knowing that peek() and
      // next() both start by invoking hasNext() anyway.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            PrunedTag anotherTagWithNulls = new PrunedTag("div");
            assertTrue(tagWithNulls.equals(anotherTagWithNulls));
        }
    
        public void test_parse_complexCombinations() {
            // Test complex parsing combinations
            PrunedTag[] tags = PrunedTag.parse("div[data-toggle=modal].modal#main-modal");
            assertEquals(1, tags.length);
            PrunedTag tag = tags[0];
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

        }
    
        // Test register method with case insensitive name
        public void test_register_caseInsensitive() {
            testScriptEngine.register();
    
            // Test various case combinations
            ScriptEngine lowerCase = scriptEngineFactory.getScriptEngine("testengine");
            ScriptEngine upperCase = scriptEngineFactory.getScriptEngine("TESTENGINE");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/CacheReferencesTest.java

    import java.lang.ref.WeakReference;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests of basic {@link LoadingCache} operations with all possible combinations of key & value
     * strengths.
     *
     * @author mike nonemacher
     */
    @NullUnmarked
    public class CacheReferencesTest extends TestCase {
    
      private static final CacheLoader<Key, String> KEY_TO_STRING_LOADER =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            System.setProperty("java.version", "1.8.0_301");
            assertEquals(8, JvmUtil.getJavaVersion());
        }
    
        public void test_getJavaVersion_variousFormats() {
            // Test different separator combinations
            System.setProperty("java.version", "11.0.15.1");
            assertEquals(11, JvmUtil.getJavaVersion());
    
            System.setProperty("java.version", "17_0_2");
            assertEquals(17, JvmUtil.getJavaVersion());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

        double actualReportedFpp = bf.expectedFpp();
        assertThat(actualReportedFpp).isWithin(0.00033).of(expectedReportedFpp);
      }
    
      /** Sanity checking with many combinations of false positive rates and expected insertions */
      public void testBasic() {
        for (double fpr = 0.0000001; fpr < 0.1; fpr *= 10) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top