Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 528 for _root (0.04 sec)

  1. src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml

    		</RollingFile>
    	</Appenders>
    
    	<Loggers>
    		<Logger name="org.codelibs.fess" additivity="false" level="${log.level}">
    			<AppenderRef ref="AppFile" />
    		</Logger>
    		<Root level="${root.log.level}">
    			<AppenderRef ref="AppFile" />
    		</Root>
    	</Loggers>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/root/DefaultRootLocator.java

                    for (int i = 0; i < parser.getAttributeCount(); i++) {
                        if ("root".equals(parser.getAttributeLocalName(i))) {
                            return Boolean.parseBoolean(parser.getAttributeValue(i));
                        }
                    }
                }
            } catch (IOException | XMLStreamException e) {
                // The root locator can be used very early during the setup of Maven,
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java

            this.treeRoot = root;
        }
        // ----------------------------------------------------------------------------
        public MetadataTreeNode getTree() {
            return treeRoot;
        }
        // ----------------------------------------------------------------------------
        public void setTree(MetadataTreeNode root) {
            this.treeRoot = root;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java

            }
            if (logger.isDebugEnabled()) {
                logger.debug("Loaded {}", name);
            }
            scriptEngineMap.put(name.toLowerCase(Locale.ROOT), scriptEngine);
            scriptEngineMap.put(scriptEngine.getClass().getSimpleName().toLowerCase(Locale.ROOT), scriptEngine);
        }
    
        public ScriptEngine getScriptEngine(final String name) {
            if (name == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. internal/config/errors.go

    		`Root user name (access key) and root password (secret key) are expected to be specified via environment variables MINIO_ROOT_USER and MINIO_ROOT_PASSWORD respectively`,
    	)
    
    	ErrMissingEnvCredentialRootPassword = newErrFn(
    		"Missing credential environment variable, \""+EnvRootPassword+"\"",
    		"Environment variable \""+EnvRootPassword+"\" is missing",
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 10 16:57:01 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			<AppenderRef ref="AppFile" />
    		</Logger>
    		<Logger name="fess.log.crawler.stats" additivity="false" level="info">
    			<AppenderRef ref="StatsFile" />
    		</Logger>
    		<Root level="${root.log.level}">
    			<AppenderRef ref="AppFile" />
    		</Root>
    	</Loggers>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

                                "Failed to read documentation for expression root: " + root, e);
                    } catch (XmlPullParserException e) {
                        throw new ExpressionDocumentationException(
                                "Failed to parse documentation for expression root: " + root, e);
                    }
                }
            }
    
            return expressionDocumentation;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     * chain. The chain terminates in a self-signed "root" certificate. Signing certificates in the
     * middle of the chain are called "intermediates". Organizations that offer certificate signing are
     * called certificate authorities (CAs).
     *
     * Browsers and other HTTP clients need a set of trusted root certificates to authenticate their
     * peers. Sets of root certificates are managed by either the HTTP client (like Firefox), or the
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/behind-a-proxy.md

    ### Providing the `root_path`
    
    To achieve this, you can use the command line option `--root-path` like:
    
    <div class="termy">
    
    ```console
    $ fastapi run main.py --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    If you use Hypercorn, it also has the option `--root-path`.
    
    /// note | "Technical Details"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 16:49:49 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/reflect/ClassPathTest.java

        // directory with a cycle,
        // /root
        //    /child
        //       /[grandchild -> root]
        Path root = createTempDirectory("ClassPathTest");
        try {
          createFile(root.resolve("some.txt"));
          Path child = createDirectory(root.resolve("child"));
          createSymbolicLink(child.resolve("grandchild"), root);
          assertEquals(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 22:09:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top