Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for gopark (0.29 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    }
    
    func (c *ctxt5) chipzero5(e float64) int {
    	// We use GOARM.Version=7 and !GOARM.SoftFloat to gate the use of VFPv3 vmov (imm) instructions.
    	if buildcfg.GOARM.Version < 7 || buildcfg.GOARM.SoftFloat || math.Float64bits(e) != 0 {
    		return -1
    	}
    	return 0
    }
    
    func (c *ctxt5) chipfloat5(e float64) int {
    	// We use GOARM.Version=7 and !GOARM.SoftFloat to gate the use of VFPv3 vmov (imm) instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    		if p2.Op == OpAddr || p2.Op == OpLocalAddr || p2.Op == OpSP {
    			return true
    		}
    		return (p2.Op == OpArg || p2.Op == OpArgIntReg) && p1.Args[0].Op == OpSP
    	case OpArg, OpArgIntReg:
    		if p2.Op == OpSP || p2.Op == OpLocalAddr {
    			return true
    		}
    	case OpSP:
    		return p2.Op == OpAddr || p2.Op == OpLocalAddr || p2.Op == OpArg || p2.Op == OpArgIntReg || p2.Op == OpSP
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		}
    		c.disableCache = true
    		return false
    	}
    
    	if a.Package.Root == "" {
    		// Caching does not apply to tests outside of any module, GOPATH, or GOROOT.
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: caching disabled for package outside of module root, GOPATH, or GOROOT: %s\n", a.Package.ImportPath)
    		}
    		c.disableCache = true
    		return false
    	}
    
    	var cacheArgs []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    			cmd.Dir = t.gorootTestDir
    			// Set PWD to match Dir to speed up os.Getwd in the child process.
    			cmd.Env = append(cmd.Env, "PWD="+cmd.Dir)
    		}
    		if tempDirIsGOPATH {
    			cmd.Env = append(cmd.Env, "GOPATH="+tempDir)
    		}
    		cmd.Env = append(cmd.Env, "STDLIB_IMPORTCFG="+stdlibImportcfgFile())
    		cmd.Env = append(cmd.Env, runenv...)
    
    		var err error
    
    		if tim != 0 {
    			err = cmd.Start()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    		pp.gcMarkWorkerMode = gcMarkWorkerFractionalMode
    	}
    
    	// Run the background mark worker.
    	gp := node.gp.ptr()
    	trace := traceAcquire()
    	casgstatus(gp, _Gwaiting, _Grunnable)
    	if trace.ok() {
    		trace.GoUnpark(gp, 0)
    		traceRelease(trace)
    	}
    	return gp, now
    }
    
    // resetLive sets up the controller state for the next mark phase after the end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. go.sum

    github.com/jcmturner/dnsutils/v2 v2.0.0 h1:lltnkeZGL0wILNvrNiVCR6Ro5PGU/SeBvVO/8c/iPbo=
    github.com/jcmturner/dnsutils/v2 v2.0.0/go.mod h1:b0TnjGOvI/n42bZa+hmXL+kFJZsFT7G4t3HTlQ184QM=
    github.com/jcmturner/gofork v1.7.6 h1:QH0l3hzAU1tfT3rZCnW5zXl+orbkNMMRGJfdJjHVETg=
    github.com/jcmturner/gofork v1.7.6/go.mod h1:1622LH6i/EZqLloHfE7IeZ0uEJwMSUyQ/nDd82IeqRo=
    github.com/jcmturner/goidentity/v6 v6.0.1 h1:VKnZd2oEIMorCTsFBnJWbExfNN7yZr3EhJAxwOkZg6o=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    	// Remove absolute paths from #line comments in the preamble.
    	// They aren't useful for people using the header file,
    	// and they mean that the header files change based on the
    	// exact location of GOPATH.
    	re := regexp.MustCompile(`(?m)^(#line\s+\d+\s+")[^"]*[/\\]([^"]*")`)
    	preamble := re.ReplaceAllString(p.Preamble, "$1$2")
    
    	fmt.Fprintf(fgcch, "/* Start of preamble from import \"C\" comments.  */\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		}
    	}
    
    	// internal/runtime/atomic functions call into kernel helpers on
    	// arm < 7. See internal/runtime/atomic/sys_linux_arm.s.
    	//
    	// Start in the caller's frame.
    	if GOARCH == "arm" && goarm < 7 && GOOS == "linux" && frame.pc&0xffff0000 == 0xffff0000 {
    		// Note that the calls are simple BL without pushing the return
    		// address, so we use LR directly.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    				return "", errPkgIsGorootSrc
    			}
    			return MainModules.PathPrefix(mod), nil
    		}
    	}
    
    	// Note: The checks for @ here are just to avoid misinterpreting
    	// the module cache directories (formerly GOPATH/src/mod/foo@v1.5.2/bar).
    	// It's not strictly necessary but helpful to keep the checks.
    	var pkgNotFoundErr error
    	pkgNotFoundLongestPrefix := ""
    	for _, mainModule := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    					s.freeReg(s.GReg) // kick out the old value
    				}
    				s.assignReg(s.GReg, v, v)
    				b.Values = append(b.Values, v)
    				s.advanceUses(v)
    				continue
    			}
    			if v.Op == OpArg {
    				// Args are "pre-spilled" values. We don't allocate
    				// any register here. We just set up the spill pointer to
    				// point at itself and any later user will restore it to use it.
    				s.values[v.ID].spill = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top