Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 178 for sqlite (0.16 sec)

  1. src/strconv/atoc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strconv
    
    import "internal/stringslite"
    
    const fnParseComplex = "ParseComplex"
    
    // convErr splits an error returned by parseFloatPrefix
    // into a syntax or range error for ParseComplex.
    func convErr(err error, s string) (syntax, range_ error) {
    	if x, ok := err.(*NumError); ok {
    		x.Func = fnParseComplex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go

    //sys	setfsgid(gid int) (prev int, err error)
    //sys	setfsuid(uid int) (prev 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 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: Thu Oct 19 23:33:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go

    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)
    //sys	setfsgid(gid int) (prev int, err error)
    //sys	setfsuid(uid int) (prev 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, stat *Stat_t) (err error)
    //sys	Statfs(path string, buf *Statfs_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/mime/encodedword.go

    			currentLen = runeLen
    		}
    	}
    	io.WriteString(w, s[last:])
    	w.Close()
    }
    
    // qEncode encodes s using Q encoding and writes it to buf. It splits the
    // encoded-words when necessary.
    func (e WordEncoder) qEncode(buf *strings.Builder, charset, s string) {
    	// We only split encoded-words when the charset is UTF-8.
    	if !isUTF8(charset) {
    		writeQString(buf, s)
    		return
    	}
    
    	var currentLen, runeLen int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux_mipsx.go

    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) = SYS_SENDFILE64
    //sys	Setfsgid(gid int) (err error)
    //sys	Setfsuid(uid 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 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
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go

    //sys	sendfile(outfd int, infd int, offset *int64, count int) (written int, err error)
    //sys	setfsgid(gid int) (prev int, err error)
    //sys	setfsuid(uid int) (prev 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)
    
    func Stat(path string, stat *Stat_t) (err error) {
    	return Fstatat(AT_FDCWD, path, stat, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/code.go

    		// https://spec.commonmark.org/0.30/#info-string
    		// “The first word of the info string is typically used to
    		// specify the language of the code sample...”
    		// No definition of what “first word” means though.
    		// The Dingus splits on isUnicodeSpace, but Goldmark only uses space.
    		lang := b.Info
    		for i, c := range lang {
    			if isUnicodeSpace(c) {
    				lang = lang[:i]
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux_s390x.go

    //sys	Setfsgid(gid int) (err error)
    //sys	Setfsuid(uid int) (err error)
    //sysnb	setrlimit(resource int, rlim *Rlimit) (err error) = SYS_SETRLIMIT
    //sys	Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags int) (n int64, err error)
    //sys	Stat(path string, stat *Stat_t) (err error)
    //sys	Statfs(path string, buf *Statfs_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm.go

    //sys	setfsgid(gid int) (prev int, err error) = SYS_SETFSGID32
    //sys	setfsuid(uid int) (prev 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	Stat(path string, stat *Stat_t) (err error) = SYS_STAT64
    //sys	Ustat(dev int, ubuf *Ustat_t) (err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/trace/jsontrace_test.go

    	}
    }
    
    // parseGoroutineName returns the goroutine name from the event's name field.
    // E.g. if e.Name is "G42 main.cpu10", this returns "main.cpu10".
    func parseGoroutineName(e *format.Event) string {
    	parts := strings.SplitN(e.Name, " ", 2)
    	if len(parts) != 2 || !strings.HasPrefix(parts[0], "G") {
    		return ""
    	}
    	return parts[1]
    }
    
    // filterBlocked returns an event filter that returns true if the event's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top