- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 36 for getParent (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
client.changeWorkingDirectory(ftpInfo.getParent()); validateRequest(client); if (ftpInfo.getName() == null) { // root directory final Set<RequestData> requestDataSet = new HashSet<>(); if (includeContent) { try { final FTPFile[] files = client.listFiles(ftpInfo.getParent(), FTPFileFilters.NON_NULL);
Registered: 2025-05-25 03:50 - Last Modified: 2025-05-24 06:10 - 30.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
} @SuppressWarnings ( "resource" ) @Override protected final FileEntry open () throws CIFSException { SmbResourceLocator loc = this.getParent().getLocator(); String unc = loc.getUNCPath(); String p = loc.getURL().getPath(); if ( p.lastIndexOf('/') != ( p.length() - 1 ) ) {
Registered: 2025-05-25 00:10 - Last Modified: 2021-11-13 15:13 - 5.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
public ModelSource resolve(@Nonnull ModelLocator locator, @Nonnull String relative) { String norm = relative.replace('\\', File.separatorChar).replace('/', File.separatorChar); Path path = getPath().getParent().resolve(norm); Path relatedPom = locator.locateExistingPom(path); if (relatedPom != null) { return new BuildPathSource(relatedPom); } return null;
Registered: 2025-05-24 08:56 - Last Modified: 2025-02-07 00:45 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassLoaderIterator.java
@Override public ClassLoader next() { if (!hasNext()) { throw new NoSuchElementException(); } final ClassLoader result = classLoader; classLoader = classLoader.getParent(); return result; } @Override public void remove() { throw new ClUnsupportedOperationException("remove"); }
Registered: 2025-05-24 08:58 - Last Modified: 2025-05-10 01:32 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
* @return the wildcard */ public final String getWildcard () { return this.wildcard; } /** * @return the parent */ public final SmbResource getParent () { return this.parent; } private final boolean filter ( FileEntry fe ) { String name = fe.getName(); if ( name.length() < 3 ) { int h = name.hashCode();
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 5.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java
} private WeakReference<ClassLoader> useFrqInSeparateLoader() throws Exception { ClassLoader myLoader = getClass().getClassLoader(); URLClassLoader sepLoader = new URLClassLoader(getClassPathUrls(), myLoader.getParent()); // sepLoader is the loader that we will use to load the parallel FinalizableReferenceQueue (FRQ) // and friends, and that we will eventually expect to see garbage-collected. The assumption
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
Registered: 2025-05-26 08:04 - Last Modified: 2025-03-15 06:53 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/FileEntryAdapterIterator.java
Registered: 2025-05-25 00:10 - Last Modified: 2018-07-01 13:12 - 3.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* as a {@code Project} must refer to a buildable project. * * @return an optional containing the parent project * @see Model#getParent() */ @Nonnull Optional<Project> getParent(); /** * Returns all profiles defined in this project. * <p> * This method returns only the profiles defined directly in the current project's POM
Registered: 2025-05-24 08:56 - Last Modified: 2025-02-27 11:07 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java
* @throws CIFSException */ @SuppressWarnings ( "resource" ) @Override protected FileEntry open () throws CIFSException { SmbTreeHandleImpl th = getTreeHandle(); String uncPath = getParent().getLocator().getUNCPath(); Smb2CreateRequest create = new Smb2CreateRequest(th.getConfig(), uncPath); create.setCreateOptions(Smb2CreateRequest.FILE_DIRECTORY_FILE);
Registered: 2025-05-25 00:10 - Last Modified: 2020-12-20 16:15 - 5.7K bytes - Viewed (0)