Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 118 for defUse (0.4 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    // refreshes.
    //
    // This file includes another file, `tf_generated_ops.td`, which contains
    // all ops whose definitions are generated from TensorFlow codebase.
    // Changes made there are not respected.
    
    #ifndef TF_OPS
    #define TF_OPS
    
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "mlir/Interfaces/CallInterfaces.td"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    		}
    		t.Errorf("expected myError; got %s", err)
    	}
    }
    
    const execErrorText = `line 1
    line 2
    line 3
    {{template "one" .}}
    {{define "one"}}{{template "two" .}}{{end}}
    {{define "two"}}{{template "three" .}}{{end}}
    {{define "three"}}{{index "hi" $}}{{end}}`
    
    // Check that an error from a nested template contains all the relevant information.
    func TestExecError(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/fileTrees/kotlin",files="build.gradle.kts[tags=define]"]
    include::sample[dir="snippets/files/fileTrees/groovy",files="build.gradle[tags=define]"]
    ====
    
    You can see more examples of supported patterns in the API docs for link:{javadocPath}/org/gradle/api/tasks/util/PatternFilterable.html[PatternFilterable].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		"-D", "GOARCH_" + goarch,
    		"-D", "GOOS_GOARCH_" + goos + "_" + goarch,
    		"-p", pkg,
    	}
    	if goarch == "mips" || goarch == "mipsle" {
    		// Define GOMIPS_value from gomips.
    		asmArgs = append(asmArgs, "-D", "GOMIPS_"+gomips)
    	}
    	if goarch == "mips64" || goarch == "mips64le" {
    		// Define GOMIPS64_value from gomips64.
    		asmArgs = append(asmArgs, "-D", "GOMIPS64_"+gomips64)
    	}
    	if goarch == "ppc64" || goarch == "ppc64le" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/BUILD

                "ir/tfl_ops_interface.h.inc",
            ),
            (
                ["-gen-op-interface-defs"],
                "ir/tfl_ops_interface.cc.inc",
            ),
            (
                ["-gen-dialect-decls"],
                "ir/tfl_ops_dialect.h.inc",
            ),
            (
                ["-gen-dialect-defs"],
                "ir/tfl_ops_dialect.cc.inc",
            ),
        ],
    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. src/text/template/exec_test.go

    		}
    		t.Errorf("expected myError; got %s", err)
    	}
    }
    
    const execErrorText = `line 1
    line 2
    line 3
    {{template "one" .}}
    {{define "one"}}{{template "two" .}}{{end}}
    {{define "two"}}{{template "three" .}}{{end}}
    {{define "three"}}{{index "hi" $}}{{end}}`
    
    // Check that an error from a nested template contains all the relevant information.
    func TestExecError(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/BUILD

    package_group(
        name = "friends",
        includes = [
            "//tensorflow/compiler/tf2xla:friends",
        ],
    )
    
    # defs.cc/h only contains string constants, and can be included in mobile
    # builds.
    filegroup(
        name = "mobile_srcs_no_runtime",
        srcs = [
            "defs.cc",
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Target that bundles up the XLA CPU and GPU JIT devices.
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    				t.Fatalf("found %d identifiers named %s, want 1", got, test.name)
    			}
    			ident := idents[test.name][0]
    			def := info.Defs[ident]
    			if def == test.obj {
    				t.Fatalf("info.Defs[%s] contains the test object", test.name)
    			}
    			if orig := originObject(test.obj); def != orig {
    				t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
    			}
    			if def.Pkg() != test.obj.Pkg() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    				t.Fatalf("found %d identifiers named %s, want 1", got, test.name)
    			}
    			ident := idents[test.name][0]
    			def := info.Defs[ident]
    			if def == test.obj {
    				t.Fatalf("info.Defs[%s] contains the test object", test.name)
    			}
    			if orig := originObject(test.obj); def != orig {
    				t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
    			}
    			if def.Pkg() != test.obj.Pkg() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/runtime/mgcscavenge.go

    // during memory allocation) further ensures that chunks it identifies as "dense" are
    // immediately eligible for being backed by huge pages. Note that for the most part these
    // density heuristics are best-effort heuristics. It's totally possible (but unlikely)
    // that a chunk that just became dense is scavenged in the case of a race between memory
    // allocation and scavenging.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top