Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 30 for Checks (0.03 seconds)

  1. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                                "clean performance:%testProject%PerformanceAdHocTest --tests \"%scenario%\"",
                                "%performance.baselines%",
                                """--warmups %warmups% --runs %runs% --checks %checks% --profiler %profiler% %generateDiffs% %additional.gradle.parameters%""",
                                os,
                                arch,
                                "%testJavaVersion%",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

            fileProtocols[fileProtocols.length - 1] = prefix;
        }
    
        /**
         * Checks if the given URL is a file path protocol that requires directory and permission handling.
         * Used for incremental crawling directory detection and file permission processing.
         *
         * @param url the URL to check
         * @return true if the URL uses a file path protocol (smb, smb1, file, ftp, s3, gcs)
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 13:59:25 GMT 2026
    - 12.4K bytes
    - Click Count (1)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            }
            return componentMap.containsKey(componentKey);
        }
    
        /**
         * Checks if query parser is available.
         * @return True if query parser is available, false otherwise.
         */
        public static boolean hasQueryParser() {
            return hasComponent(QUERY_PARSER);
        }
    
        /**
         * Checks if view helper is available.
         * @return True if view helper is available, false otherwise.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
        }
    
        /**
         * Checks if the application has reached its end-of-life.
         *
         * @return true if the application is EOL, false otherwise.
         */
        protected boolean isEoled() {
            return getCurrentTimeAsLong() > eolTime;
        }
    
        /**
         * Checks if a permission string is a user permission.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java

        }
    
        @Test
        public void test_destroy_beforeInit() {
            LogNotificationHelper helper = new LogNotificationHelper();
            // destroy() without init() should not throw NPE because of null checks
            helper.destroy();
        }
    
        @Test
        public void test_init_destroy_multipleRounds() {
            LogNotificationHelper helper = new LogNotificationHelper();
            helper.init();
            helper.destroy();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                logger.warn("Failed to get active instances.", e);
            }
            return instances;
        }
    
        /**
         * Checks whether the specified instance is currently active.
         *
         * @param targetInstanceId the instance ID to check.
         * @return {@code true} if the instance is active.
         */
        public boolean isInstanceActive(final String targetInstanceId) {
    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)
  7. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

        protected int getMaxSymbolTermSize() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            return fessConfig.getCrawlerDocumentMaxSymbolTermSizeAsInteger();
        }
    
        /**
         * Checks if duplicate term removal is enabled in configuration.
         *
         * @return true if duplicate terms should be removed, false otherwise
         */
        protected boolean isDuplicateTermRemoved() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:27:04 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        /** Scroll timeout for update operations */
        protected String scrollForUpdate = "1m";
    
        /** Maximum retry attempts for configuration synchronization status checks */
        protected int maxConfigSyncStatusRetry = 10;
    
        /** Maximum retry attempts for search engine status checks */
        protected int maxEsStatusRetry = 60;
    
        /** Name of the search engine cluster */
        protected String clusterName = "fesen";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  9. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            for (final String[] call : testClient.addMappingCalls) {
                assertNotNull(call);
            }
            // The loadBulkData=true path triggers getResourcePath + ResourceUtil.isExist checks.
            // In test environment resource files don't exist, so insertBulkData won't be called,
            // but the overall flow should still succeed.
            assertTrue(testClient.calledMethods.contains("addMapping"));
    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)
  10. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                }
            } catch (final Exception e) {
                // ignore
            }
            return buf.toString();
        }
    
        /**
         * Checks if the given filename is a log file based on its extension.
         *
         * @param name the filename to check
         * @return true if the file is a log file (.log or .log.gz), false otherwise
         */
        protected boolean isLogFilename(final String name) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
Back to Top