Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 100 for correcte (0.15 seconds)

  1. src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java

            // Test that application/xhtml+xml is correctly matched
            Pattern pattern = Pattern.compile(WEB_FILE_RULE_PATTERN);
            assertTrue(pattern.matcher("application/xhtml+xml").matches());
        }
    
        @Test
        public void test_webFileRulePattern_rdfXml() {
            // Test that application/rdf+xml is correctly matched
            Pattern pattern = Pattern.compile(WEB_FILE_RULE_PATTERN);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckContributorsInReleaseNotes.kt

                    You can run `GITHUB_TOKEN=<YourGitHubToken> ./gradlew docs:updateContributorsInReleaseNotes --milestone <milestone>` to update the release notes with correct contributors automatically.
                    """.trimIndent()
                )
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jun 28 08:29:24 GMT 2024
    - 1.9K bytes
    - Click Count (0)
  3. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                buildScanTags = listOf("Check"),
                subprojects = JsonBasedGradleSubprojectProvider(File("../.teamcity/subprojects.json")),
            )
    
        @Test
        fun `create correct PerformanceTest build type for Linux`() {
            val performanceTest =
                PerformanceTest(
                    buildModel,
                    Stage(
                        StageName.PULL_REQUEST_FEEDBACK,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

            assertEquals("Multiple deserializations should produce identical results", deserialized1, deserialized2);
        }
    
        /**
         * Test that ThreadLocal Kryo instances work correctly
         * This verifies that the ThreadLocal implementation doesn't cause issues
         */
        @Test
        public void test_threadLocalKryo() {
            // Perform multiple serializations to ensure ThreadLocal works
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  5. dbflute_fess/_readme.txt

    resources located to the "playsql" directory.
    
    manage.bat(sh) => 25 (outside-sql-test):
    A execution command of OutsideSqlTest task
    which executes outside-SQL files and you can check
    whether the SQLs have correct formats.
    
    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Click Count (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

     * as part of their computed target runtimes.
     *
     * This task verifies that the computed target runtimes for each project properly reflect
     * the required target runtimes of all other projects. Optionally, it can write the correct
     * target runtimes back to the build files.
     *
     * @see [gradlebuild.identity.extension.GradleModuleExtension.requiredRuntimes]
     * @see [gradlebuild.identity.extension.GradleModuleExtension.computedRuntimes]
     */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  7. src/packaging/deb/packaging.properties

    # Properties used to build to the DEB package
    #
    
    # Environment file
    packaging.env.file=/etc/default/fess
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=deb
    
    # Custom header for package scripts
    packaging.scripts.header=#!/bin/sh${line.separator}set -e
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 401 bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

    import com.google.common.io.BaseEncoding;
    
    public class FacetResponseTest extends UnitFessTestCase {
    
        @Test
        public void test_base64_encoding_decoding() {
            // Test that base64 encoding and decoding works correctly
            String originalString = "test field with spaces";
            String encoded = BaseEncoding.base64().encode(originalString.getBytes(StandardCharsets.UTF_8));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  9. src/packaging/common/packaging.properties

    packaging.os.max.open.files=65535
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    packaging.os.max.map.count=262144
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=tar.gz
    
    # Custom header for package scripts
    packaging.scripts.header=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

        }
    
        @Test
        public void test_classStructure() {
            // Test that the class exists and has the expected structure
            assertEquals("CustomSizeValidator should be in correct package", "org.codelibs.fess.validation.CustomSizeValidator",
                    CustomSizeValidator.class.getName());
    
            // Test that it implements ConstraintValidator
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.4K bytes
    - Click Count (0)
Back to Top