Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 153 for fileSystem (0.17 sec)

  1. pkg/kubelet/kubeletconfig/util/files/files_test.go

    // and skips reading back the expected files
    type test struct {
    	desc    string
    	writes  []file
    	expects []file
    	fn      func(fs utilfs.Filesystem, dir string, c *test) []error
    	err     string
    }
    
    func (c *test) write(t *testing.T, fs utilfs.Filesystem, dir string) {
    	for _, f := range c.writes {
    		if err := f.write(fs, dir); err != nil {
    			t.Fatalf("error pre-writing file: %v", err)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

                WorkerLeaseService workerLeaseService,
                BuildLayoutValidator buildLayoutValidator,
                FileSystem fileSystem,
                BuildLifecycleAwareVirtualFileSystem virtualFileSystem,
                ValueSnapshotter valueSnapshotter
            ) {
                CaseSensitivity caseSensitivity = fileSystem.isCaseSensitive() ? CASE_SENSITIVE : CASE_INSENSITIVE;
                return new SubscribableBuildActionExecutor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider.go

    	// fsIDtoInfo is a map from filesystem id to its stats. This will be used
    	// as a cache to avoid querying cAdvisor for the filesystem stats with the
    	// same filesystem id many times.
    	fsIDtoInfo := make(map[runtimeapi.FilesystemIdentifier]*cadvisorapiv2.FsInfo)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K 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. 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)
  6. 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)
  7. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

     */
    class PublicSuffixDatabase internal constructor(
      val path: Path = PUBLIC_SUFFIX_RESOURCE,
      val fileSystem: FileSystem = FileSystem.RESOURCES,
    ) {
      /** True after we've attempted to read the list for the first time. */
      private val listRead = AtomicBoolean(false)
    
      /** Used for concurrent threads reading the list for the first time. */
      private val readCompleteLatch = CountDownLatch(1)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. 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)
  9. maven-core/src/site/apt/offline-mode.apt

      This one is obvious...we only have access to the repositories using
      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
      be unavailable.
    
    
    * Implications for Mojo Execution
    
    ** Deployment mojos
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

    import org.gradle.internal.nativeintegration.filesystem.services.FallbackFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.FileSystemServices;
    import org.gradle.internal.nativeintegration.filesystem.services.NativePlatformBackedFileMetadataAccessor;
    import org.gradle.internal.nativeintegration.filesystem.services.UnavailablePosixFiles;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top