Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for filetag (0.13 sec)

  1. src/debug/gosym/pclntab.go

    		functabsize := (int(t.nfunctab)*2 + 1) * t.functabFieldSize()
    		fileoff := t.binary.Uint32(t.functab[functabsize:])
    		t.functab = t.functab[:functabsize]
    		t.filetab = t.Data[fileoff:]
    		t.nfiletab = t.binary.Uint32(t.filetab)
    		t.filetab = t.filetab[:t.nfiletab*4]
    	default:
    		panic("unreachable")
    	}
    }
    
    // go12Funcs returns a slice of Funcs derived from the Go 1.2+ pcln table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var tag_buff [8]byte
    	DecodeData(tag_buff[:], 8, tag)
    	return Setxattr(path, "filetag", tag_buff[:], XATTR_REPLACE)
    }
    
    func impl_Chtag(path string, ccsid uint64, textbit uint64) error {
    	tag := ccsid<<16 | textbit<<15
    	var tag_buff [4]byte
    	DecodeData(tag_buff[:], 4, tag)
    	return Setxattr(path, "system.filetag", tag_buff[:], XATTR_REPLACE)
    }
    
    // End of Chtag
    
    // Nanosleep
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.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.9K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            def (String fileTask, TestFile fileTaskOutput,
                 String dirTask, TestFile dirTaskOutput) = useOverlappingOutputFileAndDirectory()
    
            when:
            withBuildCache().run(fileTask, dirTask)
            then:
            fileTaskOutput.assertExists()
            dirTaskOutput.assertExists()
            // Only one task can be cached
            assertTaskOutputCached(fileTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/init.cmd

      goto findBaseDir
    )
    
    :process_file_arg
    if "%FILE_ARG%" == "" (
      goto findBaseDir
    )
    if not exist "%FILE_ARG%" (
      echo POM file "%FILE_ARG%" specified the -f/--file command-line argument does not exist >&2
      goto error
    )
    if exist "%FILE_ARG%\*" (
      set "POM_DIR=%FILE_ARG%"
    ) else (
      call :get_directory_from_file "%FILE_ARG%"
    )
    if not exist "%POM_DIR%" (
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  7. src/os/types_plan9.go

    package os
    
    import (
    	"syscall"
    	"time"
    )
    
    // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
    type fileStat struct {
    	name    string
    	size    int64
    	mode    FileMode
    	modTime time.Time
    	sys     any
    }
    
    func (fs *fileStat) Size() int64        { return fs.size }
    func (fs *fileStat) Mode() FileMode     { return fs.mode }
    func (fs *fileStat) ModTime() time.Time { return fs.modTime }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 797 bytes
    - Viewed (0)
  8. 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)
  9. src/os/types.go

    	// Mask for the type bits. For regular files, none will be set.
    	ModeType = fs.ModeType
    
    	ModePerm = fs.ModePerm // Unix permission bits, 0o777
    )
    
    func (fs *fileStat) Name() string { return fs.name }
    func (fs *fileStat) IsDir() bool  { return fs.Mode().IsDir() }
    
    // SameFile reports whether fi1 and fi2 describe the same file.
    // For example, on Unix this means that the device and inode fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializerTest.groovy

            def fileStates = [:]
            fileStates.put(fileEmpty, compilationFileState(TestHashCodes.hashCodeFrom(0x12345678), []))
    
            def fileTwo = new File("two")
            def stateTwo = compilationFileState(TestHashCodes.hashCodeFrom(0x23456789), ["ONE", "TWO"])
            fileStates.put(fileTwo, stateTwo)
            def state = compilationState(fileStates)
    
            then:
            def newState = serialized(state)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top