Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 779 for Directories (0.25 sec)

  1. cmd/os_windows.go

    // the directory itself, if the dirPath doesn't exist this function doesn't return
    // an error.
    func readDirFn(dirPath string, filter func(name string, typ os.FileMode) error) error {
    	// Ensure we don't pick up files as directories.
    	globAll := filepath.Clean(dirPath) + `\*`
    	globAllP, err := syscall.UTF16PtrFromString(globAll)
    	if err != nil {
    		return errInvalidArgument
    	}
    	data := &syscall.Win32finddata{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadata.java

    /**
     * The metadata of a file.
     */
    public interface FileMetadata {
        FileType getType();
    
        /**
         * Note: always 0 for directories and missing files.
         */
        long getLastModified();
    
        /**
         * Note: always 0 for directories and missing files.
         */
        long getLength();
    
        /**
         * How the file with the metadata was accessed.
         */
        AccessType getAccessType();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         */
        WorkResult copy(Action<? super CopySpec> action);
    
        /**
         * Synchronizes the contents of a destination directory with some source directories and files.
         * The given action is used to configure a {@link CopySpec}, which is then used to synchronize the files.
         *
         * @param action action Action to configure the CopySpec.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/debug/pe/file.go

    	}
    }
    
    // readDataDirectories accepts an io.ReadSeeker pointing to data directories in the PE file,
    // its size and number of data directories as seen in optional header.
    // It parses the given size of bytes and returns given number of data directories.
    func readDataDirectories(r io.ReadSeeker, sz uint16, n uint32) ([]DataDirectory, error) {
    	ddSz := uint64(binary.Size(DataDirectory{}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/use.go

    thing that go work use does.
    
    The -r flag searches recursively for modules in the argument
    directories, and the use command operates as if each of the directories
    were specified as arguments: namely, use directives will be added for
    directories that exist, and removed for directories that do not exist.
    
    
    
    See the workspaces reference at https://go.dev/ref/mod#workspaces
    for more information.
    `,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. src/internal/coverage/pods/pods.go

    // meta-data file. Pods are intended to simplify processing of
    // coverage output files in the case where we have several coverage
    // output directories containing output files derived from more
    // than one instrumented executable. In the case where the files that
    // make up a pod are spread out across multiple directories, each
    // element of the "Origins" field below will be populated with the
    // index of the originating directory for the corresponding counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/text/template/helper.go

    // parsed contents of the first file. There must be at least one file.
    // If an error occurs, parsing stops and the returned *Template is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    // For instance, ParseFiles("a/foo", "b/foo") stores "b/foo" as the template
    // named "foo", while "a/foo" is unavailable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. cmd/metrics-v3-scanner.go

    	scannerBucketScansStartedMD = NewCounterMD(scannerBucketScansStarted,
    		"Total number of bucket scans started since server start")
    	scannerDirectoriesScannedMD = NewCounterMD(scannerDirectoriesScanned,
    		"Total number of directories scanned since server start")
    	scannerObjectsScannedMD = NewCounterMD(scannerObjectsScanned,
    		"Total number of unique objects scanned since server start")
    	scannerVersionsScannedMD = NewCounterMD(scannerVersionsScanned,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolver.java

        private static class FixedIncludePath extends IncludePath {
            private final List<DirectoryContents> directories;
            private final Map<String, CachedIncludeFile> cachedLookups = new HashMap<String, CachedIncludeFile>();
    
            FixedIncludePath(List<DirectoryContents> directories) {
                this.directories = directories;
            }
    
            @Nullable
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * <p>
     * Within a process, only one thread is allowed write access to a given expanded directory. This is to avoid concurrent writes
     * to the same expanded directory.
     *
     * Multiple threads are allowed to extract into different expanded directories concurrently.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top