Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 663 for toGetter (0.12 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/BUILD

        data = [":test_utilities"],
        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-mlir-translate",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 903 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/bridge/BUILD

            "no_pip",
        ],
        driver = "//tensorflow/compiler/mlir/quantization/stablehlo:run_lit.sh",
        size_override = {
        },
        tags_override = {
        },
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:stablehlo-quant-opt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 23 17:01:13 UTC 2023
    - 987 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/BUILD

            "legalize-tf.mlir": ["no_rocm"],
            "optimize.mlir": ["no_rocm"],
            "prepare-tf.mlir": ["no_rocm"],
            "const-fold.mlir": ["no_mac_arm64"],
        },
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir:tf-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9510.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build cgo && !((ppc64 || ppc64le) && internal)
    
    // Test that we can link together two different cgo packages that both
    // use the same libgcc function.
    
    package cgotest
    
    import (
    	"runtime"
    	"testing"
    
    	"cmd/cgo/internal/test/issue9510a"
    	"cmd/cgo/internal/test/issue9510b"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 606 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/BUILD

        # copybara:comment_end
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        size_override = {
            "fallback.mlir": "medium",
        },
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/tfrt:tf-tfrt-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. test/chan/goroutines.go

    // Copyright 2009 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.
    
    // Torture test for goroutines.
    // Make a lot of goroutines, threaded together, and tear them down cleanly.
    
    package main
    
    import (
    	"os"
    	"strconv"
    )
    
    func f(left, right chan int) {
    	left <- <-right
    }
    
    func main() {
    	var n = 10000
    	if len(os.Args) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:44:02 UTC 2012
    - 743 bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/DefaultClassPathTest.groovy

        }
    
        def "can add classpaths together"() {
            def file1 = new File("a.jar")
            def file2 = new File("b.jar")
            def cp1 = DefaultClassPath.of(file1)
            def cp2 = DefaultClassPath.of(file2)
    
            expect:
            def cp3 = cp1 + cp2
            cp3.asFiles == [file1, file2]
        }
    
        def "removes duplicates when added together"() {
            def file1 = new File("a.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1/types.go

    	// type of limit. The qps and burst fields are used together to determine if
    	// a particular event query is accepted. The qps determines how many queries
    	// are accepted once the burst amount of queries has been exhausted.
    	QPS int32 `json:"qps"`
    
    	// burst is the burst number of event queries that are allowed for this type
    	// of limit. The qps and burst fields are used together to determine if a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  9. src/log/slog/example_logvaluer_group_test.go

    package slog_test
    
    import "log/slog"
    
    type Name struct {
    	First, Last string
    }
    
    // LogValue implements slog.LogValuer.
    // It returns a group containing the fields of
    // the Name, so that they appear together in the log output.
    func (n Name) LogValue() slog.Value {
    	return slog.GroupValue(
    		slog.String("first", n.First),
    		slog.String("last", n.Last))
    }
    
    func ExampleLogValuer_group() {
    	n := Name{"Perry", "Platypus"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 825 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/ir/BUILD

        driver = "//tensorflow/compiler/mlir:run_lit.sh",
        exclude = ["testdata/**"],
        features = if_oss(["--path=org_tensorflow/tensorflow/compiler/mlir/tfrt"]),
        test_file_exts = ["mlir"],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
        testonly = True,
        data = [
            "//tensorflow/compiler/mlir/tfrt:tf-tfrt-opt",
            "@llvm-project//llvm:FileCheck",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top