Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for fsck (0.03 sec)

  1. src/internal/syscall/windows/reparse_windows.go

    const (
    	FSCTL_SET_REPARSE_POINT    = 0x000900A4
    	IO_REPARSE_TAG_MOUNT_POINT = 0xA0000003
    	IO_REPARSE_TAG_DEDUP       = 0x80000013
    	IO_REPARSE_TAG_AF_UNIX     = 0x80000023
    
    	SYMLINK_FLAG_RELATIVE = 1
    )
    
    // These structures are described
    // in https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fscc/ca069dad-ed16-42aa-b057-b6b207f447cc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/DefaultPathKeyFileStoreTest.groovy

            when:
            createFile("abc", "fs/a").exists()
            createFile("lock", "fs/a.fslck").exists()
            then:
            store.get("a") == null
            store.get("a.fslock") == null
        }
    
        def "can overwrite stale files "() {
            given:
            createFile("abc", "fs/a").exists()
            createFile("lock", "fs/a.fslck").exists()
            when:
            store.add("a", { File f -> f.text = "def"} as Action<File>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 09:57:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/resource/local/DefaultPathKeyFileStore.java

            then removed after the write. This is used to detect partially written files (due to a serious crash)
            and to silently clean them.
         */
        public static final String IN_PROGRESS_MARKER_FILE_SUFFIX = ".fslck";
    
        private File baseDir;
    
        public DefaultPathKeyFileStore(ChecksumService checksumService, File baseDir) {
            this.checksumService = checksumService;
            this.baseDir = baseDir;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top