Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for src1 (0.36 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            ["src1", "src2"]| _             | _                 | "from() after convention honors it"           | { it.convention("src1"); it.from("src2") }
            ["src2"]        | _             | _                 | "from() before convention prevents it"        | { it.from("src2"); it.convention("src1") }
            ["src1", "src2"]| _             | ["src1"]          | "from() commits convention"                   | { it.from("src2"); it.unsetConvention() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    	// test case for a one-line error
    	const src1 = `
    package p
    var _ T
    `
    	_, err := typecheck(src1, &conf, nil)
    	if err == nil || !strings.HasSuffix(err.Error(), " [go.dev/e/UndeclaredName]") {
    		t.Errorf("src1: unexpected error: got %v", err)
    	}
    
    	// test case for a multi-line error
    	const src2 = `
    package p
    func f() int { return 0 }
    var _ = f(1, 2)
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    	// test case for a one-line error
    	const src1 = `
    package p
    var _ T
    `
    	_, err := typecheck(src1, &conf, nil)
    	if err == nil || !strings.HasSuffix(err.Error(), " [go.dev/e/UndeclaredName]") {
    		t.Errorf("src1: unexpected error: got %v", err)
    	}
    
    	// test case for a multi-line error
    	const src2 = `
    package p
    func f() int { return 0 }
    var _ = f(1, 2)
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/BUILD

        ],
        deps = [":flags_headers"],
    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "size_utils",
        srcs = [
            "utils/size_utils.cc",
        ],
        hdrs = [
            "utils/size_utils.h",
        ],
        deps = [
            "@llvm-project//mlir:IR",
        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        srcs.push_back(src_arg.first);
      }
      ReverseDFSFrom(
          graph, srcs, /*enter=*/nullptr,
          /*leave=*/[&guaranteed_const_nodes](const Node* n) {
            // TODO(vinuraja): Doesn't work in the presence of loops.
            if (AreAllParentsGuaranteedConst(*n, guaranteed_const_nodes)) {
              guaranteed_const_nodes.insert(n);
            }
          });
    
      for (auto& src_arg : src_arg_pairs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    		// Leading src fragment.
    		src = subtractb(src, (off+7)/8)
    		if frag := off & 7; frag != 0 {
    			bits |= uintptr(*src) >> (8 - frag) << nbits
    			src = add1(src)
    			nbits += frag
    			c -= frag
    		}
    		// Main loop: load one byte, write another.
    		// The bits are rotating through the bit buffer.
    		for i := c / 8; i > 0; i-- {
    			bits |= uintptr(*src) << nbits
    			src = add1(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                configurations { compile }
                dependencies { compile files('a.jar') }
                task copy {
                    doLast {
                        copy {
                            from files('src2') + fileTree('src') { exclude '**/ignore/**' } + configurations.compile
                            into 'dest'
                            include { fte -> fte.relativePath.segments.length < 3 && (fte.file.directory || fte.file.name.contains('a')) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top