Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for upsert (0.23 sec)

  1. src/bootstrap.bash

    forceflag=""
    if [ "$1" = "-force" ]; then
    	forceflag=-force
    	shift
    fi
    
    targ="../../go-${GOOS}-${GOARCH}-bootstrap"
    if [ -e $targ ]; then
    	echo "$targ already exists; remove before continuing"
    	exit 2
    fi
    
    unset GOROOT
    src=$(cd .. && pwd)
    echo "#### Copying to $targ"
    cp -Rp "$src" "$targ"
    cd "$targ"
    echo
    echo "#### Cleaning $targ"
    chmod -R +w .
    rm -f .gitignore
    if [ -e .git ]; then
    	git clean -f -d
    fi
    echo
    Shell Script
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jan 20 17:52:26 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  2. api/go1.5.txt

    pkg go/types, method (*Scope) Contains(token.Pos) bool
    pkg go/types, method (*Scope) End() token.Pos
    pkg go/types, method (*Scope) Innermost(token.Pos) *Scope
    pkg go/types, method (*Scope) Insert(Object) Object
    pkg go/types, method (*Scope) Len() int
    pkg go/types, method (*Scope) Lookup(string) Object
    pkg go/types, method (*Scope) LookupParent(string, token.Pos) (*Scope, Object)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    The cgo tool is enabled by default for native builds on systems where
    it is expected to work. It is disabled by default when cross-compiling
    as well as when the CC environment variable is unset and the default
    C compiler (typically gcc or clang) cannot be found on the system PATH.
    You can override the default by setting the CGO_ENABLED
    environment variable when running the go tool: set it to 1 to enable
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    those are treated as two code points.  For simplicity, this document
    will use the unqualified term <i>character</i> to refer to a Unicode code point
    in the source text.
    </p>
    <p>
    Each code point is distinct; for instance, upper and lower case letters
    are different characters.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may disallow the NUL character (U+0000) in the source text.
    </p>
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. api/go1.6.txt

    pkg debug/elf, const R_MIPS_HIGHER R_MIPS
    pkg debug/elf, const R_MIPS_HIGHEST = 29
    pkg debug/elf, const R_MIPS_HIGHEST R_MIPS
    pkg debug/elf, const R_MIPS_INSERT_A = 25
    pkg debug/elf, const R_MIPS_INSERT_A R_MIPS
    pkg debug/elf, const R_MIPS_INSERT_B = 26
    pkg debug/elf, const R_MIPS_INSERT_B R_MIPS
    pkg debug/elf, const R_MIPS_JALR = 37
    pkg debug/elf, const R_MIPS_JALR R_MIPS
    pkg debug/elf, const R_MIPS_LITERAL = 8
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    		// don't want to resolve them to their base types.
    		if *godefs {
    			break
    		}
    	}
    	p.prepareNames(f)
    	if p.rewriteCalls(f) {
    		// Add `import _cgo_unsafe "unsafe"` after the package statement.
    		f.Edit.Insert(f.offset(f.AST.Name.End()), "; import _cgo_unsafe \"unsafe\"")
    	}
    	p.rewriteRef(f)
    }
    
    // loadDefines coerces gcc into spitting out the #defines in use
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_USER6 = 153
    pkg syscall (freebsd-arm64), const DLT_USER6 ideal-int
    pkg syscall (freebsd-arm64), const DLT_USER7 = 154
    pkg syscall (freebsd-arm64), const DLT_USER7 ideal-int
    pkg syscall (freebsd-arm64), const DLT_USER8 = 155
    pkg syscall (freebsd-arm64), const DLT_USER8 ideal-int
    pkg syscall (freebsd-arm64), const DLT_USER9 = 156
    pkg syscall (freebsd-arm64), const DLT_USER9 ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg os/user, func Current() (*User, error)
    pkg os/user, func Lookup(string) (*User, error)
    pkg os/user, func LookupId(string) (*User, error)
    pkg os/user, method (UnknownUserError) Error() string
    pkg os/user, method (UnknownUserIdError) Error() string
    pkg os/user, type UnknownUserError string
    pkg os/user, type UnknownUserIdError int
    pkg os/user, type User struct
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. misc/ios/detect.go

    		_, err = f.Write(out)
    		check(err)
    		check(f.Close())
    
    		cert, err := plistExtract(fname, "DeveloperCertificates:0")
    		check(err)
    		pcert, err := x509.ParseCertificate(cert)
    		check(err)
    		fmt.Printf("export GOIOS_DEV_ID=\"%s\"\n", pcert.Subject.CommonName)
    
    		appID, err := plistExtract(fname, "Entitlements:application-identifier")
    		check(err)
    		fmt.Printf("export GOIOS_APP_ID=%s\n", appID)
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 19 23:33:30 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  10. api/go1.19.txt

    pkg debug/elf, const R_LARCH_SOP_ADD R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_AND = 36 #46229
    pkg debug/elf, const R_LARCH_SOP_AND R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_ASSERT = 30 #46229
    pkg debug/elf, const R_LARCH_SOP_ASSERT R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_IF_ELSE = 37 #46229
    pkg debug/elf, const R_LARCH_SOP_IF_ELSE R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_NOT = 31 #46229
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
Back to top