Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 34 for _all (0.01 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

            description =
                "Command line option for the performance test task to enable profiling. " +
                    "For example `async-profiler`, `async-profiler-heap`, `async-profiler-wall`, `async-profiler-all` or `jfr`. Use `none` for benchmarking only.",
        )
    }
    
    object AdHocPerformanceScenarioLinux : AdHocPerformanceScenario(Os.LINUX)
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            // During rebuild, addMapping is always called with loadBulkData=false
            // because bulk data is loaded separately with createOnly=true via insertBulkData.
            for (final String[] call : testClient.addMappingCalls) {
                assertNotNull(call);
            }
            // The loadBulkData=true path triggers getResourcePath + ResourceUtil.isExist checks.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 28.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            job.setScriptType("groovy");
            job.setScriptData("println 'test'");
            job.setTarget("all");
            return job;
        }
    
        @FunctionalInterface
        private interface LaunchNowWithParamsCallback {
            LaunchedProcess call(LaunchNowOpCall opCall);
        }
    
        private void registerMockJobManager(final String jobId, final LaunchNowWithParamsCallback withParamsCallback) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java

     *
     * <p>Thread Safety: This class is thread-safe. Each cached entry holds its own
     * GroovyClassLoader. The cache uses Guava Cache with segment-based locking for
     * lock-free concurrent reads. Each evaluate() call creates a new Script instance
     * to ensure thread isolation of bindings.</p>
     *
     * <p>Note on class-level isolation: Compiled Script classes are cached and reused.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  6. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"name":"Suggest Indexer","target":"all","cronExpression":"0 12 * * *","scriptType":"groovy","scriptData":"return container.getComponent(\"suggestJob\").logLevel(\"info\").sessionId(\"SUGGEST\").execute(executor);","jobLogging":true,"crawler":false,"available":true,"sortOrder":2,"createdBy":"system","createdTime":0,"updatedBy":"system","updatedTime":0}
    {"index":{"_index":"fess_config.scheduled_job","_id":"log_aggregator"}}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

        /**
         * Publishes an event to all instances.
         *
         * @param eventName the event name.
         * @param data optional event data.
         */
        public void publishEvent(final String eventName, final String data) {
            publishEvent(eventName, TARGET_ALL, data);
        }
    
        /**
         * Publishes an event to a specific instance or all instances.
         *
         * @param eventName the event name.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
         * @param to the preferred module
         */
        private
        fun ConfigurationContainer.forceUpgrade(to: String, version: String) = all {
            resolutionStrategy.dependencySubstitution {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 09:04:32 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  9. .teamcity/src/main/kotlin/projects/StageProject.kt

                        "$HIDDEN_ARTIFACT_DESTINATION/report-architecture-test-binary-compatibility-report.html",
                    )
                    buildReportTab("Incubating APIs Report", "incubation-reports/all-incubating.html")
                }
                if (stage.performanceTests.isNotEmpty()) {
                    buildReportTab("Performance", "performance-test-results.zip!report/index.html")
                }
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            logger.info("Number of crawling info logs before deletion: {}", sizeBeforeDeletion);
    
            // Delete all old crawling sessions
            deleteMethod("/api/admin/crawlinginfo/all").then().body("response.status", equalTo(0));
            refresh();
    
            // Verify all old sessions are deleted (size should be 0 after deletion)
            final List<Map<String, Object>> logListAfter = readCrawlingInfo(webConfigId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
Back to Top