Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 501 for noff (0.15 sec)

  1. src/syscall/syscall_linux_ppc64x.go

    	cmsg.Len = uint64(length)
    }
    
    //sys	syncFileRange2(fd int, flags int, off int64, n int64) (err error) = SYS_SYNC_FILE_RANGE2
    
    func SyncFileRange(fd int, off int64, n int64, flags int) error {
    	// The sync_file_range and sync_file_range2 syscalls differ only in the
    	// order of their arguments.
    	return syncFileRange2(fd, flags, off, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    func (sect *peSection) checkOffset(off int64) {
    	if off != int64(sect.pointerToRawData) {
    		Errorf(nil, "%s.PointerToRawData = %#x, want %#x", sect.name, uint64(int64(sect.pointerToRawData)), uint64(off))
    		errorexit()
    	}
    }
    
    // checkSegment verifies COFF section sect matches address
    // and file offset provided in segment seg.
    func (sect *peSection) checkSegment(seg *sym.Segment) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. src/main/webapp/css/fonts/fa-brands-400.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 87K bytes
    - Viewed (0)
  4. src/main/webapp/css/fonts/fa-regular-400.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 16.4K bytes
    - Viewed (0)
  5. src/main/webapp/css/admin/fonts/fa-solid-900.woff

    Shinsuke Sugaya <******@****.***> 1576358545 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 96.7K bytes
    - Viewed (0)
  6. src/internal/coverage/decodemeta/decode.go

    	if _, err := d.r.Seek(funcOffsetLocation, io.SeekStart); err != nil {
    		return err
    	}
    	foff := d.r.ReadUint32()
    
    	// Check assumptions
    	if foff < uint32(funcOffsetLocation) || foff > d.hdr.Length {
    		return fmt.Errorf("malformed func offset %d", foff)
    	}
    
    	// Seek to the correct location to read the function.
    	floc := int64(foff)
    	if _, err := d.r.Seek(floc, io.SeekStart); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/debug/pe/section.go

    // license that can be found in the LICENSE file.
    
    package pe
    
    import (
    	"encoding/binary"
    	"fmt"
    	"internal/saferio"
    	"io"
    	"strconv"
    )
    
    // SectionHeader32 represents real PE COFF section header.
    type SectionHeader32 struct {
    	Name                 [8]uint8
    	VirtualSize          uint32
    	VirtualAddress       uint32
    	SizeOfRawData        uint32
    	PointerToRawData     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go

    //sys	Seek(fd int, offset int64, whence int) (off int64, err error) = SYS_LSEEK
    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)
    //sys	setfsgid(gid int) (prev int, err error)
    //sys	setfsuid(uid int) (prev int, err error)
    //sys	Shutdown(fd int, how int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/internal/syscall/unix/copy_file_range_linux.go

    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error) {
    	r1, _, errno := syscall.Syscall6(copyFileRangeTrap,
    		uintptr(rfd),
    		uintptr(unsafe.Pointer(roff)),
    		uintptr(wfd),
    		uintptr(unsafe.Pointer(woff)),
    		uintptr(len),
    		uintptr(flags),
    	)
    	n = int(r1)
    	if errno != 0 {
    		err = errno
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 28 00:59:36 UTC 2020
    - 556 bytes
    - Viewed (0)
  10. licenses/github.com/cpuguy83/go-md2man/v2/LICENSE.md

    The MIT License (MIT)
    
    Copyright (c) 2014 Brian Goff
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 23 04:14:15 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top