- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 144 for FileSystem (0.41 seconds)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/RequestBody.kt
fun Path.asRequestBody( fileSystem: FileSystem, contentType: MediaType? = null, ): RequestBody = object : RequestBody() { override fun contentType() = contentType override fun contentLength() = fileSystem.metadata(this@asRequestBody).size ?: -1 override fun writeTo(sink: BufferedSink) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Oct 07 14:16:29 GMT 2025 - 9.3K bytes - Click Count (0) -
docs/distributed/DESIGN.md
USAGE: minio server [FLAGS] DIR1 [DIR2..] minio server [FLAGS] DIR{1...64} minio server [FLAGS] DIR{1...64} DIR{65...128} DIR: DIR points to a directory on a filesystem. When you want to combine multiple drives into a single large system, pass one directory per filesystem separated by space. You may also use a '...' convention to abbreviate the directory arguments. Remote directories in a distributed setup are encoded as HTTP(s) URIs. ```
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Feb 26 09:25:50 GMT 2025 - 8K bytes - Click Count (2) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/ExtractGradleApiInfoTask.java
import org.gradle.api.tasks.OutputFile; import org.gradle.api.tasks.TaskAction; import org.gradle.internal.UncheckedException; import java.io.File; import java.io.IOException; import java.net.URI; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.StandardCopyOption; import java.util.Collections; /**
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue May 27 09:07:14 GMT 2025 - 3.4K bytes - Click Count (0) -
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, /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 16.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/IndexExportJob.java
import org.codelibs.fess.util.ComponentUtil; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Job for exporting indexed search documents to the filesystem. * Each document is exported as a single file with URL structure mapped to directory structure. */ public class IndexExportJob { private static final Logger logger = LogManager.getLogger(IndexExportJob.class);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java
Predicate<Artifact> predArtifactId = a -> artifactId.matches(createPathProxy(a.getArtifactId())); return predGroupId.and(predArtifactId); } /** * In order to reuse the glob matcher from the filesystem, we need * to create Path instances. Those are only used with the toString method. * This hack works because the only system-dependent thing is the path
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java
*/ package org.apache.maven.toolchain; import java.io.File; import org.apache.maven.toolchain.model.PersistedToolchains; /** * Builds the toolchains model from a previously configured filesystem path to the toolchains file. * <strong>Note:</strong> This is an internal component whose interface can change without prior notice. * * @deprecated use {@link org.apache.maven.toolchain.building.ToolchainsBuilder} instead
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.8K bytes - Click Count (0) -
.github/workflows/build-reusable.yml
timeout-minutes: 300 steps: #- name: Enable Long Paths # if: contains(inputs.runner, 'windows-x86') # run: Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1 # shell: powershell - name: Checkout uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # ratchet:actions/checkout@v4 env:Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 2.2K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java
* * @since 4.0.0 */ public static final String PROCESSOR_TYPE = "maven.processor.type"; /** * The (expected) path to the artifact on the local filesystem. An artifact which has this property set is assumed * to be not present in any regular repository and likewise has no artifact descriptor. Artifact resolution willCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Mar 28 11:22:05 GMT 2026 - 2.9K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
assertFalse(locator("smb://server/share/").isIPC()); } @Test @DisplayName("Type detection covers filesystem/share/IPC/workgroup/server") void testGetType() throws Exception { // Filesystem when there is a path beyond share assertEquals(SmbConstants.TYPE_FILESYSTEM, locator("smb://server/share/path").getType()); // Named pipe for IPC$ root
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.6K bytes - Click Count (0)