Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for atoi32 (0.14 sec)

  1. src/runtime/proc.go

    		MemProfileRate = 0
    	}
    
    	// mcommoninit runs before parsedebugvars, so init profstacks again.
    	mProfStackInit(gp.m)
    
    	lock(&sched.lock)
    	sched.lastpoll.Store(nanotime())
    	procs := ncpu
    	if n, ok := atoi32(gogetenv("GOMAXPROCS")); ok && n > 0 {
    		procs = n
    	}
    	if procresize(procs) != nil {
    		throw("unknown runnable goroutine during bootstrap")
    	}
    	unlock(&sched.lock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	enableSha256 := r.Form.Get("enableSha256") == "true"
    	enableMultipart := r.Form.Get("enableMultipart") == "true"
    
    	size, err := strconv.Atoi(sizeStr)
    	if err != nil {
    		size = 64 * humanize.MiByte
    	}
    
    	concurrent, err := strconv.Atoi(concurrentStr)
    	if err != nil {
    		concurrent = 32
    	}
    
    	duration, err := time.ParseDuration(durationStr)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Div64F ...) => (FDIVD ...)
    
    (Mod64 x y) => (MOD x y)
    (Mod32 x y) => (MODW x y)
    (Mod64u ...) => (UMOD ...)
    (Mod32u ...) => (UMODW ...)
    (Mod(16|8)  x y) => (MODW  (SignExt(16|8)to32 x) (SignExt(16|8)to32 y))
    (Mod(16|8)u x y) => (UMODW (ZeroExt(16|8)to32 x) (ZeroExt(16|8)to32 y))
    
    // (x + y) / 2 with x>=y    =>    (x - y) / 2 + y
    (Avg64u <t> x y) => (ADD (SRLconst <t> (SUB <t> x y) [1]) y)
    
    (And(64|32|16|8) ...) => (AND ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	}
    
    	// We have SWIG version 3.x.
    	if len(matches[2]) > 0 {
    		minor, err := strconv.Atoi(string(matches[2][1:]))
    		if err != nil {
    			return nil
    		}
    		if minor > 0 {
    			// 3.1 or later
    			return nil
    		}
    	}
    
    	// We have SWIG version 3.0.x.
    	if len(matches[3]) > 0 {
    		patch, err := strconv.Atoi(string(matches[3][1:]))
    		if err != nil {
    			return nil
    		}
    		if patch < 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    func (pl *numericMapPlugin) Name() string {
    	return "NumericMap"
    }
    
    func (pl *numericMapPlugin) Score(_ context.Context, _ *framework.CycleState, _ *v1.Pod, nodeName string) (int64, *framework.Status) {
    	score, err := strconv.Atoi(nodeName)
    	if err != nil {
    		return 0, framework.NewStatus(framework.Error, fmt.Sprintf("Error converting nodename to int: %+v", nodeName))
    	}
    	return int64(score), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    						errMsg := "sidecar: defaultEndpoint must be of form 127.0.0.1:<port>,0.0.0.0:<port>,[::1]:port,[::]:port,unix://filepath or unset"
    						errs = AppendValidation(errs, fmt.Errorf(errMsg))
    					}
    					port, err := strconv.Atoi(sPort)
    					if err != nil {
    						errs = AppendValidation(errs, fmt.Errorf("sidecar: defaultEndpoint port (%s) is not a number: %v", sPort, err))
    					} else {
    						errs = AppendValidation(errs, agent.ValidatePort(port))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    			return 0, fmt.Errorf("%v: %v\n%s", cmd, err, ee.Stderr)
    		}
    		return 0, fmt.Errorf("%v: %v", cmd, err)
    	}
    	before, _, ok := strings.Cut(string(out), ".")
    	major, err := strconv.Atoi(before)
    	if !ok || err != nil {
    		return 0, fmt.Errorf("%v: unexpected output: %q", cmd, out)
    	}
    
    	return major, nil
    }
    
    func TestIssue51759(t *testing.T) {
    	if runtime.GOOS != "darwin" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    func TestTimeoutHandlerRace(t *testing.T) { run(t, testTimeoutHandlerRace) }
    func testTimeoutHandlerRace(t *testing.T, mode testMode) {
    	delayHi := HandlerFunc(func(w ResponseWriter, r *Request) {
    		ms, _ := strconv.Atoi(r.URL.Path[1:])
    		if ms == 0 {
    			ms = 1
    		}
    		for i := 0; i < ms; i++ {
    			w.Write([]byte("hi"))
    			time.Sleep(time.Millisecond)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top