Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 268 for filesystem_ (0.28 sec)

  1. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

    import org.gradle.internal.file.impl.DefaultFileMetadata;
    import org.gradle.internal.file.nio.NioFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.FallbackFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.NativePlatformBackedFileMetadataAccessor;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Measurement;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/util/filesystem/watcher.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    // FSWatcher is a callback-based filesystem watcher abstraction for fsnotify.
    type FSWatcher interface {
    	// Initializes the watcher with the given watch handlers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. samples/tlssurvey/src/main/kotlin/okhttp3/survey/Clients.kt

    import javax.net.ssl.SSLSocket
    import javax.net.ssl.SSLSocketFactory
    import okhttp3.ConnectionSpec
    import okhttp3.OkHttp
    import okhttp3.survey.types.Client
    import okhttp3.survey.types.SuiteId
    import okio.FileSystem
    import okio.Path.Companion.toPath
    import org.conscrypt.Conscrypt
    
    fun currentOkHttp(ianaSuites: IanaSuites): Client {
      return Client(
        userAgent = "OkHttp",
        version = OkHttp.VERSION,
        enabled =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 01:44:15 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

        }
    
        protected CopyActionExecuter createCopyActionExecuter() {
            Instantiator instantiator = getInstantiator();
            FileSystem fileSystem = getFileSystem();
    
            return new CopyActionExecuter(instantiator, getObjectFactory(), fileSystem, false, getDocumentationRegistry());
        }
    
        /**
         * Returns the source files for this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/os/62484.md

    The [CopyFS] function copies an [io/fs.FS] into the local filesystem....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 70 bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

        fun Path.asRequestBody(
          fileSystem: FileSystem,
          contentType: MediaType? = null,
        ): RequestBody {
          return object : RequestBody() {
            override fun contentType() = contentType
    
            override fun contentLength() = fileSystem.metadata(this@asRequestBody).size ?: -1
    
            override fun writeTo(sink: BufferedSink) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

        }
    
        /**
         * Removes the leading directory separator from the specified filesystem path (if any). For platform-independent
         * behavior, this method accepts both the forward slash and the backward slash as separator.
         *
         * @param path The filesystem path, may be <code>null</code>.
         * @return The altered filesystem path or <code>null</code> if the input path was <code>null</code>.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Cache.kt

    class Cache internal constructor(
      directory: Path,
      maxSize: Long,
      fileSystem: FileSystem,
      taskRunner: TaskRunner,
    ) : Closeable, Flushable {
      /** Create a cache of at most [maxSize] bytes in [directory]. */
      constructor(
        fileSystem: FileSystem,
        directory: Path,
        maxSize: Long,
      ) : this(
        directory,
        maxSize,
        fileSystem,
        TaskRunner.INSTANCE,
      )
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/net/http/fs.go

    type FileSystem interface {
    	Open(name string) (File, error)
    }
    
    // A File is returned by a [FileSystem]'s Open method and can be
    // served by the [FileServer] implementation.
    //
    // The methods should behave the same as those on an [*os.File].
    type File interface {
    	io.Closer
    	io.Reader
    	io.Seeker
    	Readdir(count int) ([]fs.FileInfo, error)
    	Stat() (fs.FileInfo, error)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

            return DefaultResourceHandler.Factory.from(
                fileResolver,
                taskDependencyFactory,
                fileSystem,
                temporaryFileProvider,
                textResourceAdapterFactory
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top