Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 160 for fileSystem (0.17 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		if err := unix.Mount("", "/", "", unix.MS_PRIVATE|unix.MS_REC, ""); err != nil {
    			return fmt.Errorf("failed to remount /: %v", err)
    		}
    		// In CNI, we are running the pod network namespace, but the host filesystem. Locking the host is both useless and harmful,
    		// as it opens the risk of lock contention with other node actors (such as kube-proxy), and isn't actually needed at all.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

        const XlaSerializedCacheEntry& entry) const {
      Env* env = Env::Default();
      TF_RETURN_IF_ERROR(env->RecursivelyCreateDir(persistent_cache_directory_));
    
      // The cache on the filesystem can be read while we're writing out the proto.
      // To prevent reads of partially-written files, we write the proto to a temp
      // file, then move it into place once we're done writing.  And we warn the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. 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 href="https://goo.gl/vTpJi4">Alternate Data Streams</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file('dest').assertHasDescendants(
                'one.txt',
                'three.txt'
            )
        }
    
        def "can filter a file collection using a closure hitting the filesystem"() {
            given:
            file("files/file0.txt") << ""
            file("files/dir1/file1.txt") << ""
            file("files/dir2/file2.txt") << ""
    
            and:
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinterTest.groovy

        def virtualFileSystem = TestFiles.virtualFileSystem()
        def fileSystemAccess = TestFiles.fileSystemAccess(virtualFileSystem)
        def fileCollectionSnapshotter = new DefaultFileCollectionSnapshotter(fileSystemAccess, TestFiles.fileSystem())
        def fingerprinter = new AbsolutePathFileCollectionFingerprinter(DirectorySensitivity.DEFAULT, fileCollectionSnapshotter, FileSystemLocationSnapshotHasher.DEFAULT)
        def listener = Mock(ChangeListener)
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 20 16:00:23 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/search/search.go

    func (m *Match) IsLiteral() bool {
    	return !strings.Contains(m.pattern, "...") && !m.IsMeta()
    }
    
    // IsLocal reports whether the pattern must be resolved from a specific root or
    // directory, such as a filesystem path or a single module.
    func (m *Match) IsLocal() bool {
    	return build.IsLocalImport(m.pattern) || filepath.IsAbs(m.pattern)
    }
    
    // IsMeta reports whether the pattern is a “meta-package” keyword that represents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. 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 href="https://goo.gl/vTpJi4">Alternate Data Streams</a>.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetector.java

                    }
                }
            }
            return processors;
        }
    
        /*
         * TODO once source compatibility is raised to 1.7, this should be rewritten using the java.nio.FileSystem API,
         * which can deal with jars and folders the same way instead of duplicating code.
         */
        private class ProcessorServiceLocator implements FileContentCacheFactory.Calculator<List<AnnotationProcessorDeclaration>> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    		return nil
    	}
    	return err
    }
    
    // Lstat implements a version of os.Lstat that operates on the overlay filesystem.
    func Lstat(path string) (fs.FileInfo, error) {
    	Trace("Lstat", path)
    	return overlayStat(path, os.Lstat, "lstat")
    }
    
    // Stat implements a version of os.Stat that operates on the overlay filesystem.
    func Stat(path string) (fs.FileInfo, error) {
    	Trace("Stat", path)
    	return overlayStat(path, os.Stat, "stat")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            allowFileSystemAccess(true)
            snapshot = read(nonExistingFileInDir)
            then:
            assertIsFileSnapshot(snapshot, nonExistingFileInDir)
        }
    
        def "can filter parts of the filesystem"() {
            def d = temporaryFolder.createDir("d")
            d.createFile("f1")
            def excludedFile = d.createFile("d1/f2")
            def includedFile = d.createFile("d1/f1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top