Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 641 for Carian (0.16 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

            then:
            gmmMetadata.parsedModuleMetadata.variant("apiElements") {
                noMoreDependencies()
            }
            gmmMetadata.parsedModuleMetadata.variant("runtimeElements") {
                noMoreDependencies()
            }
            gmmMetadata.parsedModuleMetadata.variant("custom") {
                dependency('log4j:log4j:1.2.17').exists()
                noMoreDependencies()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            /**
             * Executes the underlying action if the supplied variant matches.
             *
             * @param variant the variant metadata, used to check if the rule applies
             * @param subject the subject of the rule
             */
            public void maybeExecute(VariantResolveMetadata variant, T subject) {
                if (variantName == null || variantName.equals(variant.getName())) {
                    delegate.execute(subject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/func_attributes_multiple_callers.mlir

        func.return %4, %6 : tensor<!tf_type.variant>, tensor<!tf_type.variant>
      }
      // CHECK-LABEL: @funcB_renamed
      func.func private @funcB_renamed(%arg0: tensor<i64> {tf._user_specified_name = "args_0"}) -> tensor<!tf_type.variant> attributes {tf._original_func_name = "funcB", tf._tf_data_function = true, tf.signature.is_stateful} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 20:57:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/bundling/JavaBundlingResolveIntegrationTest.groovy

        }
    
        def "defaults to the external dependencies variant (#bundling)"() {
            given:
            repository {
                'org:transitive:1.0'()
                'org:producer:1.0' {
                    variant('api') {
                        dependsOn('org:transitive:1.0')
                        attribute Bundling.BUNDLING_ATTRIBUTE.name, 'external'
                    }
                    variant('runtime') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    Finally, Gradle selects the appropriate variant by looking at the variant attributes:
    
    - the consumer wants a variant with attributes `org.gradle.usage=java-api`
    - the producer has a matching variant (`apiElements`)
    - the producer has a non-matching variant (`runtimeElements`)
    
    Gradle provides the artifacts and dependencies from the `apiElements` variant to the consumer.
    
    == A more complicated example
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/fixtures/tests/dependencyInsight.out

                   - Variant javadoc provides com.google.code.gson:gson:2.8.5
                   - Variant platform-compile provides com.google.code.gson:gson-derived-platform:2.8.5
                   - Variant platform-runtime provides com.google.code.gson:gson-derived-platform:2.8.5
                   - Variant runtime provides com.google.code.gson:gson:2.8.5
                   - Variant sources provides com.google.code.gson:gson:2.8.5
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:55:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

            if (variants) {
                variants.each { variant ->
                    module.withVariant(variant.name) {
                        attributes = attributes ? attributes + variant.attributes : variant.attributes
                        artifacts = variant.artifacts.collect {
                            if (it.name && it.name == it.url && it.name == it.publishUrl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            for (SoftwareComponentVariant variant : softwareComponent.getUsages()) {
                checkVariant(variant);
                variants.add(dependencyCoordinateResolverFactory.createCoordinateResolvers(variant, versionMappingStrategy).map(resolvers ->
                    new ModuleMetadataSpec.LocalVariant(
                        variant.getName(),
                        attributesFor(variant.getAttributes()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLibraryComponentSelector.java

            this.libraryName = Strings.emptyToNull(libraryName);
            this.variant = variant;
        }
    
        @Override
        public String getDisplayName() {
            String txt;
            if (Strings.isNullOrEmpty(libraryName)) {
                txt = "project '" + projectPath + "'";
            } else if (Strings.isNullOrEmpty(variant)) {
                txt = "project '" + projectPath + "' library '" + libraryName + "'";
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        @Unroll("Selects variant #expectedVariant using custom attribute value #attributeValue")
        def "attribute value is used during selection"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api') {
                        attribute('custom', 'c1')
                    }
                    variant('runtime') {
                        attribute('custom', 'c2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top