Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 140 for groot (0.01 seconds)

  1. src/test/resources/thumbnail/test_generate_thumbnail.sh

    echo "--- Platform compatibility tests ---"
    
    echo -n "Testing: Linux root HOME check... "
    if grep -q 'x"$HOME" = "x/root"' "${GENERATE_THUMBNAIL}"; then
        echo -e "${GREEN}PASSED${NC}"
        ((TESTS_PASSED++))
    else
        echo -e "${RED}FAILED${NC}"
        ((TESTS_FAILED++))
    fi
    
    echo -n "Testing: Mac root HOME check... "
    if grep -q 'x"$HOME" = "x/var/root"' "${GENERATE_THUMBNAIL}"; then
        echo -e "${GREEN}PASSED${NC}"
    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)
  2. build-logic-settings/version-catalogs/src/main/kotlin/gradlebuild.version-catalogs.settings.gradle.kts

     * limitations under the License.
     */
    
    dependencyResolutionManagement {
        val root = if (rootProject.name.startsWith("build-logic")) {
            layout.rootDirectory.dir("..")
        } else {
            layout.rootDirectory
        }
        val basePath = root.dir("gradle").dir("dependency-management")
        versionCatalogs {
            create("libs") {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructorWithMessageAndCause() {
            final RuntimeException cause = new RuntimeException("Root cause");
            final LlmException exception = new LlmException("Error occurred", cause);
            assertEquals("Error occurred", exception.getMessage());
            assertSame(cause, exception.getCause());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 04:19:06 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/webapp/WebXmlTest.java

                return;
            }
            final Element root = webXmlDocument.getDocumentElement();
            assertEquals("web-app", root.getLocalName());
            assertEquals("6.1", root.getAttribute("version"));
        }
    
        @Test
        public void test_namespace() {
            if (webXmlDocument == null) {
                return;
            }
            final Element root = webXmlDocument.getDocumentElement();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 09:08:35 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java

        }
    
        @Test
        public void test_constructor_withServletExceptionWithCause() {
            // Create a root cause exception
            String rootCauseMessage = "Root cause error";
            Exception rootCause = new Exception(rootCauseMessage);
    
            // Create a ServletException with the root cause
            String servletErrorMessage = "Servlet error with cause";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Property;
    
    import javax.inject.Inject;
    
    /**
     * Common root for all Gradle documentation configuration.
     */
    public abstract class GradleDocumentationExtension {
        private final ReleaseNotes releaseNotes;
        private final UserManual userManual;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Aug 20 14:11:17 GMT 2024
    - 4.4K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    		</Logger>
    		<Logger name="fess.log.crawler.stats" additivity="false" level="info">
    			<AppenderRef ref="StatsFile" />
    		</Logger>
    		<Root level="${root.log.level}">
    			<AppenderRef ref="AppFile" />
    			<AppenderRef ref="LogNotification" />
    		</Root>
    	</Loggers>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  8. pom.xml

    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/env/fess</src>
    							<dst>/etc/default/fess</dst>
    							<mapper>
    								<type>perm</type>
    								<user>root</user>
    								<group>root</group>
    							</mapper>
    						</data>
    						<!-- Add init.d files -->
    						<data>
    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/init.d/fess</src>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java

        }
    
        @Test
        public void test_constructor_withNestedCause() {
            // Test constructor with nested exception causes
            Exception rootCause = new IllegalStateException("Root cause");
            Exception middleCause = new RuntimeException("Middle cause", rootCause);
            String message = "Top level dictionary error";
            DictionaryException exception = new DictionaryException(message, middleCause);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/storage/StorageClientFactory.java

            if (StringUtil.isBlank(endpoint)) {
                // Default to S3 if no endpoint (uses AWS default)
                return StorageType.S3;
            }
    
            final String lowerEndpoint = endpoint.toLowerCase(Locale.ROOT);
    
            // GCS patterns
            if (lowerEndpoint.contains("storage.googleapis.com") || lowerEndpoint.contains(".storage.cloud.google.com")) {
                return StorageType.GCS;
            }
    
            // S3 patterns
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 4.2K bytes
    - Click Count (0)
Back to Top