Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,163 for componentX (0.36 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

            when:
            fails 'dependentComponents', '--test-suites', '--component', 'unknown', '--component', 'anonymous', '--component', 'whatever', '--component', 'lib', '--component', 'main', '--component', 'libTest'
    
            then:
            failure.assertHasCause "Components 'unknown', 'anonymous' and 'whatever' not found."
        }
    
        def "displays dependent of multiple targeted components"() {
            given:
            buildScript simpleCppBuild()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentPluginIntegrationTest.groovy

    }
    """
        }
    
        def "plugin declares custom component"() {
            when:
            buildWithCustomComponentPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            create("checkModel") {
                def components = $.components
                doLast {
                    assert components.size() == 1
                    def sampleLib = components.sampleLib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. tests/integration/README.md

                // Do more stuff...
            }
    }
    ```
    
    When a component is created, the framework tracks its lifecycle. When the test exits, any components that were
    created during the test are automatically closed.
    
    ### Writing Components
    
    To add a new component, you'll first need to create a top-level folder for your component under the
    [components folder](https://github.com/istio/istio/tree/master/pkg/test/framework/components).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            when:
            project.components.add(component)
    
            then:
            project.components.size() == 1
    
            when:
            binaries.add(b1)
            binaries.add(b2)
            binaries.realizeNow()
    
            then:
            project.components.size() == 3
            project.components.b1 == b1
            project.components.b2 == b2
        }
    
        def "assemble task does nothing when no main component"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

    import org.gradle.internal.component.model.AttributeMatcher;
    import org.gradle.internal.component.model.ComponentGraphResolveMetadata;
    import org.gradle.internal.component.model.GraphSelectionCandidates;
    import org.gradle.internal.component.model.GraphVariantSelector;
    import org.gradle.internal.component.model.VariantGraphResolveState;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    --
    
    This is an important concept because:
    
    - By default, a variant provides a capability corresponding to the GAV coordinates of its component
    - No two variants in a dependency graph can provide the same capability
    - Multiple variants of a single component may be selected as long as they provide _different capabilities_
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

    model {
        components {
            custom(ComponentWithValue) {
                valueForBinary = "create-value"
            }
        }
        components {
            custom {
                valueForBinary = "configured-value"
            }
        }
        tasks {
            checkModel(Task) {
                doLast {
                    def component = \$.components.custom
                    assert component.binaries.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

       </configuration>
       <components>
          <component group="org" name="foo" version="1.0">
             <artifact name="foo-1.0.jar">
                <sha1 value="abc">
                   <also-trust value="def"/>
                   <also-trust value="123"/>
                </sha1>
             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. architecture/environments/operator.md

    of Pilot replicas is a component setting, because it refers to a component which is a Deployment in the
    cluster. Most K8s platform settings are necessarily component settings.
    The available features and the components that comprise each feature are as follows:
    
    | Feature | Components |
    |---------|------------|
    CRDs, and other cluster wide configs | Base
    Traffic Management | Pilot
    Security | Pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

    // end::guice-rule[]
    
    // tag::guice-dependencies[]
    dependencies {
        components {
            withModule("com.google.inject:guice", GuiceRule)
        }
        implementation("com.google.inject:guice:4.2.2") {
            capabilities { requireCapability("com.google.inject:guice-no_aop") }
        }
    }
    // end::guice-dependencies[]
    
    
    // tag::ivy-component-metadata-rule[]
    @CacheableRule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top