Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 178 for sqlite (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go

    //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)
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    
    func Stat(path string, stat *Stat_t) (err error) {
    	// Use fstatat, because Android's seccomp policy blocks stat.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	case *md.HTMLBlock:
    	case *md.Empty:
    	case *md.ThematicBreak:
    	default:
    		panic(fmt.Sprintf("unknown block type %T", b))
    	}
    }
    
    // addSymbolLinksInlines looks for symbol links in the slice of inline markdown
    // elements. It returns a new slice of inline elements with links added.
    func addSymbolLinksInlines(ins []md.Inline, defaultPackage string) []md.Inline {
    	ins = splitAtBrackets(ins)
    	var res []md.Inline
    	for i := 0; i < len(ins); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/net/http/routing_tree.go

    		if c.pattern.lastSegment().s != "" {
    			matches = append(matches, pathUnescape(path[1:])) // remove initial slash
    		}
    		return c, matches
    	}
    	return nil, nil
    }
    
    // firstSegment splits path into its first segment, and the rest.
    // The path must begin with "/".
    // If path consists of only a slash, firstSegment returns ("/", "").
    // The segment is returned unescaped, if possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go

    //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)
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    
    func Stat(path string, stat *Stat_t) (err error) {
    	return Fstatat(AT_FDCWD, path, stat, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. src/go/build/constraint/expr.go

    					return nil, errComplex
    				}
    			}
    			ands = append(ands, lits)
    		}
    		split = append(split, ands)
    	}
    
    	// If all the ORs have length 1 (no actual OR'ing going on),
    	// push the top-level ANDs to the bottom level, so that we get
    	// one // +build line instead of many.
    	maxOr := 0
    	for _, or := range split {
    		if maxOr < len(or) {
    			maxOr = len(or)
    		}
    	}
    	if maxOr == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux_arm64.go

    //sys	Setfsgid(gid int) (err error)
    //sys	Setfsuid(uid int) (err error)
    //sysnb	setrlimit1(resource int, rlim *Rlimit) (err error) = SYS_SETRLIMIT
    //sys	Shutdown(fd int, how int) (err error)
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    
    func Stat(path string, stat *Stat_t) (err error) {
    	return fstatat(_AT_FDCWD, path, stat, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/trace/main.go

    func (t *parsedTrace) endTime() trace.Time {
    	return t.events[len(t.events)-1].Time()
    }
    
    // splitTrace splits the trace into a number of ranges, each resulting in approx 100 MiB of
    // json output (the trace viewer can hardly handle more).
    func splitTrace(parsed *parsedTrace) ([]traceviewer.Range, error) {
    	// TODO(mknyszek): Split traces by generation by doing a quick first pass over the
    	// trace to identify all the generation boundaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_386.go

    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64
    //sys	setfsgid(gid int) (prev int, err error) = SYS_SETFSGID32
    //sys	setfsuid(uid int) (prev int, err error) = SYS_SETFSUID32
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
    //sys	Stat(path string, stat *Stat_t) (err error) = SYS_STAT64
    //sys	SyncFileRange(fd int, off int64, n int64, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go

    //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	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    //sys	Stat(path string, stat *Stat_t) (err error)
    //sys	Statfs(path string, buf *Statfs_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go

    //sys	setfsgid(gid int) (prev int, err error)
    //sys	setfsuid(uid int) (prev int, err error)
    //sys	Shutdown(fd int, how int) (err error)
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
    //sys	Stat(path string, stat *Stat_t) (err error) = SYS_STAT64
    //sys	Truncate(path string, length int64) (err error) = SYS_TRUNCATE64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top