- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 154 for getPaths (0.12 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java
assert myResource != null : "The resource is this class itself loaded by its own classloader and must exist"; String myClasspathEntry = myResource.getPath(); myClasspathEntry = myClasspathEntry.substring(0, myClasspathEntry.length() - (myResourcePath.length() + 2)); if (myClasspathEntry.startsWith("file:")) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
samples/static-server/src/main/java/okhttp3/sample/SampleServer.java
server.useHttps(sslContext.getSocketFactory(), false); server.setDispatcher(this); server.start(port); } @Override public MockResponse dispatch(RecordedRequest request) { String path = request.getPath(); try { if (!path.startsWith("/") || path.contains("..")) throw new FileNotFoundException(); File file = new File(root + path); return file.isDirectory() ? directoryToResponse(path, file)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Jan 02 02:50:44 UTC 2019 - 4.7K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/endpoint.go
result = append(result, addr.Address+":"+strconv.Itoa(int(addr.GetPortValue()))) continue } if addr := addr.GetPipe(); addr != nil { result = append(result, addr.GetPath()) continue } if internal := addr.GetEnvoyInternalAddress(); internal != nil { switch an := internal.GetAddressNameSpecifier().(type) { case *core.EnvoyInternalAddress_ServerListenerName:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 09:57:29 UTC 2024 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileLocationTest.java
return this.pathConsumed; } /** * {@inheritDoc} * * @see jcifs.DfsReferralData#getPath() */ @Override public String getPath () { return this.path; } /** * {@inheritDoc} * * @see jcifs.DfsReferralData#getExpiration() */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
for (final File jarFile : jarFiles) { try (FileSystem fs = FileSystems.newFileSystem(jarFile.toPath(), ClassLoader.getSystemClassLoader())) { final Path xmlPath = fs.getPath("fess_ds++.xml"); try (InputStream is = Files.newInputStream(xmlPath)) { final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
CIFSException last = null; RequestWithPath rpath = ( request instanceof RequestWithPath ) ? (RequestWithPath) request : null; String savedPath = rpath != null ? rpath.getPath() : null; String savedFullPath = rpath != null ? rpath.getFullUNCPath() : null; String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 31K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
} catch (final MalformedURLException e) { throw new CrawlingAccessException("Invalid URL: " + s, e); } final String path = uri.getPath(); if (path == null) { parent = "/"; name = null; } else { final String[] values = path.replaceAll("/+", "/").replaceFirst("/$", "").split("/");
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() { return path; } @Override public synchronized OptionalEntity<ProtwordsItem> get(final long id) { if (protwordsItemList == null) { reload(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
super(id, path, timestamp); } @Override public String getType() { return STOPWORDS; } @Override public String getPath() { return path; } @Override public synchronized OptionalEntity<StopwordsItem> get(final long id) { if (stopwordsItemList == null) { reload(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
mockwebserver/api/mockwebserver3.api
public fun <init> (Ljava/lang/String;Ljava/lang/String;Lokhttp3/Headers;Lmockwebserver3/MockResponse;)V public final fun getHeaders ()Lokhttp3/Headers; public final fun getMethod ()Ljava/lang/String; public final fun getPath ()Ljava/lang/String; public final fun getResponse ()Lmockwebserver3/MockResponse; } public class mockwebserver3/QueueDispatcher : mockwebserver3/Dispatcher {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 03 21:59:45 UTC 2023 - 12.7K bytes - Viewed (0)