Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 260 for toint (0.04 sec)

  1. src/runtime/mfinal.go

    // pointers from a global variable, are reachable. A function argument or
    // receiver may become unreachable at the last point where the function
    // mentions it. To make an unreachable object reachable, pass the object
    // to a call of the [KeepAlive] function to mark the last point in the
    // function where the object must be reachable.
    //
    // For example, if p points to a struct, such as os.File, that contains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/builtin.go

    	typs[12] = types.Types[types.TINT32]
    	typs[13] = types.NewPtr(typs[12])
    	typs[14] = newSig(params(typs[13]), params(typs[10]))
    	typs[15] = types.Types[types.TINT]
    	typs[16] = newSig(params(typs[15], typs[15]), nil)
    	typs[17] = types.Types[types.TUINT]
    	typs[18] = newSig(params(typs[17], typs[15]), nil)
    	typs[19] = newSig(params(typs[6]), nil)
    	typs[20] = types.Types[types.TFLOAT64]
    	typs[21] = newSig(params(typs[20]), nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		if opts.SendInitialEvents == nil {
    			// resourceVersion = 0 means that we don't require any specific starting point
    			// and we would like to start watching from ~now.
    			// However, to keep backward compatibility, we additionally need to return the
    			// current state and only then start watching from that point.
    			//
    			// TODO: In v2 api, we should stop returning the current state - #13969.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/iter/pull_test.go

    	// that other goroutines run, so that they reach a stable point.
    	// It's not guaranteed, because it is still possible for a goroutine
    	// to Gosched back into itself, so we require NumGoroutine to be
    	// the same 100 times in a row. This should be more than enough to
    	// ensure all goroutines get a chance to run to completion (or to
    	// some block point) for a small group of test goroutines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. internal/config/storageclass/storage-class.go

    //
    //	for RRS is assumed, the caller is expected to choose the right parity
    //	at that point.
    //
    // -- if input is STANDARD but STANDARD is not configured/initialized '-1' parity
    //
    //	is returned, the caller is expected to choose the right parity
    //	at that point.
    func (sCfg *Config) GetParityForSC(sc string) (parity int) {
    	ConfigLock.RLock()
    	defer ConfigLock.RUnlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/crash_test.go

    		}
    		buf := make([]byte, 2048)
    		n := runtime.Stack(buf, false)
    		buf = buf[:n]
    		if !bytes.Contains(buf, []byte("(*point).negate(")) {
    			t.Fatalf("expecting stack trace to contain call to (*point).negate()")
    		}
    	}()
    
    	pt := new(point)
    	pt.negate()
    }
    
    // Test for issues #3934 and #20018.
    // We want to delay exiting until a panic print is complete.
    func TestPanicRace(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/controller/controller.go

    	caBundle, err := util.LoadCABundle(c.o.CABundleWatcher)
    	if err != nil {
    		scope.Errorf("Failed to load CA bundle: %v", err)
    		reportValidationConfigLoadError(err.(*util.ConfigError).Reason())
    		// no point in retrying unless cert file changes.
    		return nil
    	}
    	return c.updateValidatingWebhookConfiguration(whc, caBundle)
    }
    
    func (c *Controller) Run(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows.go

    	}
    	if k := t.Kind_ & abi.KindMask; GOARCH != "386" && (k == abi.Float32 || k == abi.Float64) {
    		// In fastcall, floating-point arguments in
    		// the first four positions are passed in
    		// floating-point registers, which we don't
    		// currently spill. arm passes floating-point
    		// arguments in VFP registers, which we also
    		// don't support.
    		// So basically we only support 386.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    	reqs := resource.PodRequests(pod, resource.PodResourcesOptions{})
    	result := &preFilterState{}
    	result.SetMaxResource(reqs)
    	return result
    }
    
    // PreFilter invoked at the prefilter extension point.
    func (f *Fit) PreFilter(ctx context.Context, cycleState *framework.CycleState, pod *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    	if !f.enableSidecarContainers && hasRestartableInitContainer(pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    //
    // Examples:
    //
    // - 1.5 will be serialized as "1500m"
    // - 1.5Gi will be serialized as "1536Mi"
    //
    // Note that the quantity will NEVER be internally represented by a
    // floating point number. That is the whole point of this exercise.
    //
    // Non-canonical values will still parse as long as they are well formed,
    // but will be re-emitted in their canonical form. (So always use canonical
    // form, or don't diff.)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top