Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 205 for composite_ (0.52 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    `app` depends on `lib`.
    You can build `lib` independent of `app`.
    However, to build `app`, Gradle will also build `lib`.
    
    == Step 3. Understand Composite Builds
    A composite build is simply a build that includes other builds.
    
    Composite builds allow you to:
    
    - Extract your build logic from your project build (and re-use it among subprojects)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager.addPass(mlir::mhlo::createHloLegalizeToStablehloPass());
    
      // Translate "stablehlo.custom_call @stablehlo.composite" to
      // "stablehlo.composite"
      // TODO: b/330741524 - clean this up when "stablehlo.composite" is emitted
      // directly. Additionally remove the composite to custom once ODML long term
      // solution lands.
      pass_manager.addPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    Consult how to declare <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc, dependencies between subprojects>> to learn more.
    
    === 2. Composite Builds
    
    Composite Builds, also referred to as _included builds_, are best for sharing logic between builds (_not subprojects_) or isolating access to shared build logic (i.e., convention plugins).
    
    Let's take the previous example.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

             */
            @Nullable
            static <T> SideEffect<T> composite(Iterable<SideEffect<T>> sideEffects) {
                return CompositeSideEffect.of(sideEffects);
            }
    
            /**
             * Creates a new side effect that executes given side effects sequentially.
             */
            @SafeVarargs
            @Nullable
            static <T> SideEffect<T> composite(SideEffect<? super T>... sideEffects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/expr3.go

    	var value int
    	_ = M1{true: 1, false: 0}
    	_ = M2{nil: 0, &value: 1}
    
    	// composite literal element types may be elided
    	type T [2]int
    	_ = map[int]T{0: T{3, 4}, 1: {5, 6}}
    
    	// recursively so
    	_ = map[int][]T{0: {}, 1: {{}, T{1, 2}}}
    
    	// composite literal key types may be elided
    	_ = map[T]int{T{3, 4}: 0, {5, 6}: 1}
    
    	// recursively so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 22:41:49 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.internal.ToBeImplemented
    import spock.lang.Issue
    
    /**
     * Tests for generating IDEA metadata for projects within a composite build.
     */
    class CompositeBuildIdeaProjectIntegrationTest extends AbstractIntegrationSpec {
        BuildTestFile buildA
        BuildTestFile buildB
    
        def setup() {
            buildTestFixture.withBuildInSubDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateInsertCustomAggregationOpsPass(
        const ::stablehlo::quantization::CalibrationOptions& calib_opts);
    
    // Replaces composite functions with quantized composite functions. After this
    // pass runs, functions in the given graph will be replaced with their quantized
    // versions. By doing so, the quantization will be applied to the given input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

                    }
                }
            """
    
            expect:
            succeeds(":third-build:sub:doSomething")
        }
    
        def "handles overlapping names between composite and a subproject within the composite"() {
            setup:
            settingsFile << """
                rootProject.name = 'root-project'
                includeBuild('lib')
            """
            file('lib/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Restores function name from XlaCallModule op.";
    }
    
    def QuantizeCompositeFunctionsPass : Pass<"stablehlo-quantize-composite-functions", "ModuleOp"> {
      let summary = "Quantize composite functions with QDQ input / outputs.";
      let options = [
        Option<"enable_per_channel_quantized_weight_",
            "enable-per-channel-quantized-weight",
            "bool", /*default=*/"true",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            where:
            build << GradlePropertiesIncludedBuildFixture.builds()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19184")
        def "system properties declared in properties of composite build"() {
            given:
            String systemProp = "fromPropertiesFile"
            def configurationCache = newConfigurationCacheFixture()
            def fixture = spec.createFixtureFor(this, systemProp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top