Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 633 for composite_ (0.14 sec)

  1. schema/index.go

    				if name == "" {
    					subName := field.Name
    					const key = "COMPOSITE"
    					if composite, found := settings[key]; found {
    						if len(composite) == 0 || composite == key {
    							err = fmt.Errorf(
    								"The composite tag of %s.%s cannot be empty",
    								field.Schema.Name,
    								field.Name)
    							return
    						}
    						subName = composite
    					}
    					name = field.Schema.namer.IndexName(
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/BiActionsTest.groovy

    class BiActionsTest extends Specification {
    
        def "composite action executes all actions that are part of it"() {
            given:
            BiAction<List<String>, List<String>> first = {a, b -> a << "first a"; b << "first b" }
            BiAction<List<String>, List<String>> second = {a, b -> a << "second a"; b << "second b" }
            def composite = BiActions.composite(first, second)
            def a = []
            def b = []
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestListenerBuildOperationAdapterIntegrationTest.groovy

                details.testDescriptor.className == null
                details.testDescriptor.composite == true
            }
            with(iterator.next()) {
                details.testDescriptor.name ==~ "Gradle Test Executor \\d+"
                details.testDescriptor.className == null
                details.testDescriptor.composite == true
            }
            checkForSuiteOperations(iterator, "org.gradle.ASuite")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/README.md

    The composable TF framework allows the user to define portable TF ops as
    compositions of other TF ops. It translates a Python function used to define the
    composition directly into a portable IR at build time, and uses it to expand the
    composite op in the TF program during compilation / execution. By using this
    expansion mechanism, new op are readily available on different platforms without
    extra work. Moreover, since the expansion is optional, the backend can easily
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildRootProjectIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    
    class CompositeBuildRootProjectIntegrationTest extends AbstractCompositeBuildIntegrationTest {
    
        def "root of a composite build cannot refer to own subprojects by GA coordinates by default"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 11:50:58 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDestroyablesIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import spock.lang.Ignore
    
    @Ignore("No longer works with parallel execution of included builds. See gradle/composite-builds#114")
    class CompositeBuildDestroyablesIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        BuildTestFile buildB
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jul 09 15:31:00 UTC 2017
    - 2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/README.adoc

    == Using composite builds in a hierarchical multirepo project
    
    This sample demonstrates how composite builds can be used to develop a hierarchical project that is composed from different Git repositories. Instead of Gradle subprojects in a multiproject build, this example uses separate Gradle builds included into a composite.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/CompositeBuildDependencySubstitutions.java

    import java.util.Collection;
    import java.util.SortedSet;
    import java.util.TreeSet;
    import java.util.stream.Collectors;
    
    /**
     * Provides a dependency substitution rule for composite build,
     * that substitutes a project within the composite with any dependency with a matching ModuleIdentifier.
     */
    public class CompositeBuildDependencySubstitutions implements Action<DependencySubstitution> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue51335.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type S1 struct{}
    type S2 struct{}
    
    func _[P *S1|*S2]() {
    	_= []P{{ /* ERROR "invalid composite literal element type P (no core type)" */ }}
    }
    
    func _[P *S1|S1]() {
    	_= []P{{ /* ERROR "invalid composite literal element type P (no core type)" */ }}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 420 bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

        def rootDescriptor = new SimpleTestDescriptor(displayName: "Test Run", className: null, composite: true)
        def workerDescriptor = new SimpleTestDescriptor(displayName: "Gradle Worker 2", className: null, composite: true, parent: rootDescriptor)
        def outerSuiteDescriptor = new SimpleTestDescriptor(name: "com.OuterSuiteClass", displayName: "OuterSuiteClass", composite: true, parent: workerDescriptor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top