- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 139 for isFile (0.07 sec)
-
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
return artifacts.map(RepositoryUtils::toArtifact); } private boolean isRegularFile(Artifact artifact) { return artifact.getFile() != null && artifact.getFile().isFile(); } private void installIntoProjectLocalRepository(Artifact artifact) { String extension = artifact.getExtension(); String classifier = artifact.getClassifier();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
responseData.setRedirectLocation(redirect); ftpClientQueue.offer(client); return; } } if (file.isFile()) { responseData.setHttpStatusCode(Constants.OK_STATUS_CODE); responseData.setCharSet(Constants.UTF_8); responseData.setLastModified(file.getTimestamp().getTime());
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/jcifs/SmbResource.java
* * @return <code>true</code> if this <code>SmbResource</code> is not a directory * @throws CIFSException */ boolean isFile () throws CIFSException; /** * Tests to see if the file this <code>SmbResource</code> represents is a directory. * * @return <code>true</code> if this <code>SmbResource</code> is a directory
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 26K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} private boolean existsPage(final String path) { final String realPath = LaServletContextUtil.getServletContext().getRealPath(path); final File file = new File(realPath); return file.isFile(); } public String createCacheContent(final Map<String, Object> doc, final String[] queries) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
configure.py
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
d.getManagementKey(), "must specify an absolute path but is " + systemPath, d); } else if (!sysFile.isFile()) { String msg = "refers to a non-existing file " + sysFile.getAbsolutePath(); systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} if ( !exists() ) return false; return ( this.attributes & ATTR_DIRECTORY ) == ATTR_DIRECTORY; } @Override public boolean isFile () throws SmbException { if ( this.fileLocator.isRootOrShare() ) { return false; } exists(); return ( this.attributes & ATTR_DIRECTORY ) == 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
/** * Tests to see if the file this <code>SmbFile</code> represents is not a directory. * * @return <code>true</code> if this <code>SmbFile</code> is not a directory */ public boolean isFile() throws SmbException { if( getUncPath0().length() == 1 ) { return false; } exists(); return ( attributes & ATTR_DIRECTORY ) == 0; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts
is ValidatePlugins -> listOf(outputFile.get().asFile) is FindBrokenInternalLinks -> listOf(reportFile.get().asFile) is DistributionTest -> listOf( gradleInstallationForTest.gradleUserHomeDir.dir("test-kit-daemon").get().asFile, gradleInstallationForTest.gradleUserHomeDir.dir("kotlin-compiler-daemon").get().asFile, gradleInstallationForTest.daemonRegistry.get().asFile ) else -> emptyList() }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 11 14:21:47 UTC 2024 - 2.1K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt
return gson.toJson(subprojects) + '\n' } private fun generateSubprojectsDirectories(): List<File> { val subprojectRoots = platformsFolder.asFile.listFiles(File::isDirectory).plus(subprojectsFolder.asFile).plus(testingFolder.asFile) return subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten() } private fun generateSubprojects(): List<GradleSubproject> {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Apr 04 07:21:38 UTC 2024 - 2.9K bytes - Viewed (0)