Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for sqlite (0.09 sec)

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

    	{56, "EISCONN", "socket is already connected"},
    	{57, "ENOTCONN", "socket is not connected"},
    	{58, "ESHUTDOWN", "can't send after socket shutdown"},
    	{59, "ETOOMANYREFS", "too many references: can't splice"},
    	{60, "ETIMEDOUT", "operation timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    	{62, "ELOOP", "too many levels of symbolic links"},
    	{63, "ENAMETOOLONG", "file name too long"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{134, "ENOTCONN", "transport endpoint is not connected"},
    	{143, "ESHUTDOWN", "cannot send after socket shutdown"},
    	{144, "ETOOMANYREFS", "too many references: cannot splice"},
    	{145, "ETIMEDOUT", "connection timed out"},
    	{146, "ECONNREFUSED", "connection refused"},
    	{147, "EHOSTDOWN", "host is down"},
    	{148, "EHOSTUNREACH", "no route to host"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	{56, "EISCONN", "socket is already connected"},
    	{57, "ENOTCONN", "socket is not connected"},
    	{58, "ESHUTDOWN", "can't send after socket shutdown"},
    	{59, "ETOOMANYREFS", "too many references: can't splice"},
    	{60, "ETIMEDOUT", "operation timed out"},
    	{61, "ECONNREFUSED", "connection refused"},
    	{62, "ELOOP", "too many levels of symbolic links"},
    	{63, "ENAMETOOLONG", "file name too long"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/link/internal/ld/xcoff.go

    			continue // Only export non-static symbols
    		}
    
    		// Retrieve the name of the initial symbol
    		// exported by cgo.
    		// The corresponding Go symbol is:
    		// _cgoexp_hashcode_symname.
    		name := strings.SplitN(extname, "_", 4)[3]
    
    		buf.Write([]byte(name + "\n"))
    	}
    
    	err := os.WriteFile(fname, buf.Bytes(), 0666)
    	if err != nil {
    		Errorf(nil, "WriteFile %s failed: %v", fname, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/go/parser/parser.go

    	}
    
    	spec.Comment = p.expectSemi()
    
    	return spec
    }
    
    // extractName splits the expression x into (name, expr) if syntactically
    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top