Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 94 for gopark (0.19 sec)

  1. src/cmd/go/internal/modindex/read.go

    	}
    
    	// goroot and gopath
    	inTestdata := func(sub string) bool {
    		return strings.Contains(sub, "/testdata/") || strings.HasSuffix(sub, "/testdata") || str.HasPathPrefix(sub, "testdata")
    	}
    	var pkga string
    	if !inTestdata(rp.dir) {
    		// In build.go, p.Root should only be set in the non-local-import case, or in
    		// GOROOT or GOPATH. Since module mode only calls Import with path set to "."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_arm.s

    	MOVW	$0xffff0fa0, R11
    	CALL	(R11)
    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT,$0
    	MOVB	·goarm(SB), R11
    	CMP	$7, R11
    	BLT	2(PC)
    	JMP	·armPublicationBarrier(SB)
    	JMP	kernelPublicationBarrier<>(SB) // extra layer so this function is leaf and no SP adjustment on GOARM=7
    
    TEXT runtime·osyield(SB),NOSPLIT,$0
    	MOVW	$SYS_sched_yield, R7
    	SWI	$0
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. src/runtime/os_netbsd.go

    //go:noescape
    func getcontext(ctxt unsafe.Pointer)
    
    //go:noescape
    func lwp_create(ctxt unsafe.Pointer, flags uintptr, lwpid unsafe.Pointer) int32
    
    //go:noescape
    func lwp_park(clockid, flags int32, ts *timespec, unpark int32, hint, unparkhint unsafe.Pointer) int32
    
    //go:noescape
    func lwp_unpark(lwp int32, hint unsafe.Pointer) int32
    
    func lwp_self() int32
    
    func osyield()
    
    //go:nosplit
    func osyield_no_g() {
    	osyield()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    	// In module mode, we expect GOMODCACHE to exist and be a safe place for
    	// commands; in GOPATH mode, we expect that to be true of GOPATH/src.
    	dir := cfg.GOMODCACHE
    	if !cfg.ModulesEnabled {
    		dir = filepath.Join(cfg.BuildContext.GOPATH, "src")
    	}
    	os.MkdirAll(dir, 0777) // Ignore errors — if unsuccessful, the command will likely fail.
    
    	release, err := base.AcquireNet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  5. src/debug/buildinfo/buildinfo_test.go

    		outPath := filepath.Join(gopathDir, path.Base(t.Name()))
    		cmd := exec.Command(testenv.GoToolPath(t), "build", "-o="+outPath, "-buildmode="+buildmode)
    		cmd.Dir = pkgDir
    		cmd.Env = append(os.Environ(), "GO111MODULE=off", "GOPATH="+gopathDir, "GOOS="+goos, "GOARCH="+goarch)
    		stderr := &strings.Builder{}
    		cmd.Stderr = stderr
    		if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_arm.s

    	MOVM.IA.W (R13), [R4-R11]
    
    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	B	runtime·armPublicationBarrier(SB)
    
    // TODO(jsing): OpenBSD only supports GOARM=7 machines... this
    // should not be needed, however the linker still allows GOARM=5
    // on this platform.
    TEXT runtime·read_tls_fallback(SB),NOSPLIT|NOFRAME,$0
    	MOVM.WP	[R1, R2, R3, R12], (R13)
    	MOVW	$330, R12		// sys___get_tcb
    	INVOKE_SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. docs/bigdata/README.md

    ```
    spark.hadoop.fs.s3a.access.key minio
    spark.hadoop.fs.s3a.secret.key minio123
    spark.hadoop.fs.s3a.path.style.access true
    spark.hadoop.fs.s3a.block.size 512M
    spark.hadoop.fs.s3a.buffer.dir ${hadoop.tmp.dir}/s3a
    spark.hadoop.fs.s3a.committer.magic.enabled false
    spark.hadoop.fs.s3a.committer.name directory
    spark.hadoop.fs.s3a.committer.staging.abort.pending.uploads true
    spark.hadoop.fs.s3a.committer.staging.conflict-mode append
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. go.mod

    	github.com/hashicorp/go-uuid v1.0.3 // indirect
    	github.com/hashicorp/golang-lru v1.0.2 // indirect
    	github.com/jcmturner/aescts/v2 v2.0.0 // indirect
    	github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
    	github.com/jcmturner/gofork v1.7.6 // indirect
    	github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect
    	github.com/jcmturner/rpc/v2 v2.0.3 // indirect
    	github.com/jedib0t/go-pretty/v6 v6.5.9 // indirect
    	github.com/jessevdk/go-flags v1.5.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. hack/lib/util.sh

        echo "Cannot download cfssl on non-amd64 hosts and cfssl does not appear to be installed."
        echo "Please install cfssl and cfssljson and verify they are in \$PATH."
        echo "Hint: export PATH=\$PATH:\$GOPATH/bin; go install github.com/cloudflare/cfssl/cmd/...@latest"
        exit 1
      fi
    
      # Create a temp dir for cfssl if no directory was given
      local cfssldir=${1:-}
      if [[ -z "${cfssldir}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/codehost.go

    // given repository type and name.
    func WorkDir(ctx context.Context, typ, name string) (dir, lockfile string, err error) {
    	if cfg.GOMODCACHE == "" {
    		return "", "", fmt.Errorf("neither GOPATH nor GOMODCACHE are set")
    	}
    
    	// We name the work directory for the SHA256 hash of the type and name.
    	// We intentionally avoid the actual name both because of possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top