Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,891 for FILE (0.05 sec)

  1. src/internal/xcoff/file.go

    	Library string
    }
    
    // FileHeader holds information about an XCOFF file header.
    type FileHeader struct {
    	TargetMachine uint16
    }
    
    // A File represents an open XCOFF file.
    type File struct {
    	FileHeader
    	Sections     []*Section
    	Symbols      []*Symbol
    	StringTable  []byte
    	LibraryPaths []string
    
    	closer io.Closer
    }
    
    // Open opens the named file using os.Open and prepares it for use as an XCOFF binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/os/file.go

    	O_WRONLY int = syscall.O_WRONLY // open the file write-only.
    	O_RDWR   int = syscall.O_RDWR   // open the file read-write.
    	// The remaining values may be or'ed in to control behavior.
    	O_APPEND int = syscall.O_APPEND // append data to the file when writing.
    	O_CREATE int = syscall.O_CREAT  // create a new file if none exists.
    	O_EXCL   int = syscall.O_EXCL   // used with O_CREATE, file must not exist.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    }
    
    // rotate checks to see whether the file f needs to be rotated,
    // meaning to start a new counter file with a different date in the name.
    // rotate is also used to open the file initially, meaning f.current can be nil.
    // In general rotate should be called just once for each file.
    // rotate will arrange a timer to call itself again when necessary.
    func (f *file) rotate() {
    	expire, cleanup := f.rotate1()
    	cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    /*
     * Internal ELF representation
     */
    
    // A FileHeader represents an ELF file header.
    type FileHeader struct {
    	Class      Class
    	Data       Data
    	Version    Version
    	OSABI      OSABI
    	ABIVersion uint8
    	ByteOrder  binary.ByteOrder
    	Type       Type
    	Machine    Machine
    	Entry      uint64
    }
    
    // A File represents an open ELF file.
    type File struct {
    	FileHeader
    	Sections  []*Section
    	Progs     []*Prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/debug/macho/file.go

    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFile(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	ff.closer = f
    	return ff, nil
    }
    
    // Close closes the [File].
    // If the [File] was created using [NewFile] directly instead of [Open],
    // Close has no effect.
    func (f *File) Close() error {
    	var err error
    	if f.closer != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/debug/pe/file.go

    	closer io.Closer
    }
    
    // Open opens the named file using [os.Open] and prepares it for use as a PE binary.
    func Open(name string) (*File, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFile(f)
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	ff.closer = f
    	return ff, nil
    }
    
    // Close closes the [File].
    // If the [File] was created using [NewFile] directly instead of [Open],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/file-collection-vs-file-tree.graffle

    file-collection-vs-file-tree.graffle ApplicationVersionco.omnigroup.OmniGraffle7.MacAppStore185.4ColorProfilesdataAA/gAAAAUbWVhcwAABAwAAA+wEBAQcBDQETARkBHwElA+gIDAgwCFAIdAiYCLwI4A+wD+QQGBBMEIAQtBDsESARVB+BIwEmgSoBLYExATTBOEE+BQ0FHAUrBToFSQVYBWcF/B9IH5Qf4CAsIHwgyCEYI+EL+QwSDCoMQwxcDHUMjgynD/DpsOtg7SDu4PCQ8lD0EP/PD+wQCRAmEEMQYRB+EJsQuRDXEPURExExEU8R+UUBhQnFEkUahSLFK0Uzh/cYGxhAGGUYihivGNUY+hkgGUUZaxmRGbcZ3RoEG+HukfEx8+H2kflB+/H+ogFSBBIGwgmCDEIPAhHC/HL/4wNTBsMKQw2zESMUoxgj/E0KzRlNJ402DUTNU01hz+ID...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                        }
                        regularFile.text = "regular file"
                        new File(singleFileInDir, "file.txt").text = "single file in dir"
                        new File(manyFilesInDir, "file-1.txt").text = "file #1 in dir"
                        new File(manyFilesInDir, "file-2.txt").text = "file #2 in dir"
                    }
                }
    
                task producer(type: ProducerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/plugins/DistributionPluginIntegrationTest.groovy

            file('build/distributions/TestProject-foo.tar').assertIsFile()
            file('build/distributions/custom-bar.tar').assertIsFile()
            file('build/distributions/custom-baz.tar').assertIsFile()
    
            file('build/install/TestProject-foo').assertIsDir()
            file('build/install/custom-bar').assertIsDir()
            file('build/install/custom-baz').assertIsDir()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            outputDir.file('index-staging.html').assertDoesNotExist()
            outputDir.file('index.html.tmp').assertDoesNotExist()
            outputDir.file('home.html').isFile()
            outputDir.file('logo.png').isFile()
            outputDir.file('products/collaboration.jpg').isFile()
            outputDir.file('WEB-INF/classes/Hello.class').isFile()
            outputDir.file('WEB-INF/lib/commons-io-2.6.jar').isFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top