Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 135 for t2_test (0.12 sec)

  1. src/cmd/go/testdata/script/mod_all.txt

    package t
    
    import _ "example.com/u"
    -- t/t_test.go --
    package t_test
    
    import _ "example.com/w"
    -- u/go.mod --
    module example.com/u
    
    go 1.15
    -- u/u.go --
    package u
    -- u/u_test.go --
    package u_test
    -- w/go.mod --
    module example.com/w
    
    go 1.15
    
    require example.com/x v0.1.0
    -- w/w.go --
    package w
    -- w/w_test.go --
    package w_test
    
    import _ "example.com/x"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    load(
        "//tensorflow:tensorflow.bzl",
        "if_not_windows",
        "lrt_if_needed",
        "tf_cc_binary",
        "tf_copts",
    )
    load(
        "//tensorflow/core/platform:rules_cc.bzl",
        "cc_test",
    )
    
    def tf_gen_op_wrappers_fuzz(
            name,
            op_def_src,
            api_def_srcs = [],
            kernel_deps = []):
        """
        Generates fuzzers for several groups of ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_dep_loop.txt

    stdout 'coverage: 100.0% of statements' # expect 100.0% coverage
    
    -- go.mod --
    module coverdep2
    
    go 1.16
    -- p1/p.go --
    package p1
    
    func F() int { return 1 }
    -- p1/p_test.go --
    package p1_test
    
    import (
    	"coverdep2/p2"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	p2.F()
    }
    -- p2/p2.go --
    package p2
    
    import "coverdep2/p1"
    
    func F() {
    	p1.F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 550 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_vet.txt

    package p1
    
    import "fmt"
    
    func F() {
    	fmt.Printf("%d", "hello") // causes vet error
    }
    -- vetfail/p2/p2.go --
    package p2
    
    import _ "m/vetfail/p1"
    
    func F() {
    }
    -- vetfail/p2/p2_test.go --
    package p2
    
    import "testing"
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/fuzzer_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v2_test
    
    import (
    	"reflect"
    	"testing"
    
    	v2 "k8s.io/api/apidiscovery/v2"
    	v2beta1 "k8s.io/api/apidiscovery/v2beta1"
    	v2scheme "k8s.io/apiserver/pkg/apis/apidiscovery/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    } CU_Test;
    typedef CU_Test* CU_pTest;    /**< Pointer to a CUnit test case. */
    
    /*-----------------------------------------------------------------
     *  CU_Suite, CU_pSuite
     *-----------------------------------------------------------------*/
    /** CUnit suite data type.
     *  CU_Suite is a linked list of CU_Test containers.  Each suite has 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/io/fs/example_test.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.
    
    package fs_test
    
    import (
    	"fmt"
    	"io/fs"
    	"log"
    	"os"
    )
    
    func ExampleWalkDir() {
    	root := "/usr/local/go/bin"
    	fileSystem := os.DirFS(root)
    
    	fs.WalkDir(fileSystem, ".", func(path string, d fs.DirEntry, err error) error {
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 03:21:56 UTC 2021
    - 462 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_pgo_auto.txt

    go install -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go run -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    go test -a -n -pgo=auto ./a/a1
    stderr 'compile.*-pgoprofile=.*a1.go.*a1_test.go'
    stderr 'compile.*-pgoprofile=.*external_test.go'
    
    # go list commands should succeed as usual
    go list -pgo=auto ./a/a1
    
    go list -test -pgo=auto ./a/a1
    
    go list -deps -pgo=auto ./a/a1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf_mlir_opt_main.cc

      mlir::tosa::registerLegalizeTosaPasses();
      mlir::tosa::registerTFtoTOSALegalizationPipeline();
      mlir::tosa::registerTFLtoTOSALegalizationPipeline();
      mlir::tosa::registerTFTFLtoTOSALegalizationPipeline();
      mlir::tf_test::registerTensorFlowTestPasses();
      mlir::xla_framework::registerXlaFrameworkPasses();
      tensorflow::RegisterConvertMlirToXlaHloPipelineWithDefaults();
      tensorflow::RegisterGraphOptimizationPasses();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_import_error_stack.txt

    -- testdep/go.mod --
    module testdep
    
    go 1.16
    -- testdep/p1/p1.go --
    package p1
    -- testdep/p1/p1_test.go --
    package p1
    
    import _ "testdep/p2"
    -- testdep/p2/p2.go --
    package p2
    
    import _ "testdep/p3"
    -- testdep/p3/p3.go --
    // +build ignore
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 997 bytes
    - Viewed (0)
Back to top