Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 301 - 310 of 468 for result1 (0.07 seconds)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

                    if (shouldFix) {
                        when (val result = calculateBuildFileMutation(path, actualComputed.keys, info.buildFile)) {
                            is BuildFileMutation.Success -> mutations.add(info.buildFile to result.buildFileText)
                            is BuildFileMutation.Failure -> failures.add(result.message)
                        }
                    } else {
    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)
  2. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            systemHelper.filterPathEncoding = "UTF-8";
    
            String result = systemHelper.encodeUrlFilter("test{}|\\");
            assertEquals("test{}|\\", result);
    
            result = systemHelper.encodeUrlFilter("test^path");
            assertEquals("test^path", result);
    
            result = systemHelper.encodeUrlFilter("test space");
            assertEquals("test+space", result);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final ObjectMapper objectMapper = new YAMLMapper();
            try {
                @SuppressWarnings("unchecked")
                final List<Map<?, ?>> result = objectMapper.readValue(content, List.class);
                if (result != null) {
                    return result.stream()
                            .map(o -> new Artifact((String) o.get("name"), (String) o.get("version"), (String) o.get("url")))
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

            assertSame(invertibleCryptographer, first);
        }
    
        @Test
        public void test_providePrimaryInvertibleCryptographer_consistency() {
            // Test multiple calls return consistent results
            for (int i = 0; i < 10; i++) {
                InvertibleCryptographer cryptographer = securityResourceProvider.providePrimaryInvertibleCryptographer();
                assertNotNull(cryptographer);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

                    }
                }
            }
    
            return abbreviateSite(url);
        }
    
        /**
         * Puts data into the result data map, handling value appending if configured.
         * If data appending is enabled and the key already exists, values are combined into arrays.
         *
         * @param dataMap the data map to modify
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 11 09:47:03 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/searchResults.jsp

    				</la:link>
    			</div>
    		</c:if>
    	</div>
    </div>
    </c:if>
    <div id="result" class="row">
    	<input type="hidden" id="queryId" value="${f:h(queryId)}" /> <input
    		type="hidden" id="rt" value="${f:h(requestedTime)}" />
    	<ol class="list-unstyled col-md-8">
    		<c:forEach var="doc" varStatus="s" items="${documentItems}">
    			<li id="result${s.index}">
    				<h3 class="title text-truncate">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

                testFilesCleanupService.addTaskReports(path, genericHtmlReports())
            }
        }
    }
    
    // e.g. build/test-results/embeddedIntegTest/trace.json
    fun Test.traceJson(): List<FileLocationProvider> = listOf(project.layout.buildDirectory.file("test-results/$name/trace.json"))
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

         * @param user The user who triggered the execution.
         * @param result The execution result (e.g., "success" or "failure:ExceptionType").
         */
        public void scriptExecution(final String scriptType, final String script, final String source, final String user, final String result) {
            if (!ComponentUtil.getFessConfig().isScriptAuditLogEnabled()) {
                return;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 11:45:43 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

        @Test
        public void test_toString() {
            GsaConfigParser parser = new GsaConfigParser();
            String result = parser.toString();
            assertTrue(result.contains("GsaConfigParser"));
            assertTrue(result.contains("labelList"));
            assertTrue(result.contains("webConfig"));
            assertTrue(result.contains("fileConfig"));
        }
    
        @Test
        public void test_getSAXHandlerMethods() throws SAXException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  10. src/test/resources/thumbnail/test_generate_thumbnail.sh

        # Run the command
        "${cmd[@]}" >/dev/null 2>&1
        local result=$?
    
        if [[ "${result}" -eq 0 ]] && [[ -f "${output_file}" ]] && [[ -s "${output_file}" ]]; then
            echo -e "${GREEN}PASSED${NC}"
            ((TESTS_PASSED++))
            rm -f "${output_file}"
            return 0
        else
            echo -e "${RED}FAILED${NC} (exit: ${result}, file exists: $([[ -f "${output_file}" ]] && echo "yes" || echo "no"))"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
Back to Top