Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for 00101110 (0.26 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"SQRSHL","Bits":"0|1|0|1|1|1|1|0|size:2|1|Rm:5|0|1|0|1|1|1|Rn:5|Rd:5","Arch":"Scalar Scalar variant","Syntax":"SQRSHL <V><d>, <V><n>, <V><m>","Code":"","Alias":""},
    {"Name":"SQRSHL","Bits":"0|Q|0|0|1|1|1|0|size:2|1|Rm:5|0|1|0|1|1|1|Rn:5|Rd:5","Arch":"Vector Vector variant","Syntax":"SQRSHL <Vd>.<T>, <Vn>.<T>, <Vm>.<T>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  2. src/runtime/utf8.go

    )
    
    const (
    	t1 = 0x00 // 0000 0000
    	tx = 0x80 // 1000 0000
    	t2 = 0xC0 // 1100 0000
    	t3 = 0xE0 // 1110 0000
    	t4 = 0xF0 // 1111 0000
    	t5 = 0xF8 // 1111 1000
    
    	maskx = 0x3F // 0011 1111
    	mask2 = 0x1F // 0001 1111
    	mask3 = 0x0F // 0000 1111
    	mask4 = 0x07 // 0000 0111
    
    	rune1Max = 1<<7 - 1
    	rune2Max = 1<<11 - 1
    	rune3Max = 1<<16 - 1
    
    	// The default lowest and highest continuation byte.
    	locb = 0x80 // 1000 0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. src/math/bits/example_test.go

    }
    
    func ExampleTrailingZeros8() {
    	fmt.Printf("TrailingZeros8(%08b) = %d\n", 14, bits.TrailingZeros8(14))
    	// Output:
    	// TrailingZeros8(00001110) = 1
    }
    
    func ExampleTrailingZeros16() {
    	fmt.Printf("TrailingZeros16(%016b) = %d\n", 14, bits.TrailingZeros16(14))
    	// Output:
    	// TrailingZeros16(0000000000001110) = 1
    }
    
    func ExampleTrailingZeros32() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:16:09 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/composites.golden

    	"bar": ([]int{1, 2}),
    	"bal": {3, 4},
    }
    
    // from exp/4s/data.go
    var pieces4 = []Piece{
    	{0, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{1, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    	{2, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{3, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    }
    
    var _ = [42]*T{
    	{},
    	{1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  5. src/image/draw/clip_test.go

    	{
    		"basic",
    		image.Rect(0, 0, 100, 100),
    		image.Rect(0, 0, 100, 100),
    		image.Rect(0, 0, 100, 100),
    		image.Rectangle{},
    		image.Point{},
    		image.Point{},
    		true,
    		image.Rect(0, 0, 100, 100),
    		image.Point{},
    		image.Point{},
    	},
    	{
    		"clip dr",
    		image.Rect(0, 0, 100, 100),
    		image.Rect(40, 40, 60, 60),
    		image.Rect(0, 0, 100, 100),
    		image.Rectangle{},
    		image.Point{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.00016"} 10
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.00064"} 10
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.00256"} 10
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.01024"} 10
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.04096"} 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (1)
  7. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

            notPaths: ["/not-exact"]
        when:
          - key: "request.headers[X-header]"
            values: ["header"]
            notValues: ["not-header"]
          - key: "source.ip"
            values: ["10.10.10.10"]
            notValues: ["90.10.10.10"]
          - key: "remote.ip"
            values: ["192.168.3.3"]
            notValues: ["172.19.31.3"]
          - key: "source.namespace"
            values: ["ns", "*ns-suffix", "ns-prefix*", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradients_test.cc

        if (expected) {
          // Construct backward graph.
          auto dz = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
          auto dx = MatMul(scope, dz, y, MatMul::TransposeB(true));
          auto dy = MatMul(scope, x, dz, MatMul::TransposeA(true));
        } else {
          // Call AddSymbolicGradients.
          auto dz = Const(scope, {{1.0, 1.0}, {1.0, 1.0}});
          std::vector<Output> grad_outputs;
          TF_ASSERT_OK(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups-in.yaml

        - key: "connection.sni"
          values: [ "when-l4-l7-sni"]
      # L4 only when
      - when:
        - key: "source.namespace"
          values: ["when-l4-ns"]
        - key: "source.ip"
          values: ["10.10.10.10"]
          notValues: ["20.20.20.20"]
      # L7 only when
      - when:
        - key: "connection.sni"
          values: [ "when-l7-sni"]
        - key: "request.headers[X-header]"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils_test.go

    			endpoint: &kubeadmapi.APIEndpoint{},
    			expected: "127.0.0.1",
    		},
    		{
    			desc: "filled in AdvertiseAddress endpoint returns it",
    			endpoint: &kubeadmapi.APIEndpoint{
    				AdvertiseAddress: "10.10.10.10",
    			},
    			expected: "10.10.10.10",
    		},
    		{
    			desc: "filled in ipv6 AdvertiseAddress endpoint returns it",
    			endpoint: &kubeadmapi.APIEndpoint{
    				AdvertiseAddress: "2001:abcd:bcda::1",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
Back to top