Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 303 for 12E0 (0.11 sec)

  1. src/encoding/json/number_test.go

    	validTests := []string{
    		"0",
    		"-0",
    		"1",
    		"-1",
    		"0.1",
    		"-0.1",
    		"1234",
    		"-1234",
    		"12.34",
    		"-12.34",
    		"12E0",
    		"12E1",
    		"12e34",
    		"12E-0",
    		"12e+1",
    		"12e-34",
    		"-12E0",
    		"-12E1",
    		"-12e34",
    		"-12E-0",
    		"-12e+1",
    		"-12e-34",
    		"1.2E0",
    		"1.2E1",
    		"1.2e34",
    		"1.2E-0",
    		"1.2e+1",
    		"1.2e-34",
    		"-1.2E0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 05:40:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. test/inline_big.go

    	a[111] = 0
    	a[112] = 0
    	a[113] = 0
    	a[114] = 0
    	a[115] = 0
    	a[116] = 0
    	a[117] = 0
    	a[118] = 0
    	a[119] = 0
    	a[120] = 0
    	a[121] = 0
    	a[122] = 0
    	a[123] = 0
    	a[124] = 0
    	a[125] = 0
    	a[126] = 0
    	a[127] = 0
    	a[128] = 0
    	a[129] = 0
    	a[130] = 0
    	a[131] = 0
    	a[132] = 0
    	a[133] = 0
    	a[134] = 0
    	a[135] = 0
    	a[136] = 0
    	a[137] = 0
    	a[138] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_import_toolchain.txt

    ! go get -v .
    stderr '^go: example.net/b@v0.1.0: module ./b1 requires go >= 1.22.0 \(running go 1.21.0; GOTOOLCHAIN=local\)$'
    env GOTOOLCHAIN=auto
    go get -v .
    cmp stderr get-v-stderr.want
    cmp go.mod go.mod.tidy
    
    cp go.mod.orig go.mod
    env GOTOOLCHAIN=local
    ! go get -u -v .
    stderr '^go: example.net/a@v0.2.0: module ./a2 requires go >= 1.22.0 \(running go 1.21.0; GOTOOLCHAIN=local\)$'
    env GOTOOLCHAIN=auto
    go get -u -v .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/gover_test.go

    var isValidTests = []testCase1[string, bool]{
    	{"1.2rc3", true},
    	{"1.2.3", true},
    	{"1.999testmod", true},
    	{"1.600+auto", false},
    	{"1.22", true},
    	{"1.21.0", true},
    	{"1.21rc2", true},
    	{"1.21", true},
    	{"1.20.0", true},
    	{"1.20", true},
    	{"1.19", true},
    	{"1.3", true},
    	{"1.2", true},
    	{"1", true},
    }
    
    type testCase1[In, Out any] struct {
    	in  In
    	out Out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/internal/gover/gover_test.go

    var isValidTests = []testCase1[string, bool]{
    	{"1.2rc3", true},
    	{"1.2.3", true},
    	{"1.999testmod", true},
    	{"1.600+auto", false},
    	{"1.22", true},
    	{"1.21.0", true},
    	{"1.21rc2", true},
    	{"1.21", true},
    	{"1.20.0", true},
    	{"1.20", true},
    	{"1.19", true},
    	{"1.3", true},
    	{"1.2", true},
    	{"1", true},
    }
    
    type testCase1[In, Out any] struct {
    	in  In
    	out Out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

          } : (tensor<*xi32>, tensor<*xf32>, tensor<*xi32>, tensor<*xf32>, tensor<*xi32>,
                 tensor<*xf32>, tensor<*xi32>) -> tensor<*xf32>
        %i8_min = "tf.Const"() {value = dense<-128.0> : tensor<f32>} : () -> tensor<f32>
        %i8_max = "tf.Const"() {value = dense<127.0> : tensor<f32>} : () -> tensor<f32>
    
        %clamp_max = "tf.Maximum"(%rescale, %i8_min) : (tensor<*xf32>, tensor<f32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library_tf_drq.mlir

        %round = "tf.Floor"(%add) : (tensor<*xf32>) -> tensor<*xf32>
    
        %i8_min = "tf.Const"() {value = dense<-128.0> : tensor<f32>} : () -> tensor<f32>
        %i8_max = "tf.Const"() {value = dense<127.0> : tensor<f32>} : () -> tensor<f32>
        %clip = "tf.ClipByValue"(%round, %i8_min, %i8_max) : (tensor<*xf32>, tensor<f32>, tensor<f32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 15:43:38 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_DELETEWO                        = 0x4B9 // 1209
    	SYS_DELETEWORKUNIT                  = 0x4B9 // 1209
    	SYS_QUERYMET                        = 0x4BA // 1210
    	SYS_QUERYMETRICS                    = 0x4BA // 1210
    	SYS_QUERYSCH                        = 0x4BB // 1211
    	SYS_QUERYSCHENV                     = 0x4BB // 1211
    	SYS_CHECKSCH                        = 0x4BC // 1212
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/s390x.s

    	CMPBGE	R2, R3, 0(PC)          // ec230000a064
    
    	CMPBNE	R1, $-127, 0(PC)       // ec170000817c
    	CMPBEQ	R3, $0, 0(PC)          // ec380000007c
    	CMPBLT	R5, $128, 0(PC)        // ec540000807c
    	CMPBLE	R7, $127, 0(PC)        // ec7c00007f7c
    	CMPBGT	R9, $0, 0(PC)          // ec920000007c
    	CMPBGE	R2, $128, 0(PC)        // ec2a0000807c
    
    	CMPUBNE	R1, R2, 0(PC)          // ec1200007065
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. manifests/helm-profiles/compatibility-version-1.20.yaml

    Leonardo Sarra <******@****.***> 1717533426 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:37:06 UTC 2024
    - 534 bytes
    - Viewed (0)
Back to top