Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for sqlite (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_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
    - 87.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.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
    - 78.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.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
    - 83.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.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.6K bytes
    - Viewed (0)
  5. 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)
  6. 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