- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 86 for Filesystem (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
*/ enum RequestType { /** * The request is for building an initial model from a POM file in a project on the filesystem. */ BUILD_PROJECT, /** * The request is for rebuilding the effective POM in a project on the filesystem. */ BUILD_EFFECTIVE, /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 20:54:22 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
*/ public static final int SMB2_GLOBAL_CAP_ENCRYPTION = 0x40; /** * File information class */ public static final byte SMB2_0_INFO_FILE = 1; /** * Filesystem information class */ public static final byte SMB2_0_INFO_FILESYSTEM = 2; /** * Security information class */ public static final byte SMB2_0_INFO_SECURITY = 3; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt
@Timeout(30) open class TrailersTest { private val fileSystem = FakeFileSystem() @JvmField @RegisterExtension val platform = PlatformRule() @RegisterExtension val clientTestRule = OkHttpClientTestRule() @StartStop private val server = MockWebServer() private var client = clientTestRule .newClientBuilder() .cache(Cache(fileSystem, "/cache/".toPath(), Long.MAX_VALUE)) .build()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 18K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java
* Maven POM files and resolving related project POMs. * * <p>The interface provides two types of sources:</p> * <ul> * <li>Build sources: Used for POM files of projects being built by Maven in the filesystem. * These sources support resolving related POMs using the {@link ModelLocator}.</li> * <li>Resolved sources: Used for artifacts that have been resolved by Maven from repositories
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.ds; import java.io.File; import java.io.InputStream; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Path; import java.util.HashSet; import java.util.LinkedHashMap; import java.util.List; import java.util.Locale; import java.util.Map;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
} @Test fun testPublicPathConstructor() { val events: MutableList<String> = ArrayList() fileSystem.createDirectories(cache.directoryPath) fileSystem.createDirectories(cache.directoryPath) val loggingFileSystem: FileSystem = object : ForwardingFileSystem(fileSystem) { override fun onPathParameter( path: Path, functionName: String,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 113.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
*/ public final void setFileInfoClass(final byte fileInfoClass) { setInfoType(Smb2Constants.SMB2_0_INFO_FILE); this.fileInfoClass = fileInfoClass; } /** * Sets the filesystem information class for the query * * @param fileInfoClass * the fileInfoClass to set */ public final void setFilesystemInfoClass(final byte fileInfoClass) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
case FileSystemInformation.FS_SIZE_INFO -> new FileFsSizeInformation(); default -> throw new SMBProtocolDecodingException("Unknown filesystem info class " + infoClass); }; } /** * @param infoClass * @return * @throws SMBProtocolDecodingException */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.8K bytes - Viewed (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
directoryPermissions = () -> { throw new IOException("unrecognized FileSystem type " + FileSystems.getDefault()); }; } } private static PermissionSupplier userPermissions() { try { UserPrincipal user = FileSystems.getDefault() .getUserPrincipalLookupService() .lookupPrincipalByName(getUsername());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
* behavior that the {@link File} API does not already account for. For example, on NTFS it will * report {@code "txt"} as the extension for the filename {@code "foo.exe:.txt"} even though NTFS * will drop the {@code ":.txt"} part of the name when the file is actually created on the * filesystem due to NTFS's <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0)