Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 130 for validi (0.04 seconds)

  1. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

        }
    
        /**
         * Determines if the given address string represents an IPv6 address.
         * This method validates the address using InetAddress to ensure it's a valid IPv6 address.
         *
         * @param address the IP address string to check
         * @return true if the address is a valid IPv6 address, false otherwise
         */
        public static boolean isIPv6Address(final String address) {
            if (address == null) {
                return false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/web/base/FessAdminActionTest.java

            System.setProperty("fess.webapp.path", webappDir.toString());
            System.setProperty("fess.conf.path", confDir.toString());
    
            // Path under webapp (second property) should be valid
            final File testFile = new File(webappDir.toFile(), "test.html");
            testFile.createNewFile();
    
            action.validateFilePath(testFile.getAbsolutePath());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

            // Verify response can be parsed as JSON
            final Map<String, Object> res = JsonPath.from(response).getMap("response");
            assertNotNull(res, "Response should be valid JSON");
    
            logger.info("[END] statsResponseFormatTest");
        }
    
        @Test
        void multipleStatsCallsTest() {
            logger.info("[BEGIN] multipleStatsCallsTest");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. src/main/webapp/css/bootstrap.min.css.map

    var(--bs-success);\n  border-radius: var(--bs-border-radius);\n}\n\n.was-validated :valid ~ .valid-feedback,\n.was-validated :valid ~ .valid-tooltip,\n.is-valid ~ .valid-feedback,\n.is-valid ~ .valid-tooltip {\n  display: block;\n}\n\n.was-validated .form-control:valid, .form-control.is-valid {\n  border-color: var(--bs-form-valid-border-color);\n  padding-right: calc(1.5em + 0.75rem);\n  background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 575.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

            queryFieldConfig.setSearchFields(searchFields);
        }
    
        /**
         * Test isSearchField() with Set-based lookup.
         */
        @Test
        public void test_isSearchField_withSetBasedLookup() {
            // Test valid search fields
            assertTrue(queryCommand.isSearchField("title"));
            assertTrue(queryCommand.isSearchField("content"));
            assertTrue(queryCommand.isSearchField("url"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertNotNull(option);
            assertTrue(option.startsWith("-D" + Constants.FESS_THUMBNAIL_PATH + "="));
            assertTrue(option.contains(tempDir.getAbsolutePath()));
        }
    
        // Test offer with valid generator
        @Test
        public void test_offer_withValidGenerator() {
            TestThumbnailGenerator generator = new TestThumbnailGenerator();
            generator.available = true;
            generator.target = true;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  7. src/main/webapp/js/suggestor.js

          $settingSearchForm,
          listSelectedCssInfo,
          listDeselectedCssInfo,
          boxCssInfo,
    
          suggestingSts = false,
    
          /**
           * Helper function to check if a keycode is a valid input key
           */
          isInputKey = function (keyCode) {
            return (
              (keyCode >= KEY_CODES.NUM_0 && keyCode <= KEY_CODES.NUM_9) ||
              (keyCode >= KEY_CODES.A && keyCode <= KEY_CODES.Z) ||
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withNullMessageAndValidCause() {
            // Test constructor with null message and valid cause
            Throwable cause = new RuntimeException("Runtime error");
            CommandExecutionException exception = new CommandExecutionException(null, cause);
    
            assertNotNull(exception);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  9. MIGRATION.md

      -u admin:admin
    ```
    
    ---
    
    ## Troubleshooting
    
    ### Common Migration Issues
    
    #### Issue: Import fails with "Invalid format"
    
    **Solution**:
    - Ensure NDJSON files have one valid JSON object per line
    - Check for UTF-8 encoding
    - Validate JSON syntax with `jq`:
      ```bash
      cat documents.ndjson | jq empty
      ```
    
    #### Issue: GSA XML import creates no configurations
    
    **Solution**:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

            QueryBuilder builder = queryProcessor.execute(context, prefixQuery, 1.0f);
    
            assertNotNull(builder);
            // Empty prefix should still create a valid query
            assertTrue(builder instanceof MatchPhrasePrefixQueryBuilder);
    
            MatchPhrasePrefixQueryBuilder mpqb = (MatchPhrasePrefixQueryBuilder) builder;
            assertEquals("", mpqb.value());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.3K bytes
    - Click Count (0)
Back to Top