Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 231 for ROUND (0.47 sec)

  1. pkg/proxy/metrics/metrics.go

    	kubeproxyconfig "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/util/nfacct"
    )
    
    const kubeProxySubsystem = "kubeproxy"
    
    var (
    	// SyncProxyRulesLatency is the latency of one round of kube-proxy syncing proxy
    	// rules. (With the iptables proxy, this includes both full and partial syncs.)
    	SyncProxyRulesLatency = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem:      kubeProxySubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_arm64.s

    	CMP	$128, srcPtrLen
    
    	MOVD	ks, H0
    	// For AES-128 round keys are stored in: K0 .. K10, KLAST
    	VLD1.P	64(H0), [K0.B16, K1.B16, K2.B16, K3.B16]
    	VLD1.P	64(H0), [K4.B16, K5.B16, K6.B16, K7.B16]
    	VLD1.P	48(H0), [K8.B16, K9.B16, K10.B16]
    	VMOV	K10.B16, KLAST.B16
    
    	BLT	startSingles
    	// There are at least 8 blocks to encrypt
    	TBZ	$4, NR, octetsLoop
    
    	// For AES-192 round keys occupy: K0 .. K7, K10, K11, K8, K9, KLAST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    			j.APIVersion = ""
    			j.Kind = ""
    		},
    		func(j *runtime.Object, c fuzz.Continue) {
    			// TODO: uncomment when round trip starts from a versioned object
    			if true { //c.RandBool() {
    				*j = &runtime.Unknown{
    					// We do not set TypeMeta here because it is not carried through a round trip
    					Raw:         []byte(`{"apiVersion":"unknown.group/unknown","kind":"Something","someKey":"someValue"}`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/strconv/atof_test.go

    	// Exactly halfway between 1 and math.Nextafter(1, 2).
    	// Round to even (down).
    	{"1.00000000000000011102230246251565404236316680908203125", "1", nil},
    	{"0x1.00000000000008p0", "1", nil},
    	// Slightly lower; still round down.
    	{"1.00000000000000011102230246251565404236316680908203124", "1", nil},
    	{"0x1.00000000000007Fp0", "1", nil},
    	// Slightly higher; round up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

        const float real_value = expressed_value.convertToFloat();
    
        const double scaled = real_value / scale_double_ + zero_point_double_;
        // Round to nearest integer with halfway cases rounded away from zero.
        const double scaled_rounded = std::round(scaled);
        const double clamped = std::min(std::max(scaled_rounded, clamp_min_double_),
                                        clamp_max_double_);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/math/big/floatconv_test.go

    	} {
    		f, _, err := ParseFloat(test.x, 0, test.prec, ToNearestEven)
    		if err != nil {
    			t.Errorf("%v: %s", test, err)
    			continue
    		}
    		if test.round != defaultRound {
    			f.SetMode(test.round)
    		}
    
    		got := f.Text(test.format, test.digits)
    		if got != test.want {
    			t.Errorf("%v: got %s; want %s", test, got, test.want)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

    // CHECK: %[[round:.*]] = "tf.Round"(%[[avgpool]]) : (tensor<*xf32>) -> tensor<*xf32>
    // CHECK: %[[cast_2:.*]] = "tf.Cast"(%[[round]]) <{Truncate = false}> : (tensor<*xf32>) -> tensor<*xi8>
    // CHECK: %[[dequantize:.*]] = "tf.PartitionedCall"(%[[cast_2]]
    // CHECK-SAME: f = @dequantize_i8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  8. pkg/test/loadbalancersim/lb_test.go

    		},
    	}
    
    	algorithmCases := []struct {
    		name  string
    		newLB func(conns []*loadbalancer.WeightedConnection) network.Connection
    	}{
    		{
    			name:  "round robin",
    			newLB: loadbalancer.NewRoundRobin,
    		},
    		{
    			name: "least request",
    			newLB: func(conns []*loadbalancer.WeightedConnection) network.Connection {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. src/image/color/ycbcr.go

    	//	B = (65536*Y' + 116130 *(Cb-128)                  + adjustment) >> 16
    	// A constant rounding adjustment of 1<<15, one half of 1<<16, would mean
    	// round-to-nearest when dividing by 65536 (shifting right by 16).
    	// Similarly, a constant rounding adjustment of 0 would mean round-down.
    	//
    	// Defining YY1 = 65536*Y' + adjustment simplifies the formulae and
    	// requires fewer CPU operations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/crypto/internal/mlkem768/mlkem768.go

    	// Since the remainder is in the range [0, 2q), not [0, q), we need to
    	// portion it into three spans for rounding.
    	//
    	//     [ 0,       q/2     ) -> round to 0
    	//     [ q/2,     q + q/2 ) -> round to 1
    	//     [ q + q/2, 2q      ) -> round to 2
    	//
    	// We can convert that to the following logic: add 1 if remainder > q/2,
    	// then add 1 again if remainder > q + q/2.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top