Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 804 for flaw (0.01 sec)

  1. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

            if (lowercaseWildcard) {
                return value.toLowerCase(Locale.ROOT);
            }
            return value;
        }
    
        /**
         * Sets the lowercase wildcard flag.
         *
         * @param lowercaseWildcard the lowercase wildcard flag
         */
        public void setLowercaseWildcard(final boolean lowercaseWildcard) {
            this.lowercaseWildcard = lowercaseWildcard;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            String logoutUrl = "https://sso.example.com/logout";
            authenticator.setLogoutUrl(logoutUrl);
    
            // Execute authentication flow
            LoginCredential loginResult = authenticator.getLoginCredential();
            assertNotNull(loginResult);
    
            TestLoginCredentialResolver resolver = new TestLoginCredentialResolver();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            final AtomicBoolean flag = new AtomicBoolean(false);
            ShutdownListener listener = new ShutdownListener() {
                @Override
                public void onShutdown() {
                    flag.set(true);
                }
            };
    
            assertFalse(flag.get());
            listener.onShutdown();
            assertTrue(flag.get());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/QueryContext.java

        protected Set<String> highlightedQuerySet = null;
    
        /** Map storing field names and their associated query terms for logging. */
        protected Map<String, List<String>> fieldLogMap = null;
    
        /** Flag indicating whether role-based query filtering should be disabled. */
        protected boolean disableRoleQuery = false;
    
        /** The default field to search in when no specific field is specified. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/MathTesting.java

      static final Iterable<Integer> ALL_INTEGER_CANDIDATES;
    
      static {
        ImmutableSet.Builder<Integer> intValues = ImmutableSet.builder();
        // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31).
        intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE);
        // Add values up to 40. This covers cases like "square of a prime" and such.
        for (int i = 1; i <= 40; i++) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        @Resource
        protected SystemHelper systemHelper;
    
        /** Helper for document indexing operations */
        @Resource
        protected IndexingHelper indexingHelper;
    
        /** Flag indicating if crawling should be finished */
        protected boolean finishCrawling = false;
    
        /** Total execution time in milliseconds */
        protected long executeTime;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/ExecJob.java

        /** The job executor responsible for running this job */
        protected JobExecutor jobExecutor;
    
        /** Unique session identifier for this job execution */
        protected String sessionId;
    
        /** Flag indicating whether to use local Fesen instance */
        protected boolean useLocalFesen = true;
    
        /** Path to the log file for this job execution */
        protected String logFilePath;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Updates the user identification cookie with the specified user code and max age.
         * Configures the cookie with security settings including domain, path, secure flag, and HTTP-only flag.
         *
         * @param userCode the user code to store in the cookie
         * @param age the maximum age of the cookie in seconds
         */
        protected void updateCookie(final String userCode, final int age) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test create and purge full flow
        public void test_createAndPurge_fullFlow() {
            // Test full flow of create and purge
            SuggestCreator.Options options = new SuggestCreator.Options();
            assertNotNull(options);
        }
    
        // Test system property setting
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

            assertNotNull(queryRescorer.evaluate(nestedParams));
    
            // Test without nested parameters
            Map<String, Object> flatParams = new HashMap<>();
            flatParams.put("flat", "value");
            assertNull(queryRescorer.evaluate(flatParams));
        }
    
        public void test_evaluate_withLargeParams() {
            queryRescorer = new QueryRescorer() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top