- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 1,658 for Sath (0.02 sec)
-
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) -
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) -
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) -
cmd/kms-handlers_test.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 09 14:28:39 UTC 2025 - 22.3K bytes - Viewed (0) -
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) -
guava/src/com/google/common/math/LongMath.java
* Math.sqrt(k * k) <= Math.sqrt(x) <= Math.sqrt((k + 1) * (k + 1)) * since Math.sqrt is monotonic. * (long) Math.sqrt(k * k) <= (long) Math.sqrt(x) <= (long) Math.sqrt((k + 1) * (k + 1)) * since casting to long is monotonic * k <= (long) Math.sqrt(x) <= k + 1 * since (long) Math.sqrt(k * k) == k, as checked exhaustively in
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0) -
docs/id/docs/tutorial/first-steps.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Dec 12 21:46:36 UTC 2024 - 12K bytes - Viewed (0) -
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) -
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) -
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)