Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 178 for sqlite (0.1 sec)

  1. src/go/types/eval_test.go

    					str, typ := split(s[2:len(s)-2], ", ")
    					str, val := split(str, "=>")
    					testEval(t, fset, pkg, comment.Pos(), str, nil, typ, val)
    				}
    			}
    		}
    	}
    }
    
    // gotypesalias controls the use of Alias types.
    var gotypesalias = godebug.New("#gotypesalias")
    
    // split splits string s at the first occurrence of s, trimming spaces.
    func split(s, sep string) (string, string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/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: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go

    	_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	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) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int select(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t);
    int pselect(int, uintptr_t, uintptr_t, uintptr_t, uintptr_t, uintptr_t);
    int setregid(int, int);
    int setreuid(int, int);
    int shutdown(int, int);
    long long splice(int, uintptr_t, int, uintptr_t, int, int);
    int stat(uintptr_t, uintptr_t);
    int statfs(uintptr_t, uintptr_t);
    int truncate(uintptr_t, long long);
    int bind(int, uintptr_t, uintptr_t);
    int connect(int, uintptr_t, uintptr_t);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      padding-left: 2px;
      line-height: 18px;
      cursor: default;
      font-family: "Google Sans", Arial, sans-serif;
      font-size: 12pt;
      z-index: 2;
    }
    /* Box highlighting via shadows to avoid size changes */
    .hilite { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    .hilite2 { box-shadow: 0px 0px 0px 2px #000; z-index: 1; }
    /* Gap left between callers and callees */
    .separator {
      position: absolute;
      text-align: center;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go

    	_, _, e1 := Syscall(SYS_SHUTDOWN, uintptr(fd), uintptr(how), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	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 int, err error) {
    	r0, _, e1 := Syscall6(SYS_SPLICE, uintptr(rfd), uintptr(unsafe.Pointer(roff)), uintptr(wfd), uintptr(unsafe.Pointer(woff)), uintptr(len), uintptr(flags))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	{107, "ENOTCONN", "transport endpoint is not connected"},
    	{108, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{109, "ETOOMANYREFS", "too many references: cannot splice"},
    	{110, "ETIMEDOUT", "connection timed out"},
    	{111, "ECONNREFUSED", "connection refused"},
    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    //sysnb	Setregid(rgid int, egid int) (err error)
    //sysnb	Setreuid(ruid int, euid 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)
    //sys	stat(path string, statptr *Stat_t) (err error)
    //sys	Statfs(path string, buf *Statfs_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top