Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,337 for PATH (0.08 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            // Test with no file path mappings
            assertEquals("test/path", emptyGenerator.expandPath("test/path"));
            assertNull(emptyGenerator.expandPath(null));
    
            // Test with file path mappings
            emptyGenerator.filePathMap.put("${path}/test", "/usr/bin/test");
            assertEquals("/usr/bin/test", emptyGenerator.expandPath("${path}/test"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java

        }
    
        @Override
        public String findTool(String toolName) {
            Path toRet = findTool(toolName, Paths.get(getJavaHome()).normalize());
            if (toRet != null) {
                return toRet.toAbsolutePath().toString();
            }
            return null;
        }
    
        private static Path findTool(String toolName, Path installDir) {
            Path bin = installDir.resolve("bin"); // NOI18N
            if (Files.isDirectory(bin)) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Options.java

        /**
         * Returns the path to an alternate user settings file.
         *
         * @return an {@link Optional} containing the file path, or empty if not set
         */
        @Nonnull
        Optional<String> altUserSettings();
    
        /**
         * Returns the path to an alternate project settings file.
         *
         * @return an {@link Optional} containing the file path, or empty if not set
         */
        @Nonnull
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jan 13 16:14:35 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

        public String unalignFromBaseDirectory(String path, File basedir) {
            if (basedir == null) {
                return path;
            }
    
            if (path == null) {
                return null;
            }
    
            path = path.trim();
    
            String base = basedir.getAbsolutePath();
            if (path.startsWith(base)) {
                path = chopLeadingFileSeparator(path.substring(base.length()));
            }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. cmd/kms-handlers_test.go

    		name   string
    		method string
    		path   string
    		query  map[string]string
    	}{
    		{
    			name:   "GET status",
    			method: http.MethodGet,
    			path:   kmsStatusPath,
    		},
    		{
    			name:   "GET metrics",
    			method: http.MethodGet,
    			path:   kmsMetricsPath,
    		},
    		{
    			name:   "GET apis",
    			method: http.MethodGet,
    			path:   kmsAPIsPath,
    		},
    		{
    			name:   "GET version",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/DfsResolver.java

        /**
         * Resolve the location of a DFS path
         *
         * @param domain the domain for the DFS referral
         * @param root the DFS root share
         * @param path the DFS path to resolve
         * @param tf the CIFS context containing configuration and credentials
         * @return the final referral for the given DFS path
         * @throws CIFSException if an error occurs during resolution
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. docs/id/docs/tutorial/first-steps.md

    ### Langkah 3: Buat *operasi path*
    
    #### Path
    
    "Path" atau jalur di sini merujuk ke bagian URL terakhir dimulai dari `/` pertama.
    
    Sehingga, URL seperti:
    
    ```
    https://example.com/items/foo
    ```
    
    ...path-nya adalah:
    
    ```
    /items/foo
    ```
    
    /// info
    
    "path" juga biasa disebut "endpoint" atau "route".
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Dec 12 21:46:36 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/WebApiRequest.java

         */
        public WebApiRequest(final HttpServletRequest request, final String servletPath) {
            super(request);
            this.servletPath = servletPath;
        }
    
        /**
         * Gets the servlet path for this request.
         * Returns the custom servlet path unless the query string contains SAStruts.method.
         *
         * @return The servlet path
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/SmbResourceLocatorTest.java

            @Override
            public String getName() {
                if (path == null || path.isEmpty() || path.equals("/")) {
                    return host + "/"; // mimic the JVM behaviour for root or server
                }
                if (path.endsWith("/")) {
                    return path.substring(0, path.length()); // keep trailing slash
                }
                String[] parts = path.split("/");
                return parts[parts.length - 1];
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java

        /**
         * The path to the resource.
         */
        private final String path;
    
        /**
         * Creates a {@link ResourceNotFoundRuntimeException}.
         *
         * @param path the resource path
         */
        public ResourceNotFoundRuntimeException(final String path) {
            super("ECL0055", asArray(path));
            this.path = path;
        }
    
        /**
         * Returns the path.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top