Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 0b0 (0.96 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            assertSuccess(parser("0X0"))
            assertSuccess(parser("0Xff_ee"))
            assertSuccess(parser("0Xabc_e"))
    
            // binary numbers
            assertSuccess(parser("0b0"))
            assertSuccess(parser("0B0"))
            assertSuccess(parser("0b101010"))
            assertSuccess(parser("0b10101_0"))
    
            assertFailure(
                parser("bar"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    	case Bool, Int, Uint, Int8, Uint8, Int16, Uint16, Int32, Uint32, Uintptr:
    		return a.assignIntN(offset, t.Size(), 1, 0b0)
    	case Int64, Uint64:
    		switch goarch.PtrSize {
    		case 4:
    			return a.assignIntN(offset, 4, 2, 0b0)
    		case 8:
    			return a.assignIntN(offset, 8, 1, 0b0)
    		}
    	case Float32, Float64:
    		return a.assignFloatN(offset, t.Size(), 1)
    	case Complex64:
    		return a.assignFloatN(offset, 4, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestNumbers(t *testing.T) {
    	for _, test := range []struct {
    		tok              token.Token
    		src, tokens, err string
    	}{
    		// binaries
    		{token.INT, "0b0", "0b0", ""},
    		{token.INT, "0b1010", "0b1010", ""},
    		{token.INT, "0B1110", "0B1110", ""},
    
    		{token.INT, "0b", "0b", "binary literal has no digits"},
    		{token.INT, "0b0190", "0b0190", "invalid digit '9' in binary literal"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      // the operation has Options in the serialized FlatBuffer.
    
      // Whether the TFLite operator has options in the schema representation.
      bit hasOptions = 0b0;
      // Whether the TFLite operator has options2 in the schema representation.
      bit hasOptions2 = 0b0;
    
      // Use to specify a custom options type for TFLite operators where
      // the option's name does not match the TFLite operator's name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top