Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 112 for sinulle (0.03 seconds)

  1. .teamcity/scripts/FindCommits.java

    import java.util.List;
    import java.util.Objects;
    import java.util.stream.Collectors;
    
    /**
     * TeamCity helper script that prints the list of commits in the current PR (one SHA per line).
     *
     * Usage (Java 11+ single-file source execution):
     *   java .teamcity/scripts/FindCommits.java <target_branch_name>
     *
     * Commit range logic:
     * - Uses origin/<target_branch_name> as the target
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

        }
        config = configFile("checkstyle.xml")
        val projectDirectory = layout.projectDirectory
        configDirectory = rules.elements.map {
            projectDirectory.dir(it.single().asFile.absolutePath).dir("checkstyle")
        }
    }
    
    plugins.withType<GroovyBasePlugin> {
        the<SourceSetContainer>().all {
            tasks.register<Checkstyle>(getTaskName("checkstyle", "groovy")) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:47:14 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

            "sec:controlling_dependency_caching_programmatically",
            "sec:offline-mode",
            "sec:controlling_dependency_caching_command_line",
            "sec:dynamic_versions_and_changing_modules",
            "single-version-declarations",
            "version_ordering",
            "sec:declaring_without_version",
            "rich-version-constraints",
            "dependency_management_in_gradle",
            "sec:dependency-mgmt-in-gradle"
        ));
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 21 15:38:58 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

            Set<RequestData> result = crawlerThread.getAnchorSet(null);
            assertNull(result, "getAnchorSet should return null for null input");
        }
    
        /**
         * Test getAnchorSet with single string
         */
        @Test
        public void test_getAnchorSet_withSingleString() {
            FessCrawlerThread crawlerThread = new FessCrawlerThread();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

            assertEquals("Deleted 0 thumbnail files.", result);
            assertEquals(30L * 24 * 60 * 60 * 1000L, thumbnailManager.getPurgeExpiry());
        }
    
        // Test execute with successful purge (single file deleted)
        @Test
        public void test_execute_singleFileDeleted() {
            thumbnailManager.setPurgeCallCount(1);
    
            String result = purgeThumbnailJob.execute();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java

        }
    
        @Test
        public void test_search_withSimpleQuery() {
            final String query = "singleKeyword";
            final IntentDetectionResult result = IntentDetectionResult.search(query, "single keyword search");
    
            assertEquals(ChatIntent.SEARCH, result.getIntent());
            assertEquals("singleKeyword", result.getQuery());
        }
    
        @Test
        public void test_search_withFessQuery() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/job/PythonJob.java

         * @return this PythonJob instance for method chaining
         */
        public PythonJob filename(final String filename) {
            this.filename = filename;
            return this;
        }
    
        /**
         * Adds a single command-line argument to pass to the Python script.
         *
         * @param value the argument value to add
         * @return this PythonJob instance for method chaining
         */
        public PythonJob arg(final String value) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

        }
    
        @Test
        public void test_sanitizeFilename_pathTraversalPatterns() {
            // Common path traversal attack patterns - multiple slashes are normalized to single
            assertEquals("/etc/passwd.log", AdminLogAction.sanitizeFilename("../etc/passwd.log"));
            assertEquals("/etc/passwd.log", AdminLogAction.sanitizeFilename("../../etc/passwd.log"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

                // No compression when all segments are non-zero (just remove leading zeros)
                assertEquals("2001:db8:1:2:3:4:5:6", method.invoke(null, "2001:0db8:0001:0002:0003:0004:0005:0006"));
    
                // Single zero should not be compressed
                assertEquals("2001:db8:1:0:2:3:4:5", method.invoke(null, "2001:0db8:1:0:2:3:4:5"));
            } catch (Exception e) {
                // If reflection fails, skip this test
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            try {
                JvmUtil.getJavaVersion();
                fail("Should throw NumberFormatException");
            } catch (NumberFormatException e) {
                // Expected
            }
    
            // Test with single number
            System.setProperty("java.version", "17");
            assertEquals(17, JvmUtil.getJavaVersion());
    
            // Test with modern versions
            System.setProperty("java.version", "21.0.1");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.6K bytes
    - Click Count (0)
Back to Top