Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for FILE (0.07 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. platforms/documentation/docs/src/snippets/files/archiveNaming/kotlin/somedir/file.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  3. cmd/import-boss/testdata/transitive/neither/n1/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  4. cmd/import-boss/testdata/inverse/allowed/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 250 bytes
    - Viewed (0)
  5. cmd/import-boss/testdata/inverse/forbidden/f2/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  6. cmd/import-boss/testdata/nested-fwd/bbb/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 563 bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/simple-fwd/allowed/a1/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  8. cmd/import-boss/testdata/transitive/forbidden/f1/file.go

    Tim Hockin <******@****.***> 1705473522 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 25 bytes
    - Viewed (0)
  9. pkg/file/file.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package file
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    )
    
    // AtomicCopy copies file by reading the file then writing atomically into the target directory
    func AtomicCopy(srcFilepath, targetDir, targetFilename string) error {
    	in, err := os.Open(srcFilepath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/archiveNaming/groovy/somedir/file.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
Back to top