Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for sqlite (0.29 sec)

  1. src/syscall/syscall_linux_arm.go

    //sys	Setfsgid(gid int) (err error) = SYS_SETFSGID32
    //sys	Setfsuid(uid int) (err error) = SYS_SETFSUID32
    //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	Ustat(dev int, ubuf *Ustat_t) (err error)
    
    //sys	futimesat(dirfd int, path string, times *[2]Timeval) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    	return filepathlite.FromSlash(path)
    }
    
    // SplitList splits a list of paths joined by the OS-specific [ListSeparator],
    // usually found in PATH or GOPATH environment variables.
    // Unlike strings.Split, SplitList returns an empty slice when passed an empty
    // string.
    func SplitList(path string) []string {
    	return splitList(path)
    }
    
    // Split splits path immediately following the final [Separator],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/deadcode.go

    		if !reachable[b.ID] {
    			continue
    		}
    		if b.Kind != BlockFirst {
    			continue
    		}
    		b.removeEdge(1)
    		b.Kind = BlockPlain
    		b.Likely = BranchUnknown
    	}
    
    	// Splice out any copies introduced during dead block removal.
    	copyelim(f)
    
    	// Find live values.
    	live, order := liveValues(f, reachable)
    	defer func() { f.Cache.freeBoolSlice(live) }()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. src/internal/trace/internal/testgen/go122/trace.go

    		uintArgs = append(uintArgs, b.uintArgFor(arg, spec.Args[i+argOff]))
    	}
    	b.RawEvent(ev, nil, uintArgs...)
    }
    
    func (b *Batch) uintArgFor(arg any, argSpec string) uint64 {
    	components := strings.SplitN(argSpec, "_", 2)
    	typStr := components[0]
    	if len(components) == 2 {
    		typStr = components[1]
    	}
    	var u uint64
    	switch typStr {
    	case "value":
    		u = arg.(uint64)
    	case "stack":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/runtime/pinner.go

    	ref, exists := span.specialFindSplicePoint(offset, _KindSpecialPinCounter)
    	if !exists {
    		lock(&mheap_.speciallock)
    		rec = (*specialPinCounter)(mheap_.specialPinCounterAlloc.alloc())
    		unlock(&mheap_.speciallock)
    		// splice in record, fill in offset.
    		rec.special.offset = uint16(offset)
    		rec.special.kind = _KindSpecialPinCounter
    		rec.special.next = *ref
    		*ref = (*special)(unsafe.Pointer(rec))
    		spanHasSpecials(span)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		// likely to be larger than 2¹³⁰ - 5, but still small enough to fit the
    		// assumptions we make about h in the rest of the code.
    		//
    		// See also https://speakerdeck.com/gtank/engineering-prime-numbers?slide=23
    
    		// We split the final result at the 2¹³⁰ mark into h and cc, the carry.
    		// Note that the carry bits are effectively shifted left by 2, in other
    		// words, cc = c * 4 for the c in the reduction identity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_linux_386.go

    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64
    //sys	Setfsgid(gid int) (err error) = SYS_SETFSGID32
    //sys	Setfsuid(uid int) (err error) = SYS_SETFSUID32
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int, err error)
    //sys	SyncFileRange(fd int, off int64, n int64, flags int) (err error)
    //sys	Truncate(path string, length int64) (err error) = SYS_TRUNCATE64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/net/mockserver_test.go

    			tb.Errorf("process exited with error: %v", err)
    		}
    	}, nil
    }
    
    func init() {
    	if os.Getenv("GO_NET_TEST_TRANSFER") == "" {
    		return
    	}
    	defer os.Exit(0)
    
    	f := os.NewFile(uintptr(3), "splice-test-conn")
    	defer f.Close()
    
    	conn, err := FileConn(f)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	var chunkSize int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XPos) bool {
    	pos = pos.WithNotStmt()
    	occupant := e.contents[loc]
    	if occupant.vid == vid {
    		// Value is already in the correct place.
    		e.contents[loc] = contentRecord{vid, occupant.c, true, pos}
    		if splice != nil {
    			(*splice).Uses--
    			*splice = occupant.c
    			occupant.c.Uses++
    		}
    		// Note: if splice==nil then c will appear dead. This is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error) {
    	r0, er := C.splice(C.int(rfd), C.uintptr_t(uintptr(unsafe.Pointer(roff))), C.int(wfd), C.uintptr_t(uintptr(unsafe.Pointer(woff))), C.int(len), C.int(flags))
    	n = int64(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
Back to top