Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 23e1 (0.04 sec)

  1. src/encoding/json/decode_test.go

    	tests := []struct {
    		CaseName
    		in       string
    		i        int64
    		intErr   string
    		f        float64
    		floatErr string
    	}{
    		{CaseName: Name(""), in: "-1.23e1", intErr: "strconv.ParseInt: parsing \"-1.23e1\": invalid syntax", f: -1.23e1},
    		{CaseName: Name(""), in: "-12", i: -12, f: -12.0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/math/big/float_test.go

    		}
    	}
    }
    
    func TestFloatIsInt(t *testing.T) {
    	for _, test := range []string{
    		"0 int",
    		"-0 int",
    		"1 int",
    		"-1 int",
    		"0.5",
    		"1.23",
    		"1.23e1",
    		"1.23e2 int",
    		"0.000000001e+8",
    		"0.000000001e+9 int",
    		"1.2345e200 int",
    		"Inf",
    		"+Inf",
    		"-Inf",
    	} {
    		s := strings.TrimSuffix(test, " int")
    		want := s != test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  3. gradle/verification-metadata.xml

                <pgp value="7C669810892CBD3148FA92995B05CCDE140C2876"/>
             </artifact>
          </component>
          <component group="org.freemarker" name="freemarker" version="2.3.31">
             <artifact name="freemarker-2.3.31.jar">
                <pgp value="13AC2213964ABE1D1C147C0E1939A2520BAB1D90"/>
             </artifact>
          </component>
          <component group="org.fusesource.jansi" name="jansi" version="1.18">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    c0.18-0.273,0.776-0.884,0.787-0.894c0.901-0.905,2.117-1.408,3.416-1.408c1.285,0,2.5,0.501,3.412,1.408 c0.914,0.914,1.408,2.122,1.408,3.405c0,1.288-0.508,2.496-1.408,3.405c-0.9,0.896-2.152,1.406-3.438,1.406 c-0.877,0-1.711-0.229-2.433-0.671v-4.158c0-0.553,0.237-1.151,0.643-1.614c0.462-0.519,1.094-0.799,1.782-0.799 c0.664,0,1.293,0.253,1.758,0.715c0.459,0.459,0.709,1.071,0.709,1.723c0,1.385-1.094,2.468-2.488,2.468 c-0.273,0-0.769-0.121-0.781-0.125c-0.281-0.087-0.405,0.306-0.438,0.436c-0.159,0.496,0.079,0.585,0.123,0.607...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

    func.func @FoldTrivialReshapeIntoTranspose(%arg: tensor<2x1x3x3xf32>) -> tensor<1x3x3x2xf32> {
      %cst = arith.constant dense<[1, 3, 3, 2]> : tensor<4xi32>
      %cst_2 = arith.constant dense<[2, 3, 0, 1]> : tensor<4xi32>
      %2 = "tf.Transpose"(%arg, %cst_2) : (tensor<2x1x3x3xf32>, tensor<4xi32>) -> tensor<3x3x2x1xf32>
      %3 = "tf.Reshape"(%2, %cst) : (tensor<3x3x2x1xf32>, tensor<4xi32>) -> tensor<1x3x3x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            depEjbClient.scope == MavenScope.Compile
            hasDependencyArtifact(depEjbClient, 'artifact-two', 'ejb-client', 'jar', 'client')
        }
    
        @Issue("GRADLE-2371")
        def "can declare multiple dependencies with same artifact ID and group ID but different type and classifier and scope"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  7. src/os/os_test.go

    		// Issue 21681, Windows 4G-1, etc:
    		{1<<32 - 1, io.SeekStart, 1<<32 - 1},
    		{0, io.SeekCurrent, 1<<32 - 1},
    		{2<<32 - 1, io.SeekStart, 2<<32 - 1},
    		{0, io.SeekCurrent, 2<<32 - 1},
    	}
    	for i, tt := range tests {
    		off, err := f.Seek(tt.in, tt.whence)
    		if off != tt.out || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top