Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 204 for invalidAt (0.1 seconds)

  1. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         * The config type is identified by the first character of the config ID.
         *
         * @param configId the configuration ID to analyze
         * @return the ConfigType (WEB, FILE, or DATA) or null if the config ID is invalid or doesn't match any known type
         */
        public ConfigType getConfigType(final String configId) {
            if (configId == null || configId.length() < 2) {
                return null;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.5K bytes
    - Click Count (1)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java

            if (value != null) {
                try {
                    boost = Float.parseFloat(value);
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Invalid boost value, keeping current: value={}, error={}", value, e.getMessage());
                    }
                }
            }
        }
    
        @Override
        public String getConfigId() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionAggregation.java

            aggregationAggregationBuilderList.add(builder);
        }
    
        // ===================================================================================
        //                                                                 Invalid Aggregation
        //                                                                       =============
        protected void checkEsInvalidAggregation(String name, Object value) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 12.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java

                }
            } catch (Exception e) {
                // Test setup exception is acceptable
                assertNotNull(e);
            }
        }
    
        // Test main method with invalid arguments
        @Test
        public void test_main_invalidArguments() {
            // Cannot directly test main as it calls System.exit
            // Test argument parsing instead
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            } catch (ConfigPropertyNotFoundException e) {
                assertTrue(e.getMessage().contains("non.existent.boolean"));
            }
        }
    
        // Test getTimeAdjustTimeMillisAsLong with invalid number format
        public void xtest_getTimeAdjustTimeMillisAsLong_invalidFormat() {
            FessEnv.SimpleImpl customEnv = new FessEnv.SimpleImpl() {
                protected Properties prepareProperties() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java

            if (value != null) {
                try {
                    boost = Float.parseFloat(value);
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Invalid boost value, keeping current: value={}, error={}", value, e.getMessage());
                    }
                }
            }
        }
    
        @Override
        public String getConfigId() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 02:07:40 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

            float boost = 1.5f;
    
            QueryBuilder result = fuzzyQueryCommand.execute(context, fuzzyQuery, boost);
            assertNotNull(result);
    
        }
    
        // Test execute method with invalid query type
        @Test
        public void test_execute_withInvalidQuery() {
            QueryContext context = new QueryContext("test", false);
            Query invalidQuery = new TermQuery(new Term("field", "value"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            if (url.startsWith("https:") && canonicalUrl.startsWith("http:")) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Invalid Canonical Url(https->http): {} -> {}", url, canonicalUrl);
                }
                return false;
            }
            return true;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

                        try {
                            directory = new File(resource.toURI());
                        } catch (final URISyntaxException e) {
                            logger.warn("Invalid URI for resource: url={}", resource, e);
                            continue;
                        }
                        if (directory.exists() && directory.isDirectory()) {
    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)
  10. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                            }
                            return;
                        }
                    } catch (final NumberFormatException e) {
                        logger.warn("Invalid role info: failed to parse timestamp from '{}'", rolesStr, e);
                        return;
                    }
                }
                if (values.length > 1) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15.1K bytes
    - Click Count (0)
Back to Top