Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,485 for corerest (0.15 sec)

  1. tensorflow/compiler/mlir/lite/metrics/BUILD

            "testdata/strided_slice.mlir",
        ],
        deps = [
            ":error_collector",
            ":error_collector_inst",
            ":types_util",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/core:test",
            "//tensorflow/core/platform:errors",
            "//tensorflow/core/platform:resource_loader",
            "//tensorflow/lite/python/metrics:converter_error_data_proto_cc",
            "@com_google_absl//absl/status:statusor",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/run_set_executable_name.txt

    env GO111MODULE=on
    [short] skip
    
    # Check for correct naming of temporary executable
    
    #Test for single file specified
    cd x/y/z
    go run foo.go
    stderr 'foo'
    
    #Test for current directory
    go run .
    stderr 'z'
    
    #Test for set path
    go run m/x/y/z/
    stderr 'z'
    
    -- m/x/y/z/foo.go --
    package main
    import(
    	"os"
    	"path/filepath"
    )
    func main() {
    	println(filepath.Base(os.Args[0]))
    }
    
    -- x/y/z/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 627 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue48619.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f[P any](a, _ P) {
    	var x int
    	// TODO(gri) these error messages, while correct, could be better
    	f(a, x /* ERROR "type int of x does not match inferred type P for P" */)
    	f(x, a /* ERROR "type P of a does not match inferred type int for P" */)
    }
    
    func g[P any](a, b P) {
    	g(a, b)
    	g(&a, &b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 575 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/launch_to_device_attribute_legacy.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-launch-to-device-attribute=legacy-graph-export=true | FileCheck %s
    
    
    // Tests single TensorFlow op is hoisted out and has the correct device assigned
    // by parent `tf_device.launch`.
    // CHECK-LABEL: func @single_op_launch
    func.func @single_op_launch() {
      tf_executor.graph {
        %0:5 = tf_executor.island {
          %a = "tf.opA"() : () -> tensor<i1>
          %launch:2 = "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 21 20:14:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. tests/connection_test.go

    		}
    		return nil
    	})
    	if err != nil {
    		t.Errorf(fmt.Sprintf("WithSingleConnection should work, but got err %v", err))
    	}
    
    	if actualName != expectedName {
    		t.Errorf("WithSingleConnection() method should get correct value, expect: %v, got %v", expectedName, actualName)
    	}
    }
    
    func getSetSQL(driverName string) (string, string) {
    	switch driverName {
    	case mysql.Dialector{}.Name():
    		return "SET @testName := ?", "SELECT @testName"
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 28 14:16:42 UTC 2022
    - 963 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testso/testdata/so/cgoso.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cgosotest
    
    /*
    // intentionally write the same LDFLAGS differently
    // to test correct handling of LDFLAGS.
    #cgo linux LDFLAGS: -L. -lcgosotest
    #cgo dragonfly LDFLAGS: -L. -l cgosotest
    #cgo freebsd LDFLAGS: -L. -l cgosotest
    #cgo openbsd LDFLAGS: -L. -l cgosotest
    #cgo solaris LDFLAGS: -L. -lcgosotest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:41 UTC 2023
    - 761 bytes
    - Viewed (0)
  7. test/fixedbugs/issue30709.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check closure in const declaration group can be compiled
    // and set correct value
    
    package main
    
    import "unsafe"
    
    const (
    	x = unsafe.Sizeof(func() {})
    	y
    )
    
    func main() {
    	const (
    		z = unsafe.Sizeof(func() {})
    		t
    	)
    
    	// x and y must be equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:07:42 UTC 2019
    - 550 bytes
    - Viewed (0)
  8. test/const8.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that identifiers in implicit (omitted) RHS
    // expressions of constant declarations are resolved
    // in the correct context; see issues #49157, #53585.
    
    package main
    
    const X = 2
    
    func main() {
    	const (
    		A    = iota // 0
    		iota = iota // 1
    		B           // 1 (iota is declared locally on prev. line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 18:11:31 UTC 2022
    - 727 bytes
    - Viewed (0)
  9. test/abi/defer_recover_results.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that when a function recovers from a panic, it
    // returns the correct results to the caller (in particular,
    // setting the result registers correctly).
    
    package main
    
    type S struct {
    	x uint8
    	y uint16
    	z uint32
    	w float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 06 20:22:15 UTC 2021
    - 800 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            when:
            strictParser.parseNotation(notation)
    
            then:
            InvalidUserDataException ex = thrown()
            ex.message == "Invalid format for capability: '$notation'. The correct notation is a 3-part group:name:version notation, e.g: 'org.group:capability:1.0'"
    
            where:
            notation << [
                    "foo:bar",
                    "foo:bar:",
                    "foo::1.0",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top