Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for inf2 (0.05 sec)

  1. src/fmt/fmt_test.go

    	{"%f", complex(posInf, posInf), "(+Inf+Infi)"},
    	{"%f", complex(negInf, negInf), "(-Inf-Infi)"},
    	{"%f", complex(NaN, NaN), "(NaN+NaNi)"},
    	{"%.1f", complex(posInf, posInf), "(+Inf+Infi)"},
    	{"% f", complex(posInf, posInf), "( Inf+Infi)"},
    	{"% f", complex(negInf, negInf), "(-Inf-Infi)"},
    	{"% f", complex(NaN, NaN), "( NaN+NaNi)"},
    	{"%8e", complex(posInf, posInf), "(    +Inf    +Infi)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller.go

    	if err != nil {
    		logger.V(4).Info("Updating PersistentVolume: set phase failed", "volumeName", volume.Name, "phase", phase, "err", err)
    		return newVol, err
    	}
    	_, err = ctrl.storeVolumeUpdate(logger, newVol)
    	if err != nil {
    		logger.V(4).Info("Updating PersistentVolume: cannot update internal cache", "volumeName", volume.Name, "err", err)
    		return newVol, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

            break;
          }
    
          if (read && !info.is_read) {
            info.is_read = true;
            info.RefineType(read.getValue().getType());
            info.read_attrs = user->getAttrDictionary();
          }
    
          if (write) {
            info.is_written = true;
            info.RefineType(write.getValue().getType());
            info.write_attrs = user->getAttrDictionary();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    	for _, test := range tests {
    		info := Info{Scopes: make(map[syntax.Node]*Scope)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// number of scopes must match
    		if len(info.Scopes) != len(test.scopes) {
    			t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes))
    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			var kind string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    	for _, test := range tests {
    		info := Info{Scopes: make(map[ast.Node]*Scope)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    		// number of scopes must match
    		if len(info.Scopes) != len(test.scopes) {
    			t.Errorf("package %s: got %d scopes; want %d", name, len(info.Scopes), len(test.scopes))
    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			kind := "<unknown node kind>"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    		if loggerV := logger.V(6); loggerV.Enabled() {
    			// At a high enough log level, dump the entire object.
    			loggerV.Info("Updating PodSchedulingContext", "podSchedulingCtx", klog.KObj(schedulingCtx), "podSchedulingCtxObject", klog.Format(schedulingCtx))
    		} else {
    			logger.V(5).Info("Updating PodSchedulingContext", "podSchedulingCtx", klog.KObj(schedulingCtx))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	defer dsc.eventBroadcaster.Shutdown()
    
    	defer dsc.queue.ShutDown()
    
    	logger := klog.FromContext(ctx)
    	logger.Info("Starting daemon sets controller")
    	defer logger.Info("Shutting down daemon sets controller")
    
    	if !cache.WaitForNamedCacheSync("daemon sets", ctx.Done(), dsc.podStoreSynced, dsc.nodeStoreSynced, dsc.historyStoreSynced, dsc.dsStoreSynced) {
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. cmd/peer-rest-server.go

    		return nil, grid.NewRemoteErr(err)
    	}
    	info := getLocalServerProperty(globalEndpoints, &r, metrics)
    	return madminServerProperties.NewJSONWith(&info), nil
    }
    
    // GetCPUsHandler - returns CPU info.
    func (s *peerRESTServer) GetCPUsHandler(_ *grid.MSS) (*grid.JSON[madmin.CPUs], *grid.RemoteErr) {
    	info := madmin.GetCPUs(context.Background(), globalLocalNodeName)
    	return madminCPUs.NewJSONWith(&info), nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    func (info *endpointInfo) String() string {
    	return net.JoinHostPort(info.ip, strconv.Itoa(int(info.port)))
    }
    
    // IsLocal is part of proxy.Endpoint interface.
    func (info *endpointInfo) IsLocal() bool {
    	return info.isLocal
    }
    
    // IsReady returns true if an endpoint is ready and not terminating.
    func (info *endpointInfo) IsReady() bool {
    	return info.ready
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    	}{
    		// prec 0
    		{"0", 0, "0", Exact},
    		{"-0", 0, "-0", Exact},
    		{"-Inf", 0, "-Inf", Exact},
    		{"+Inf", 0, "+Inf", Exact},
    		{"123", 0, "0", Below},
    		{"-123", 0, "-0", Above},
    
    		// prec at upper limit
    		{"0", MaxPrec, "0", Exact},
    		{"-0", MaxPrec, "-0", Exact},
    		{"-Inf", MaxPrec, "-Inf", Exact},
    		{"+Inf", MaxPrec, "+Inf", Exact},
    
    		// just a few regular cases - general rounding is tested elsewhere
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top