Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 19 of 19 for genitive (0.04 seconds)

  1. src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java

            assertFalse(goAction.isFileSystemPath("C:\\Windows\\System32"));
        }
    
        @Test
        public void test_isFileSystemPath_case_sensitivity() {
            // URLs are case-sensitive for protocol
            assertFalse(goAction.isFileSystemPath("FILE://path"));
            assertFalse(goAction.isFileSystemPath("S3://bucket/path"));
            assertFalse(goAction.isFileSystemPath("GCS://bucket/path"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  2. .teamcity/performance-tests-ci.json

            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.assemble for non-abi change with file system sensitive archives",
        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "coverage" : {
            "per_commit" : [ "linux", "windows", "macOs" ]
          }
        }, {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 21:56:33 GMT 2026
    - 32.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

            }
            return OptionalEntity.of(list.get(0));
        }
    
        /**
         * Stores (inserts or updates) a data configuration.
         *
         * <p>This method encrypts sensitive handler parameters before storing
         * and immediately refreshes the index to ensure the change is visible.
         * If the configuration already exists (based on ID), it will be updated;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            assertNull(doc.get("content_ja")); // content is not in langFields
        }
    
        @Test
        public void test_getSupportedLanguage_caseInsensitive() {
            // Test that method is case sensitive (as per implementation)
            assertNull(languageHelper.getSupportedLanguage("JA"));
            assertNull(languageHelper.getSupportedLanguage("EN"));
            assertEquals("ja", languageHelper.getSupportedLanguage("ja"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        private static final Logger logger = LogManager.getLogger(GsaConfigParser.class);
    
        /** Prefix for regular expression patterns. */
        public static final String REGEXP = "regexp:";
    
        /** Prefix for case-sensitive regular expression patterns. */
        public static final String REGEXP_CASE = "regexpCase:";
    
        /** Prefix for case-insensitive regular expression patterns. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  6. .teamcity/performance-test-durations.json

        "linux" : 326,
        "windows" : 726,
        "macOs" : 209
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIncrementalExecutionPerformanceTest.assemble for non-abi change with file system sensitive archives",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 518,
        "windows" : 1007,
        "macOs" : 275
      }, {
        "testProject" : "largeMonolithicJavaProject",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                assertEquals("Extension for " + mimeType + " should be empty", "", generator.getExtensionFromMimeType(mimeType));
            }
        }
    
        // Test case sensitivity (current implementation is case-sensitive)
        @Test
        public void test_getExtensionFromMimeType_caseSensitive() {
            assertEquals("", generator.getExtensionFromMimeType("IMAGE/GIF"));
            assertEquals("", generator.getExtensionFromMimeType("Image/Gif"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
  8. src/main/resources/fess_config.properties

    app.digest.algorithm=sha256
    # Regex pattern for properties to encrypt.
    app.encrypt.property.pattern=.*password|.*key|.*token|.*secret
    # Regex pattern for sensitive values to mask in debug logs (case-insensitive match against property/env keys).
    app.log.sensitive.property.pattern=.*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.*
    
    # Extension names for application customization.
    app.extension.names=
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getAppEncryptPropertyPattern();
    
        /**
         * Get the value for the key 'app.log.sensitive.property.pattern'. <br>
         * The value is, e.g. .*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.* <br>
         * comment: Regex pattern for sensitive values to mask in debug logs (case-insensitive match against property/env keys).
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top