Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 284 for Compilation (1.5 sec)

  1. src/cmd/compile/internal/ssa/config.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // A Config holds readonly compilation information.
    // It is created once, early during compilation,
    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    ====
    <1> Makes compilation depend on the `prepare` task
    <2> Detaches `package` from the `ant_build` task and makes it depend on `compileJava`
    <3> Detaches `assemble` from the standard Gradle `jar` task and makes it depend on `package` instead
    
    These four steps will successfully replace the old Ant compilation with the Gradle implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/IncrementalResultStoringCompiler.java

    import java.util.Collections;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Set;
    
    /**
     * Stores the incremental class dependency analysis after compilation has finished.
     */
    class IncrementalResultStoringCompiler<T extends JavaCompileSpec> implements Compiler<T> {
    
        private final Compiler<T> delegate;
        private final CurrentCompilationAccess classpathSnapshotter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. src/debug/dwarf/line_test.go

    		if err != nil {
    			t.Fatal("dr.Next:", err)
    		} else if ent == nil {
    			break
    		}
    
    		if ent.Tag != TagCompileUnit {
    			dr.SkipChildren()
    			continue
    		}
    
    		// Ignore system compilation units (this happens in
    		// the Windows binary). We'll still decode the line
    		// table, but won't check it.
    		name := ent.Val(AttrName).(string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                )
            }
            build("noop")
        }
    
        @Test
        fun `script compilation warnings are output on the console`() {
            val script = withBuildScript("""
                @Deprecated("BECAUSE")
                fun deprecatedFunction() {}
                deprecatedFunction()
            """)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    Gradle's dependency management engine is _variant aware_.
    
    In addition to a component, Gradle has the concept of _variants_ of a component.
    Variants correspond to the different ways a component can be used, such as for Java compilation or native linking or documentation.
    Artifacts are attached to a _variant_ and each variant can have a different set of dependencies.
    
    How does Gradle know which variant to choose when there's more than one?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                        "consumer.plugin.gradle.kts",
                        """
                            plugins { id("producer.plugin") }
                            println(before) // ok
                            println(after) // compilation error
                        """
                    )
                }
            }
            withDefaultSettings().appendText(
                """
                    include("producer", "consumer")
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

                    throw problemReporter.throwing(problemSpec -> problemSpec
                        .id("groovy-daemon-compiler", "Missing tools.jar", GradleCoreProblemGroup.compilation().groovy())
                        .contextualLabel(contextualMessage)
                        .solution("Check if the installation is not a JRE but a JDK.")
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

                           num_tpus_per_host, ", got ", host_tpu_devices.size()));
    
        tpu_devices.push_back(std::move(host_tpu_devices));
      }
    
      return tpu_devices;
    }
    
    // Find the compilation device from system device with `DEVICE_CPU` as its
    // type.
    std::string GetTPUCompilationDevice(ParsedDevice system_device) {
      // TODO(b/110910013) GetTPUSystemDevices parses the spec and returns the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

                                    &compilation_result, custom_legalization_passes)
                    .status();
      if (!compilation_status.ok()) {
        LOG(ERROR) << "TF/XLA compilation failed: " << compilation_status;
        return mlir::failure();
      }
    
      return PrintHloModuleText(compilation_result, output);
    }
    
    static mlir::LogicalResult MlirTfGraphToHloTextTranslateFunction(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top