Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 69 for ranking (0.04 seconds)

  1. src/main/resources/fess_config.properties

    indexer.thread.dump.enabled=true
    # Maximum number of unprocessed documents for the indexer.
    indexer.unprocessed.document.size=1000
    # Whether to enable click count tracking in the indexer.
    indexer.click.count.enabled=true
    # Whether to enable favorite count tracking in the indexer.
    indexer.favorite.count.enabled=true
    # Commit margin time (ms) for webfs in the indexer.
    indexer.webfs.commit.margin.time=5000
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  2. CONTRIBUTING.md

    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    IntelliJ automatically hides stacktrace elements from the `org.gradle` package, which makes running/debugging tests more difficult. You can disable this behavior by changing IntelliJ Preferences under Editor -> General -> Console. In the "Fold lines that contain" section, remove the `org.gradle` entry.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  3. LICENSE

          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 16:29:02 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

            project.findProperty("currentReleasedVersionBuildTimestamp").toString()
        )
    }
    
    val updateAgpVersions = tasks.register<UpdateAgpVersions>("updateAgpVersions") {
        comment = " Generated - Update by running `./gradlew updateAgpVersions`"
        currentGradleVersion = gradleModule.identity.version
        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

                assertNotNull(jobProcess);
    
                // Wait for process to start
                Thread.sleep(100);
    
                // Verify process is running
                assertTrue("Process did not become running within timeout", processHelper.isProcessRunning(sessionId));
    
                // Destroy the process
                int exitCode = processHelper.destroyProcess(sessionId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16K bytes
    - Click Count (0)
  6. architecture/standards/0007-java-pre-requisite.md

    # ADR-0007 - Support running Gradle on multiple Java versions and do not embed a Java runtime in the Gradle distribution
    
    ## Status
    
    - PROPOSED on 2024-12-20
    
    ## Context
    
    ### Embedding a Java runtime in the Gradle distribution
    
    There have been discussions on embedding a Java runtime in the Gradle distribution.
    This would allow users to run Gradle without having to install a Java runtime beforehand.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                ThreadUtil.sleep(sleepTime);
                count++;
                final Map<String, Object> scheduler = getSchedulerItem(namePrefix);
                assertTrue(scheduler.containsKey("running"));
                isRunning = (Boolean) scheduler.get("running");
    
                // Exponential backoff: gradually increase sleep time up to 300ms
                if (count % 5 == 0 && sleepTime < 300) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  8. architecture/standards/0010-gradle-properties-naming.md

    If the intention is to gather user feedback on an early prototype, then the experimental property should be used.
    If the intention is to allow an issue reporter to get additional local diagnostics when running a build in their proprietary environment, then the internal property is sufficient.
    
    Examples of properties that follow the naming rules:
    
    * `org.gradle.experimental.declarative-common`
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

            helper.setCrawlerWaitMillis(50);
    
            // Test when crawler is running
            assertTrue(helper.isCrawlerRunning());
            long start = System.currentTimeMillis();
            helper.checkCrawlerStatus();
            long end = System.currentTimeMillis();
            assertTrue(end - start < 100); // Should return quickly
    
            // Test when crawler is not running
            helper.setCrawlerRunning(false);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/entity/PingResponseTest.java

            }
            super.tearDown(testInfo);
        }
    
        @Test
        public void test_getStatus_returnsCorrectValue() {
            // Since we cannot easily create a real ClusterHealthResponse without a running cluster,
            // we'll test the class behavior through unit tests that verify the logic
            // The actual integration with ClusterHealthResponse is tested in integration tests
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.7K bytes
    - Click Count (0)
Back to Top