Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 633 for composite_ (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginManagementSpec.java

         * Includes a plugin build at the specified path to the composite build.
         * Included plugin builds can contribute settings and project plugins.
         * @param rootProject The path to the root project directory for the build.
         *
         * @since 7.0
         */
        @Adding
        void includeBuild(String rootProject);
    
        /**
         * Includes a plugin build at the specified path to the composite build, with the supplied configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. test/fixedbugs/bug508.go

    // compile
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Gccgo mishandles composite literals of map with type bool.
    
    package p
    
    var M = map[bool]uint8{
    	false: 0,
    	true: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 10 18:42:07 UTC 2020
    - 293 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/kotlin/settings.gradle.kts

    rootProject.name = "consumer"
    
    include("my-greeting-app")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 138 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        "tf.AssignAddVariableOp"(%0, %1) {dtype = "tfdtype$DT_INT32"} : (tensor<*x!tf_type.resource<tensor<2x8xi32>>>, tensor<i32>) -> ()
        tf_device.return
      }) : () -> ()
    
      func.return
    }
    
    // Tests that composite tf.AssignAddVariableOp operation is decomposed and
    // hoisted.
    
    // CHECK-LABEL: func @decompose_assign_add_variable_op
    func.func @decompose_assign_add_variable_op() -> () {
      "tf_device.cluster"() ({
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludesMultiProjectProjectDependencyConflictResolutionIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import org.gradle.integtests.resolve.AbstractProjectDependencyConflictResolutionIntegrationSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 16 07:51:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.NodeExecutionContext;
    import org.gradle.composite.internal.BuildTreeWorkGraphController;
    import org.gradle.composite.internal.IncludedBuildTaskResource;
    import org.gradle.composite.internal.TaskIdentifier;
    import org.gradle.internal.lazy.Lazy;
    import org.gradle.internal.resources.ResourceLock;
    import org.gradle.util.Path;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/initialization/IncludedBuildSpec.java

    import org.gradle.api.internal.StartParameterInternal;
    import org.gradle.internal.ImmutableActionSet;
    import org.gradle.internal.build.PublicBuildPath;
    import org.gradle.internal.composite.DefaultConfigurableIncludedBuild;
    import org.gradle.internal.composite.DefaultConfigurableIncludedPluginBuild;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.plugin.management.internal.PluginRequests;
    
    import java.io.File;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 08 20:51:22 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. src/cmd/gofmt/simplify.go

    import (
    	"go/ast"
    	"go/token"
    	"reflect"
    )
    
    type simplifier struct{}
    
    func (s simplifier) Visit(node ast.Node) ast.Visitor {
    	switch n := node.(type) {
    	case *ast.CompositeLit:
    		// array, slice, and map composite literals may be simplified
    		outer := n
    		var keyType, eltType ast.Expr
    		switch typ := outer.Type.(type) {
    		case *ast.ArrayType:
    			eltType = typ.Elt
    		case *ast.MapType:
    			keyType = typ.Key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/op_reg_gen.py

        compose_dec = []
        for dec in node.decorator_list:
          if isinstance(dec, ast.Call):
            if isinstance(dec.func, ast.Attribute) and dec.func.attr == 'Composite':
              compose_dec.append(dec)
            if isinstance(dec.func, ast.Name) and dec.func.id == 'Composite':
              compose_dec.append(dec)
    
        if not compose_dec:
          # skip a non-composition function
          return
        elif len(compose_dec) > 1:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5K bytes
    - Viewed (0)
Back to top