Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for fileMap (0.12 sec)

  1. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt.debug

    files: "fake/user/code/file_A.py"
    files: "fake/user/code/file_B.py"
    files: "fake/user/code/file_C.py"
    files: "fake/user/code/file_D.py"
    files: "fake/user/code/file_E.py"
    files: "fake/user/code/file_F.py"
    files: "fake/user/code/file_G.py"
    files: "fake/user/code/file_H.py"
    files: "fake/user/code/file_I.py"
    files: "fake/user/code/file_J.py"
    files: "fake/user/code/file_K.py"
    files: "fake/user/code/file_L.py"
    files: "fake/user/code/file_M.py"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            expect:
            def fileVar = factory.newFileProperty()
            def fileProvider = fileVar.asFile
            !fileVar.present
            fileVar.getOrNull() == null
            !fileProvider.present
            fileProvider.getOrNull() == null
    
            fileVar.set(otherFile)
            fileVar.present
            fileVar.get().getAsFile() == otherFile
            fileProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/outbuf_windows.go

    	// Windows DOC links:
    	//
    	// https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-flushviewoffile
    	// https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-flushfilebuffers
    	err = syscall.FlushFileBuffers(syscall.Handle(out.f.Fd()))
    	if err != nil {
    		Exitf("FlushFileBuffers failed: %v", err)
    	}
    	err = syscall.UnmapViewOfFile(uintptr(unsafe.Pointer(&out.buf[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 01:59:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. internal/lock/lock_windows.go

    	var lockType uint32 = lockFileFailImmediately | lockFileExclusiveLock
    	if flag == syscall.O_RDONLY {
    		// https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-lockfileex
    		//lint:ignore SA4016 Reasons
    		lockType = lockFileFailImmediately // Set this to enable shared lock and fail immediately.
    	}
    	return lockedOpenFile(path, flag, perm, lockType)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java

          throws Exception {
        File fileA = newFile("file-a");
        File dir1 = newDir("dir-1");
        newFile("dir-1/file-b");
        newFile("dir-1/dir-2");
    
        assertThat(Iterables.limit(Files.fileTraverser().breadthFirst(rootDir), 3))
            .containsExactly(rootDir, fileA, dir1);
      }
    
      public void testFileTraverser_multipleDirectoryLayers_traversalReturnsAll() throws Exception {
        File fileA = newFile("file-a");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 20:17:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. internal/mountinfo/mountinfo_windows.go

    		// Recognize "fixed", "removable", "remote" and "ramdisk" drives as proper drives
    		// which can be treated as an actual mount-point, rest can be ignored.
    		// https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-getdrivetypew
    		mountPointCache.Store(path, true)
    		return true
    	}
    	mountPointCache.Store(path, false)
    	return false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DependencyHandlerApiResolveIntegrationTest.groovy

                dependencies {
                    a gradleApi()
                    b gradleTestKit()
                    c localGroovy()
                }
                task showArtifacts {
                    def filesA = configurations.a
                    def idsA = configurations.a.incoming.artifacts.resolvedArtifacts.map { it.id }
                    def filesB = configurations.b
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 06:59:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/internal/pkgpath/pkgpath.go

    	// between packages whose paths are different but mangle to
    	// the same string. More recent versions use a new mangler
    	// that avoids these collisions.
    	const filepat = "*_gccgo_manglechck.go"
    	f, err := os.CreateTemp(tmpdir, filepat)
    	if err != nil {
    		return nil, err
    	}
    	gofilename := f.Name()
    	f.Close()
    	defer os.Remove(gofilename)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pcln.go

    	// Write filetab.
    	writeFiletab := func(ctxt *Link, s loader.Sym) {
    		sb := ctxt.loader.MakeSymbolUpdater(s)
    
    		// Write the strings.
    		for filename, loc := range fileOffsets {
    			sb.AddStringAt(int64(loc), expandFile(filename))
    		}
    	}
    	state.nfiles = uint32(len(fileOffsets))
    	state.filetab = state.addGeneratedSym(ctxt, "runtime.filetab", fileSize, writeFiletab)
    
    	return cuOffsets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. src/os/stat_windows.go

    	if err == windows.ERROR_INVALID_PARAMETER {
    		// Console handles, like "\\.\con", require generic read access. See
    		// https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-createfilew#consoles.
    		// We haven't set it previously because it is normally not required
    		// to read attributes and some files may not allow it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top