Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 229 for 0B101 (0.14 sec)

  1. src/strconv/atoi_test.go

    	{"01777777777777777777778", 0, 0, ErrSyntax},
    	{"02000000000000000000000", 0, 1<<64 - 1, ErrRange},
    	{"0200000000000000000000", 0, 1 << 61, nil},
    	{"0b", 0, 0, ErrSyntax},
    	{"0B", 0, 0, ErrSyntax},
    	{"0b101", 0, 5, nil},
    	{"0B101", 0, 5, nil},
    	{"0o", 0, 0, ErrSyntax},
    	{"0O", 0, 0, ErrSyntax},
    	{"0o377", 0, 255, nil},
    	{"0O377", 0, 255, nil},
    
    	// underscores allowed with base == 0 only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // begin: should be (0, -1, 0) or (-1, 0, 0) if it's time-majored.
      // new_axis_mask: should always be 0.
      // ellipsis_mask: should always be 0.
      // begin_mask & end_mask: should be 0b101 = 5 or 0b110 = 4 if it's
      // time-majored. shrink_axis_mask: should be 0b010 = 2 or 0b001 = 1 if it's
      // time-majored.
      SmallVector<int64_t, 2> last_output_shape({batch, n_output});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. src/html/template/exec_test.go

    	// Numbers
    	{"decimal", "{{print 1234}}", "1234", tVal, true},
    	{"decimal _", "{{print 12_34}}", "1234", tVal, true},
    	{"binary", "{{print 0b101}}", "5", tVal, true},
    	{"binary _", "{{print 0b_1_0_1}}", "5", tVal, true},
    	{"BINARY", "{{print 0B101}}", "5", tVal, true},
    	{"octal0", "{{print 0377}}", "255", tVal, true},
    	{"octal", "{{print 0o377}}", "255", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	// Numbers
    	{"decimal", "{{print 1234}}", "1234", tVal, true},
    	{"decimal _", "{{print 12_34}}", "1234", tVal, true},
    	{"binary", "{{print 0b101}}", "5", tVal, true},
    	{"binary _", "{{print 0b_1_0_1}}", "5", tVal, true},
    	{"BINARY", "{{print 0B101}}", "5", tVal, true},
    	{"octal0", "{{print 0377}}", "255", tVal, true},
    	{"octal", "{{print 0o377}}", "255", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/bitmask/bitmask_test.go

    			name:   "Mask 01 OR mask 10",
    			masks:  [][]int{{0}, {1}},
    			orMask: "11",
    		},
    		{
    			name:   "Mask 11 OR mask 11",
    			masks:  [][]int{{0, 1}, {0, 1}},
    			orMask: "11",
    		},
    		{
    			name:   "Mask 01 OR mask 10 OR mask 11",
    			masks:  [][]int{{0}, {1}, {0, 1}},
    			orMask: "11",
    		},
    		{
    			name:   "Mask 1000 OR mask 0100 OR mask 0010 OR mask 0001",
    			masks:  [][]int{{3}, {2}, {1}, {0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  6. src/image/color/ycbcr.go

    }
    
    // CMYKToRGB converts a [CMYK] quadruple to an RGB triple.
    func CMYKToRGB(c, m, y, k uint8) (uint8, uint8, uint8) {
    	w := 0xffff - uint32(k)*0x101
    	r := (0xffff - uint32(c)*0x101) * w / 0xffff
    	g := (0xffff - uint32(m)*0x101) * w / 0xffff
    	b := (0xffff - uint32(y)*0x101) * w / 0xffff
    	return uint8(r >> 8), uint8(g >> 8), uint8(b >> 8)
    }
    
    // CMYK represents a fully opaque CMYK color, having 8 bits for each of cyan,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1.Lease.json

            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/coordination.k8s.io.v1beta1.Lease.json

            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "holderIdentity": "holderIdentityValue",
        "leaseDurationSeconds": 2,
        "acquireTime": "2003-01-01T01:01:01.000003Z",
        "renewTime": "2004-01-01T01:01:01.000004Z",
        "leaseTransitions": 5
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1.Lease.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      acquireTime: "2003-01-01T01:01:01.000003Z"
      holderIdentity: holderIdentityValue
      leaseDurationSeconds: 2
      leaseTransitions: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/coordination.k8s.io.v1beta1.Lease.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      acquireTime: "2003-01-01T01:01:01.000003Z"
      holderIdentity: holderIdentityValue
      leaseDurationSeconds: 2
      leaseTransitions: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top