Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for FLOAT64 (0.2 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	logger := klog.FromContext(ctx)
    	for k, v := range zoneToNodeConditions {
    		zoneSize.WithLabelValues(k).Set(float64(len(v)))
    		unhealthy, newState := nc.computeZoneStateFunc(v)
    		zoneHealth.WithLabelValues(k).Set(float64(100*(len(v)-unhealthy)) / float64(len(v)))
    		unhealthyNodes.WithLabelValues(k).Set(float64(unhealthy))
    		if newState != stateFullDisruption {
    			allAreFullyDisrupted = false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    		// Test against expectation.
    		f, acc := i.Float64()
    		if f != test.f || acc != test.acc {
    			t.Errorf("%s: got %f (%s); want %f (%s)", test.istr, f, acc, test.f, test.acc)
    		}
    
    		// Cross-check the fast path against the big.Float implementation.
    		f2, acc2 := new(Float).SetInt(i).Float64()
    		if f != f2 || acc != acc2 {
    			t.Errorf("%s: got %f (%s); Float.Float64 gives %f (%s)", test.istr, f, acc, f2, acc2)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. tests/migrate_test.go

    		ID       uint
    		Name     string
    		Salary   float64
    		Birthday time.Time `gorm:"precision:4"`
    	}
    
    	DB.Migrator().DropTable(&UserMigrateColumn{})
    
    	DB.AutoMigrate(&UserMigrateColumn{})
    
    	type UserMigrateColumn2 struct {
    		ID                  uint
    		Name                string    `gorm:"size:128"`
    		Salary              float64   `gorm:"precision:2"`
    		Birthday            time.Time `gorm:"precision:2"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			},
    		},
    		{name: "numeric comparisons",
    			obj: objs(
    				int64(5),      // val1, integer type, integer value
    				float64(10.0), // val4, number type, parsed from decimal literal
    				float64(10.0), // val5, float type, parsed from decimal literal
    				float64(10.0), // val6, double type, parsed from decimal literal
    				int64(10),     // val7, number type, parsed from integer literal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    			ri.Bucket = ""
    			ri.Object = ""
    			ri.Objects = 0
    			ri.BytesFailed = 0
    			ri.BytesTransferred = 0
    			retry = true // indicate we are retrying..
    			time.Sleep(delay + time.Duration(rnd.Float64()*float64(delay)))
    			continue
    		}
    
    		break
    	}
    
    	return nil
    }
    
    // toObjectInfo converts minio.ObjectInfo to ObjectInfo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. src/time/time_test.go

    	{"52763797000ns", 52763797000 * Nanosecond},
    	// more than 9 digits after decimal point, see https://golang.org/issue/6617
    	{"0.3333333333333333333h", 20 * Minute},
    	// 9007199254740993 = 1<<53+1 cannot be stored precisely in a float64
    	{"9007199254740993ns", (1<<53 + 1) * Nanosecond},
    	// largest duration that can be represented by int64 in nanoseconds
    	{"9223372036854775807ns", (1<<63 - 1) * Nanosecond},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    	{"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	selfTime := p.gcFractionalMarkTime + (now - p.gcMarkWorkerStartTime)
    	// Add some slack to the utilization goal so that the
    	// fractional worker isn't behind again the instant it exits.
    	return float64(selfTime)/float64(delta) > 1.2*gcController.fractionalUtilizationGoal
    }
    
    var work workType
    
    type workType struct {
    	full  lfstack          // lock-free list of full blocks workbuf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	{"nil action", "{{nil}}", "", nil, false},
    
    	// Ideal constants.
    	{"ideal int", "{{typeOf 3}}", "int", 0, true},
    	{"ideal float", "{{typeOf 1.0}}", "float64", 0, true},
    	{"ideal exp float", "{{typeOf 1e1}}", "float64", 0, true},
    	{"ideal complex", "{{typeOf 1i}}", "complex128", 0, true},
    	{"ideal int", "{{typeOf " + bigInt + "}}", "int", 0, true},
    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	if err := v1.Convert_Pointer_bool_To_bool(&in.SeccompDefault, &out.SeccompDefault, s); err != nil {
    		return err
    	}
    	out.MemoryThrottlingFactor = (*float64)(unsafe.Pointer(in.MemoryThrottlingFactor))
    	out.RegisterWithTaints = *(*[]corev1.Taint)(unsafe.Pointer(&in.RegisterWithTaints))
    	if err := v1.Convert_Pointer_bool_To_bool(&in.RegisterNode, &out.RegisterNode, s); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top