Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 250 for compiler (0.05 sec)

  1. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            assertNull(result.getDocumentList().get(0));
        }
    
        public void test_complexDocumentStructure() {
            // Test with complex nested document structure
            Map<String, Object> doc = new HashMap<>();
            doc.put("id", "complex");
    
            Map<String, Object> nested = new HashMap<>();
            nested.put("level2", "value");
            doc.put("nested", nested);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. android/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)
  3. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

         */
        public void test_labelConstantsNamingConvention() throws Exception {
            Field[] fields = FessLabels.class.getDeclaredFields();
            Pattern labelPattern = Pattern.compile("^LABELS_[A-Za-z0-9_]+$");
    
            for (Field field : fields) {
                if (Modifier.isStatic(field.getModifiers()) && Modifier.isFinal(field.getModifiers()) && Modifier.isPublic(field.getModifiers())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlerLogHelperTest.java

            assertNotNull(crawlerLogHelper);
        }
    
        public void test_log_method_exists() {
            // Test that the log method exists and can be called
            // We can't easily test the actual functionality without complex mocking
            // but we can verify the class structure
            assertNotNull(crawlerLogHelper);
            assertTrue(CrawlerLogHelper.class.getSuperclass().getSimpleName().contains("LogHelper"));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java

            // Verify the exception is serializable (has serialVersionUID)
            assertNotNull(exception);
            // The serialVersionUID field exists and is accessible at compile time
            assertTrue(exception instanceof java.io.Serializable);
        }
    
        public void test_stackTrace() {
            // Test that stack trace is properly preserved
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

        }
    
        public void test_isUrlCrawlable_excludePatternAsPattern() {
            DataStoreParams paramMap = new DataStoreParams();
            Pattern pattern = Pattern.compile(".*\\.jpg$");
            paramMap.put("url_exclude_pattern", pattern);
    
            boolean result1 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/image.jpg");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 23:31:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

        } catch (e: IllegalAccessException) {
          throw AssertionError("failed to get ALPN selected protocol", e)
        }
      }
    
      /**
       * Handle the methods of ALPN's ClientProvider and ServerProvider without a compile-time
       * dependency on those interfaces.
       */
      private class AlpnProvider(
        /** This peer's supported protocols. */
        private val protocols: List<String>,
      ) : InvocationHandler {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  8. docs/changelogs/upgrading_to_okhttp_4.md

    keeping the package name the same: `okhttp3`!
    
    There are three kinds of compatibility we’re tracking:
    
     * **Binary compatibility** is the ability to compile a program against OkHttp 3.x, and then to run
       it against OkHttp 4.x. We’re using the excellent [japicmp][japicmp] library via its
       [Gradle plugin][japicmp_gradle] to enforce binary compatibility.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. maven-tests/mvnw

    	  }
    	}
    	END
      # For Cygwin/MinGW, switch paths to Windows format before running javac and java
      verbose " - Compiling Downloader.java ..."
      "$(native_path "$JAVACCMD")" "$(native_path "$javaSource")" || die "Failed to compile Downloader.java"
      verbose " - Running Downloader.java ..."
      "$(native_path "$JAVACMD")" -cp "$(native_path "$TMP_DOWNLOAD_DIR")" Downloader "$distributionUrl" "$(native_path "$targetZip")"
    fi
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RegularImmutableTable.java

      }
    
      /**
       * @throws IllegalArgumentException if {@code existingValue} is not null.
       */
      /*
       * We could have declared this method 'static' but the additional compile-time checks achieved by
       * referencing the type variables seem worthwhile.
       */
      final void checkNoDuplicate(R rowKey, C columnKey, @Nullable V existingValue, V newValue) {
        checkArgument(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 08 13:05:15 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top