Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for sqlite (0.29 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	132: "no buffer space available",
    	133: "transport endpoint is already connected",
    	134: "transport endpoint is not connected",
    	143: "cannot send after socket shutdown",
    	144: "too many references: cannot splice",
    	145: "connection timed out",
    	146: "connection refused",
    	147: "host is down",
    	148: "no route to host",
    	149: "operation already in progress",
    	150: "operation now in progress",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    // whether the slot was found in the table already (TRUE => found).
    func (sc *slotCanonicalizer) lookup(ls LocalSlot) (SlKeyIdx, bool) {
    	split := noSlot
    	if ls.SplitOf != nil {
    		split, _ = sc.lookup(*ls.SplitOf)
    	}
    	k := slotKey{
    		name: ls.N, offset: ls.Off, width: ls.Type.Size(),
    		splitOf: split, splitOffset: ls.SplitOffset,
    	}
    	if idx, ok := sc.slmap[k]; ok {
    		return idx, true
    	}
    	rv := SlKeyIdx(len(sc.slkeys))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    			canRace = false
    		}
    	}
    
    	if n, limited := base.NetLimit(); limited && n > 0 {
    		// Split the network limit into chunks, so that each parallel script can
    		// have one chunk. We want to run as many parallel scripts as possible, but
    		// also want to give each script as high a limit as possible.
    		// We arbitrarily split by sqrt(n) to try to balance those two goals.
    		netTestLimit := int(math.Sqrt(float64(n)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/strings/strings_test.go

    	for _, tt := range splittests {
    		a := SplitN(tt.s, tt.sep, tt.n)
    		if !eq(a, tt.a) {
    			t.Errorf("Split(%q, %q, %d) = %v; want %v", tt.s, tt.sep, tt.n, a, tt.a)
    			continue
    		}
    		if tt.n == 0 {
    			continue
    		}
    		s := Join(a, tt.sep)
    		if s != tt.s {
    			t.Errorf("Join(Split(%q, %q, %d), %q) = %q", tt.s, tt.sep, tt.n, tt.sep, s)
    		}
    		if tt.n < 0 {
    			b := Split(tt.s, tt.sep)
    			if !reflect.DeepEqual(a, b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		v.SetLen(len(b))
    		if len(b) > 0 {
    			v.Base = &b[0]
    		} else {
    			v.Base = (*byte)(unsafe.Pointer(&_zero))
    		}
    		vecs = append(vecs, v)
    	}
    	return vecs
    }
    
    // offs2lohi splits offs into its low and high order bits.
    func offs2lohi(offs int64) (lo, hi uintptr) {
    	const longBits = SizeofLong * 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	mp := acquirem()
    	span.ensureSwept()
    
    	offset := uintptr(p) - span.base()
    	kind := s.kind
    
    	lock(&span.speciallock)
    
    	// Find splice point, check for existing record.
    	iter, exists := span.specialFindSplicePoint(offset, kind)
    	if !exists {
    		// Splice in record, fill in offset.
    		s.offset = uint16(offset)
    		s.next = *iter
    		*iter = s
    		spanHasSpecials(span)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	// JoinPath joins the sequence of path fragments into a single path.
    	// If JoinPath is nil, Import uses filepath.Join.
    	JoinPath func(elem ...string) string
    
    	// SplitPathList splits the path list into a slice of individual paths.
    	// If SplitPathList is nil, Import uses filepath.SplitList.
    	SplitPathList func(list string) []string
    
    	// IsAbsPath reports whether path is an absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    	// gc error messages continue onto additional lines with leading tabs.
    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		if strings.HasSuffix(line, "\r") { // remove '\r', output by compiler on windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    	if err != nil {
    		p.Ctxt.Diag("%v: constant %d too large", p, ins.imm, err)
    		return nil
    	}
    	if high == 0 {
    		return []*instruction{ins}
    	}
    
    	// Split into two additions, if possible.
    	// Do not split SP-writing instructions, as otherwise the recorded SP delta may be wrong.
    	if p.Spadj == 0 && ins.as == AADDI && ins.imm >= -(1<<12) && ins.imm < 1<<12-1 {
    		imm0 := ins.imm / 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top