Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for defUse (0.1 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. src/html/template/escape_test.go

    		},
    		{
    			`<div{{template "y"}}>` +
    				// Illegal starting in stateTag but not in stateText.
    				`{{define "y"}} foo<b{{end}}`,
    			`"<" in attribute name: " foo<b"`,
    		},
    		{
    			`<script>reverseList = [{{template "t"}}]</script>` +
    				// Missing " after recursive call.
    				`{{define "t"}}{{if .Tail}}{{template "t" .Tail}}{{end}}{{.Head}}",{{end}}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/c/kernels_test.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
    #define EIGEN_USE_GPU
    #endif
    
    #include "tensorflow/c/kernels.h"
    
    #include <stddef.h>
    #include <stdint.h>
    #include <string.h>
    
    #include <memory>
    #include <string>
    #include <utility>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                path 'databind:2.9.4 -> annotations:2.9.0' // intentional!
                path 'kt:2.9.4.1 -> databind:2.9.4'
                'org:annotations:2.9.0'()
                'org:annotations:2.9.4'()
    
                // define "real" platforms, as published modules.
                // The platforms are supposed to declare _in extenso_ what modules
                // they include, by constraints
                'org:platform' {
                    '2.7.9' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "uses dependency management section from imported POM in active profile to define defaults for main POM body dependency"() {
            given:
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top