Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 0B1110 (0.21 sec)

  1. src/math/big/intconv_test.go

    	{"10", "%x", "a"},
    	{"10", "%X", "A"},
    	{"-10", "%X", "-A"},
    	{"10", "%y", "%!y(big.Int=10)"},
    	{"-10", "%y", "%!y(big.Int=-10)"},
    
    	{"10", "%#b", "0b1010"},
    	{"10", "%#o", "012"},
    	{"10", "%O", "0o12"},
    	{"-10", "%#b", "-0b1010"},
    	{"-10", "%#o", "-012"},
    	{"-10", "%O", "-0o12"},
    	{"10", "%#d", "10"},
    	{"10", "%#v", "10"},
    	{"10", "%#x", "0xa"},
    	{"10", "%#X", "0XA"},
    	{"-10", "%#X", "-0XA"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. test/fixedbugs/issue31747.go

    	_ = 0b111 // ERROR "binary literal requires go1.13 or later"
    	_ = 0o567 // ERROR "0o/0O-style octal literal requires go1.13 or later"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/version/version.go

    		return nil
    	})
    }
    
    // isGoBinaryCandidate reports whether the file is a candidate to be a Go binary.
    func isGoBinaryCandidate(file string, info fs.FileInfo) bool {
    	if info.Mode().IsRegular() && info.Mode()&0111 != 0 {
    		return true
    	}
    	name := strings.ToLower(file)
    	switch filepath.Ext(name) {
    	case ".so", ".exe", ".dll":
    		return true
    	default:
    		return strings.Contains(name, ".so.")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/runtime/memclr_arm64.s

    	// check there is enough to copy after alignment
    	SUB	R4, R1, R3
    
    	// Check that the remaining length to ZVA after alignment
    	// is greater than 64.
    	CMP	$64, R3
    	CCMP	GE, R3, R5, $10  // condition code GE, NZCV=0b1010
    	BLT	no_zva
    
    	// We now have at least 64 bytes to zero, update n
    	MOVD	R3, R1
    
    loop_zva_prolog:
    	STP	(ZR, ZR), (R0)
    	STP	(ZR, ZR), 16(R0)
    	STP	(ZR, ZR), 32(R0)
    	SUBS	$64, R4, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/image/geom_test.go

    				p := Point{x, y}
    				if !p.In(g) {
    					return fmt.Errorf("p=%s, p.In(%s): got false, want true", p, g)
    				}
    			}
    		}
    		return nil
    	}
    
    	rects := []Rectangle{
    		Rect(0, 0, 10, 10),
    		Rect(10, 0, 20, 10),
    		Rect(1, 2, 3, 4),
    		Rect(4, 6, 10, 10),
    		Rect(2, 3, 12, 5),
    		Rect(-1, -2, 0, 0),
    		Rect(-1, -2, 4, 6),
    		Rect(-10, -20, 30, 40),
    		Rect(8, 8, 8, 8),
    		Rect(88, 88, 88, 88),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/math_test.go

    		if c != d || ok != ok2 {
    			t.Errorf("%v: not commutative: %d %t", test, d, ok2)
    		}
    	}
    }
    
    func TestDetectOverflowScale(t *testing.T) {
    	for _, a := range []int64{0, -1, 1, 10, -10, mostPositive, mostNegative, -mostPositive} {
    		for _, b := range []int64{1, 2, 10, 100, 1000, mostPositive} {
    			expect, expectOk := int64Multiply(a, b)
    
    			c, ok := int64MultiplyScale(a, b)
    			if c != expect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 5.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    1.11.0-beta.1-cni-install.yaml apiVersion: v1 kind: ServiceAccount metadata: name: istio-cni namespace: kube-system labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: istio-cni labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" rules:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant_4bit.mlir

    // RUN: tf-opt -tf-to-quant %s | FileCheck %s
    
    // CHECK-LABEL: fakeQuantPerChannelForActivation
    func.func @fakeQuantPerChannelForActivation(%arg0: tensor<8x3xf32>) -> (tensor<8x3xf32>) {
      %arg1 = arith.constant dense<[0.0, -1.0, 1.0]> : tensor<3xf32>
      %arg2 = arith.constant dense<[15.0, 14.0, 16.0]> : tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant.mlir

    // RUN: tf-opt -tf-to-quant %s | FileCheck %s
    
    // CHECK-LABEL: fakeQuantPerChannelForActivation
    func.func @fakeQuantPerChannelForActivation(%arg0: tensor<8x3xf32>) -> (tensor<8x3xf32>) {
      %arg1 = arith.constant dense<[0.0, -1.0, 1.0]> : tensor<3xf32>
      %arg2 = arith.constant dense<[255.0, 254.0, 256.0]> : tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p224.go

    			p.Double(p)
    		}
    
    		windowValue := byte >> 4
    		table.Select(t, windowValue)
    		p.Add(p, t)
    
    		p.Double(p)
    		p.Double(p)
    		p.Double(p)
    		p.Double(p)
    
    		windowValue = byte & 0b1111
    		table.Select(t, windowValue)
    		p.Add(p, t)
    	}
    
    	return p, nil
    }
    
    var p224GeneratorTable *[p224ElementLength * 2]p224Table
    var p224GeneratorTableOnce sync.Once
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
Back to top