Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 84 of 84 for Thresholds (0.19 sec)

  1. src/runtime/memclr_amd64.s

    	// Table 3-4. Relative Performance of Memcpy() Using ERMSB Vs. 128-bit AVX
    	// in the Intel Optimization Guide shows better performance for ERMSB starting
    	// from 2KB. Benchmarks show the similar threshold for REP STOS vs AVX.
    	CMPQ    BX, $2048
    	JAE	loop_preheader_erms
    
    skip_erms:
    #ifndef hasAVX2
    	CMPB	internal∕cpu·X86+const_offsetX86HasAVX2(SB), $1
    	JE	loop_preheader_avx2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager.go

    	ReservedSystemCPUs       cpuset.CPUSet
    	EnforceNodeAllocatable   sets.Set[string]
    	KubeReserved             v1.ResourceList
    	SystemReserved           v1.ResourceList
    	HardEvictionThresholds   []evictionapi.Threshold
    }
    
    type Status struct {
    	// Any soft requirements that were unsatisfied.
    	SoftRequirements error
    }
    
    // parsePercentage parses the percentage string to numeric value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdExtension.java

         */
        public void setTargetJdk(Object value) {
            targetJdk = TargetJdk.toVersion(value);
        }
    
        /**
         * The rule priority threshold; violations for rules with a lower priority will not be reported. Default value is 5, which means that all violations will be reported.
         *
         * This is equivalent to PMD's Ant task minimumPriority property.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. src/math/cmplx/tan.go

    // K. C. Ng et al, March 24, 1992.
    func reducePi(x float64) float64 {
    	// reduceThreshold is the maximum value of x where the reduction using
    	// Cody-Waite reduction still gives accurate results. This threshold
    	// is set by t*PIn being representable as a float64 without error
    	// where t is given by t = floor(x * (1 / Pi)) and PIn are the leading partial
    	// terms of Pi. Since the leading terms, PI1 and PI2 below, have 30 and 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
Back to top