Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 302 for 1e20 (0.03 sec)

  1. test/abi/s_sif_sif.go

    	a int8
    	x float64
    }
    
    type T struct {
    	d, e P
    }
    
    //go:registerparams
    //go:noinline
    func G(t T) float64 {
    	return float64(t.d.a+t.e.a) + t.d.x + t.e.x
    }
    
    func main() {
    	x := G(T{P{10, 20}, P{30, 40}})
    	if x != 100.0 {
    		fmt.Printf("FAIL, Expected 100, got %f\n", x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 651 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/mlir2graph/convert_tensor.mlir

    // CHECK: node {
    // CHECK-NEXT: name: "const1"
    // CHECK-NEXT: op: "Const"
    // CHECK: dtype: DT_HALF
    // CHECK: half_val: 15360
        %1:2 = tf_executor.island wraps "tf.Const"() {device = "", dtype = "tfdtype$DT_HALF", value = dense<[1.0, 2.0]> : tensor<2xf16>} : () -> tensor<2xf16> loc("const2")
    // CHECK: name: "const2"
    // CHECK-NEXT: op: "Const"
    // CHECK: dtype: DT_HALF
    // CHECK: half_val: 15360
    // CHECK-NEXT: half_val: 16384
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 23:11:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

            repoModule.rootMetaData.versions == ["1.0", "2.0"]
            repoModule.rootMetaData.releaseVersion == "2.0"
            repoModule.rootMetaData.latestVersion == "2.0"
    
            and:
            localModule.rootMetaData.groupId == "group"
            localModule.rootMetaData.artifactId == "root"
            localModule.rootMetaData.versions == ["1.0", "2.0"]
            localModule.rootMetaData.releaseVersion == "2.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/bigstack_windows.c

    #ifndef STACK_SIZE_PARAM_IS_A_RESERVATION
    #define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
    #endif
    
    typedef void callback(char*);
    
    // Allocate a stack that's much larger than the default.
    static const int STACK_SIZE = 16<<20;
    
    static callback *bigStackCallback;
    
    static void useStack(int bytes) {
    	// Windows doesn't like huge frames, so we grow the stack 64k at a time.
    	char x[64<<10];
    	if (bytes < sizeof x) {
    		bigStackCallback(x);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 15:18:26 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        | org.gradle.usage           | java-runtime |           |
       Selection reasons:
          - Forced
          - By constraint
    
    org:leaf:1.0 -> 2.0
    \\--- org:foo:1.0
         \\--- conf
    
    org:leaf:1.4 -> 2.0
    \\--- conf
    """
        }
    
        def "shows decent failure when inputs missing"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. src/crypto/internal/alias/alias_test.go

    	{a[:51], a[50:], true, true},
    	{a[:], a[:], true, false},
    	{a[:50], a[:60], true, false},
    	{a[:], nil, false, false},
    	{nil, nil, false, false},
    	{a[:], a[:0], false, false},
    	{a[:10], a[:10:20], true, false},
    	{a[:10], a[5:10:20], true, true},
    }
    
    func testAliasing(t *testing.T, i int, x, y []byte, anyOverlap, inexactOverlap bool) {
    	any := AnyOverlap(x, y)
    	if any != anyOverlap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 18:46:05 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. go.work

    // This is a generated file. Do not edit directly.
    
    go 1.22.0
    
    use (
    	.
    	./staging/src/k8s.io/api
    	./staging/src/k8s.io/apiextensions-apiserver
    	./staging/src/k8s.io/apimachinery
    	./staging/src/k8s.io/apiserver
    	./staging/src/k8s.io/cli-runtime
    	./staging/src/k8s.io/client-go
    	./staging/src/k8s.io/cloud-provider
    	./staging/src/k8s.io/cluster-bootstrap
    	./staging/src/k8s.io/code-generator
    	./staging/src/k8s.io/component-base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/typeconversion/TimeUnitsParserTest.groovy

            unit.value == normalizedValue
            unit.timeUnit == parsed
    
            where:
            value           |input          |parsed         | normalizedValue
            10              |'nanoseconds'  |NANOSECONDS    |10
            20              |'mILLISECONds' |MILLISECONDS   |20
            1               |'days'         |MILLISECONDS   |1 * 24 * 60 * 60 * 1000
            2               |'hours'        |MILLISECONDS   |2 * 60 * 60 * 1000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 11 02:41:37 UTC 2013
    - 1.7K bytes
    - Viewed (0)
  9. manifests/charts/default/files/profile-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
    - 753 bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/files/profile-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
    - 753 bytes
    - Viewed (0)
Back to top