Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 250 for compiler (0.04 sec)

  1. android/guava/src/com/google/common/collect/TableCollectors.java

          }
        }
    
        /*
         * 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")
        ImmutableTableCollectorState<R, C, V> combine(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:07:06 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

         * @throws DictionaryException if the input stream cannot be parsed.
         */
        protected void reload(final StemmerOverrideUpdater updater, final InputStream in) {
            final Pattern parsePattern = Pattern.compile("(.*)\\s*=>\\s*(.*)\\s*$");
            final List<StemmerOverrideItem> itemList = new ArrayList<>();
            try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) {
                long id = 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/DoublesTest.java

      private static void checkTryParse(double expected, String input) {
        assertThat(Doubles.tryParse(input)).isEqualTo(Double.valueOf(expected));
        assertThat(input)
            .matches(
                Pattern.compile(
                    Doubles.FLOATING_POINT_PATTERN.pattern(), Doubles.FLOATING_POINT_PATTERN.flags()));
      }
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseHex() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            assertEquals("custom_field", queryContext.getDefaultField());
    
            queryContext.setDefaultField(null);
            assertNull(queryContext.getDefaultField());
        }
    
        // Test complex scenario with multiple operations
        public void test_complexScenario() {
            getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            assertNotNull(dataStoreParams.get("camelCaseKey"));
    
            dataStoreParams.put("snake_case_key", "value2");
            assertNotNull(dataStoreParams.get("snake_case_key"));
        }
    
        // Test with complex object values
        public void test_complexObjectValues() {
            Map<String, String> complexObject = new HashMap<>();
            complexObject.put("nested", "value");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            manager.process(request, response, chain);
    
            assertEquals(201, response.getStatus());
            assertEquals("application/json", response.getHeader("Content-Type"));
            assertEquals("Complex response", response.getWrittenContent());
            assertTrue(chain.wasDoFilterCalled());
        }
    
        // Test implementation classes
    
        private static class TestWebApiManager implements WebApiManager {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            assertEquals(type, exception.getType());
            assertEquals(message, exception.getMessage());
        }
    
        public void test_exceptionInComplexScenario() {
            // Test exception in a more complex scenario
            InvalidAccessTokenException exception = null;
            String expectedType = "Bearer";
            String expectedMessage = "Token has expired";
    
            // Simulate a token validation scenario
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java

            assertNotSame(loginException.getMessageCode(), logoutException.getMessageCode());
        }
    
        public void test_complexMessageCode() {
            // Setup - test with a complex message code that has parameters
            final String errorDetail = "Authentication failed";
            final VaMessenger<FessMessages> complexMessageCode =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

            RankFusionSearcher simpleSearcher = new SimpleSearcher();
            assertEquals("simple", simpleSearcher.getName());
        }
    
        public void test_getName_complexCamelCaseSearcher() {
            // Test with complex camel case naming
            RankFusionSearcher complexSearcher = new VeryComplexRankFusionSearcher();
            assertEquals("very_complex_rank_fusion", complexSearcher.getName());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSet.java

       *
       * @throws NullPointerException if any of {@code elements} is null
       * @since 7.0 (source-compatible since 2.0)
       */
      // This the best we could do to get copyOfEnumSet to compile in the mainline.
      // The suppression also covers the cast to E[], discussed below.
      // In the backport, we don't have those cases and thus don't need this suppression.
      // We keep it to minimize diffs.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
Back to top