Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 115 for float1 (0.16 sec)

  1. src/runtime/mprof.go

    	var r int64
    	if rate <= 0 {
    		r = 0 // disable profiling
    	} else if rate == 1 {
    		r = 1 // profile everything
    	} else {
    		// convert ns to cycles, use float64 to prevent overflow during multiplication
    		r = int64(float64(rate) * float64(ticksPerSecond()) / (1000 * 1000 * 1000))
    		if r == 0 {
    			r = 1
    		}
    	}
    
    	atomic.Store64(&blockprofilerate, uint64(r))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    			// the proposal has to be rounded up because the proposed change might not increase the replica count causing the target to never scale up
    			proposed = int32(math.Ceil(float64(periodStartReplicas) * (1 + float64(policy.Value)/100)))
    		}
    		result = selectPolicyFn(result, proposed)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Trunc64to32 ...) => (Copy ...)
    
    // Lowering float <-> int
    (Cvt32to32F ...) => (CEFBRA ...)
    (Cvt32to64F ...) => (CDFBRA ...)
    (Cvt64to32F ...) => (CEGBRA ...)
    (Cvt64to64F ...) => (CDGBRA ...)
    
    (Cvt32Fto32 ...) => (CFEBRA ...)
    (Cvt32Fto64 ...) => (CGEBRA ...)
    (Cvt64Fto32 ...) => (CFDBRA ...)
    (Cvt64Fto64 ...) => (CGDBRA ...)
    
    // Lowering float <-> uint
    (Cvt32Uto32F ...) => (CELFBR ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Asserts that val1 is less than, or almost equal to, val2.  Fails
    // otherwise.  In particular, it fails if either val1 or val2 is NaN.
    GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
                                       float val1, float val2);
    GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
                                        double val1, double val2);
    
    
    #if GTEST_OS_WINDOWS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. src/sync/atomic/atomic_test.go

    	type Data struct {
    		signal int32
    		pad1   [128]int8
    		data1  int32
    		pad2   [128]int8
    		data2  float32
    	}
    	var X Data
    	for p := int32(0); p < 2; p++ {
    		go func(p int32) {
    			for i := int32(1); i < N; i++ {
    				if (i+p)%2 == 0 {
    					X.data1 = i
    					X.data2 = float32(i)
    					StoreInt32(&X.signal, i)
    				} else {
    					for w := 1; LoadInt32(&X.signal) != i; w++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		if err != nil {
    			return fmt.Errorf("failed to initialize kubelet client: %w", err)
    		}
    
    		// make a separate client for events
    		eventClientConfig := *clientConfig
    		eventClientConfig.QPS = float32(s.EventRecordQPS)
    		eventClientConfig.Burst = int(s.EventBurst)
    		kubeDeps.EventClient, err = v1core.NewForConfig(&eventClientConfig)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    		if hasBackoffLimitPerIndex(job) && job.Status.FailedIndexes != oldCounters.FailedIndexes {
    			if failedDiff := indexesCount(logger, job.Status.FailedIndexes, completions) - indexesCount(logger, oldCounters.FailedIndexes, completions); failedDiff > 0 {
    				metrics.JobFinishedIndexesTotal.WithLabelValues(metrics.Failed, backoffLimitLabel).Add(float64(failedDiff))
    			}
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/replica_calculator_test.go

    	finalCPUPercentTarget := int32(target * 100)
    	resourcesUsedRatio := float64(totalUsedCPUOfAllPods) / float64(float64(totalRequestedCPUOfAllPods)*target)
    
    	// i.e. .60 * 20 -> scaled down expectation.
    	finalPods := int32(math.Ceil(resourcesUsedRatio * float64(startPods)))
    
    	// To breach tolerance we will create a utilization ratio difference of tolerance to usageRatioToleranceValue)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  9. src/time/format.go

    			// overflow
    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		v *= unit
    		if f > 0 {
    			// float64 is needed to be nanosecond accurate for fractions of hours.
    			// v >= 0 && (f*unit/scale) <= 3.6e+12 (ns/h, h is the largest unit)
    			v += uint64(float64(f) * (float64(unit) / scale))
    			if v > 1<<63 {
    				// overflow
    				return 0, errors.New("time: invalid duration " + quote(orig))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Asserts that val1 is less than, or almost equal to, val2.  Fails
    // otherwise.  In particular, it fails if either val1 or val2 is NaN.
    GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
                                       float val1, float val2);
    GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
                                        double val1, double val2);
    
    
    #if GTEST_OS_WINDOWS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top