Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 664 for 10x10 (0.11 sec)

  1. src/math/big/intconv_test.go

    	{"10", "10", 16, 16, true},
    	{"-10", "-10", 16, -16, true},
    	{"+10", "10", 16, 16, true},
    	{"0b10", "2", 0, 2, true},
    	{"0o10", "8", 0, 8, true},
    	{"0x10", "16", 0, 16, true},
    	{in: "0x10", base: 16},
    	{"-0x10", "-16", 0, -16, true},
    	{"+0x10", "16", 0, 16, true},
    	{"00", "0", 0, 0, true},
    	{"0", "0", 8, 0, true},
    	{"07", "7", 0, 7, true},
    	{"7", "7", 8, 7, true},
    	{"023", "19", 0, 19, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

        </dependency>
      </dependencies>
      <scm>
        <connection>scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10</connection>
        <developerConnection>scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10</developerConnection>
        <url>http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-1.0.10</url>
      </scm>
      <organization>
        <name>Codehaus</name>
        <url>http://www.codehaus.org/</url>
      </organization>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

        </dependency>
      </dependencies>
      <scm>
        <connection>scm:svn:http://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10</connection>
        <developerConnection>scm:svn:https://svn.codehaus.org/plexus/pom/tags/plexus-1.0.10</developerConnection>
        <url>http://fisheye.codehaus.org/browse/plexus/pom/tags/plexus-1.0.10</url>
      </scm>
      <organization>
        <name>Codehaus</name>
        <url>http://www.codehaus.org/</url>
      </organization>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

      } : (
        tensor<10x10x!tf_type.qint32>, tensor<10x10x!tf_type.qint32>, tensor<f32>,
        tensor<i32>, tensor<f32>, tensor<i32>, tensor<f32>, tensor<i32>
      ) -> tensor<10x10x!tf_type.qint32>
      %1 = "tf.Cast"(%0) {} : (tensor<10x10x!tf_type.qint32>) ->  tensor<10x10xi32>
      return %1 : tensor<10x10xi32>
    })mlir";
      TF_ASSERT_OK_AND_ASSIGN(auto lhs, CreateRandomI32Literal({10, 10}));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/BaselineVersionTest.groovy

        }
    
        def "does not consider changes with less then 10 milliseconds as significant"() {
            baseline.results.addAll([millis(100)] * 10)
            current.results.addAll([millis(105)] * 10)
            def confidence = calculateConfidence(baseline, current)
            def minConfidence = confidence - 0.01
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/ExactVersionSelectorTest.groovy

            expect:
            !accept("1.0", "1_0")
            !accept("1_0", "1-0")
            !accept("1-0", "1+0")
            !accept("1.a.2", "1a2")
        }
    
        def "does not accept candidate version that has different number of trailing .0's"() {
            expect:
            !accept("1.0.0", "1.0")
            !accept("1", "1.0.0")
        }
    
        def "does not accept candidate version that has different capitalization"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            "1.0-snapshot" | "1.0"
    
            "1.0-final"    | "1.0-ga"
            "1.0-final"    | "1.0-release"
            "1.0-final"    | "1.0-sp"
            "1.0-final"    | "1.0"
    
            "1.0-ga"       | "1.0-release"
            "1.0-ga"       | "1.0-sp"
            "1.0-ga"       | "1.0-"
    
            "1.0-release"  | "1.0-sp"
            "1.0-release"  | "1.0"
    
            "1.0-sp"       | "1.0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom.sha1

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 40 bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/literals.go

    	assert(0x.1p-0 == 1./16)
    	assert(0X.deadcafep4 == 1.0*0xdeadcafe/0x10000000)
    	assert(0x.1234P+12 == 1.0*0x1234/0x10)
    
    	assert(0x0p0 == 0.)
    	assert(0Xdeadcafep+1 == 0x1bd5b95fc)
    	assert(0x1234P-10 == 0x1234/1024.0)
    
    	assert(0x0.0p0 == 0.)
    	assert(0Xdead.cafep+1 == 1.0*0x1bd5b95fc/0x10000)
    	assert(0x12.34P-10 == 1.0*0x1234/0x40000)
    
    	assert(0Xdead_cafep+1 == 0xdeadcafep+1)
    	assert(0x_1234P-10 == 0x1234p-10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/amount_test.go

    		{int64Amount{value: 100, scale: -1}, 1000, int64Amount{value: 100000, scale: -1}, true},
    		{int64Amount{value: 1, scale: 100}, 10, int64Amount{value: 1, scale: 100}, false},
    		{int64Amount{value: 1, scale: -100}, 10, int64Amount{value: 1, scale: -100}, false},
    		{int64Amount{value: -5, scale: 2}, 500, int64Amount{value: -2500, scale: 2}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 20:54:15 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top