Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for ccompile (0.52 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            buildFile << """
    repositories {
        maven { url "${mavenRepo.uri}" }
    }
    configurations {
        compile
    }
    dependencies {
        compile 'org:parent:1'
        compile 'org:child:2'
        compile 'org:dep:2'
    }
    """
            resolve.prepare()
    
            when:
            run("checkDeps")
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    		// resolve the reference from the C wrapper to the Go
    		// wrapper.
    		fmt.Fprintf(fgo2, "//go:cgo_export_static _cgoexp%s_%s\n", cPrefix, exp.ExpName)
    
    		// Build the wrapper function compiled by cmd/compile.
    		// This unpacks the argument struct above and calls the Go function.
    		fmt.Fprintf(fgo2, "func _cgoexp%s_%s(a *%s) {\n", cPrefix, exp.ExpName, gotype)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```mlir
      %input = "tf.IteratorGetNext"(...) {device = "/CPU:0"}
      %compile:2 = "tf._TPUCompileMlir"(...)
      %get_layout = "tf.TPUGetLayoutOp"(%compile#1) {...}
      %copy_to_device = "tf.TPUCopyWithLayout"(%input, %get_layout)
          {device = "/TPU:0"}
      %execute = "tf.TPUExecute"(%copy_to_device, ..., %compile#1)
          {device = "/TPU:0"}
    ```
    
    This way, %compile will determine the layout, which will be respected by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:error_util",
            "//tensorflow/compiler/mlir/tensorflow:mlir_import_options",
            "//tensorflow/compiler/mlir/tensorflow:mlir_roundtrip_flags",
            "//tensorflow/compiler/mlir/tensorflow:tf_dialect_lib",
            "//tensorflow/compiler/mlir/tensorflow:translate_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    		if d.ldr.IsFileLocal(idx) {
    			continue
    		}
    
    		// Find compiler-generated DWARF info sym for global in question,
    		// and tack it onto the appropriate unit.  Note that there are
    		// circumstances under which we can't find the compiler-generated
    		// symbol-- this typically happens as a result of compiler options
    		// (e.g. compile package X with "-dwarf=0").
    		varDIE := d.ldr.GetVarDwarfAuxSym(idx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/BUILD

        "//tensorflow/compiler/jit/ops:xla_ops",
        "//tensorflow/compiler/tf2xla:layout_util",
        "//tensorflow/compiler/tf2xla:common",
        "//tensorflow/compiler/tf2xla:tf2xla_util",
        "//tensorflow/compiler/tf2xla:xla_compiler",
        "//tensorflow/compiler/tf2xla:xla_op_registry",
        "//tensorflow/compiler/tf2xla/kernels:xla_dummy_ops",
        "//tensorflow/compiler/tf2xla/kernels:xla_ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[compile_task_wiring]]
    ==== Deprecated properties in `compile` task
    
    * The link:{groovyDslPath}/org.gradle.api.tasks.compile.JavaCompile.html#org.gradle.api.tasks.compile.JavaCompile:destinationDir[JavaCompile.destinationDir]
    property has been deprecated.
    Use the link:{groovyDslPath}/org.gradle.api.tasks.compile.JavaCompile.html#org.gradle.api.tasks.compile.JavaCompile:destinationDirectory[JavaCompile.destinationDirectory]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            with(javaLibrary.parsedIvy) {
                configurations.keySet() == ["default", "compile", "runtime"] as Set
                configurations["default"].extend == ["runtime"] as Set
                configurations["runtime"].extend == null
    
                expectArtifact("publishTest").hasAttributes("jar", "jar", ["compile", "runtime"])
            }
            javaLibrary.assertApiDependencies('commons-collections:commons-collections:3.2.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            dep1.scope == MavenScope.Compile
    
            def dep2 = metadata.dependencies[1]
            dep2.selector == moduleId('group-two', 'artifact-three', '11')
            dep2.scope == MavenScope.Compile
    
            def inheritedDep = metadata.dependencies[2]
            inheritedDep.selector == moduleId('group-two', 'artifact-two', '1.2')
            inheritedDep.scope == MavenScope.Compile
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	flag.BoolVar(&t.keepGoing, "k", false, "keep going even when error occurred")
    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    	flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
    	flag.StringVar(&t.runRxStr, "run", "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top