Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for consumable (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            maybeEmitConsumptionDeprecation(conf);
            return conf;
        }
    
        /**
         * Ensures the target variant matches the request attributes and is consumable. This needs to be called
         * for variants that are selected by means other than attribute matching.
         *
         * Note: This does not need to be called for variants selected via attribute matching, since
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    .Swift Application Plugin configurations
    image::swift-application-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadataTest.groovy

            immutable3.variants[0].dependencies.size() == 2
            immutable3.variants[1].dependencies.size() == 1
            immutable3.variants[2].dependencies.empty
        }
    
        def "variants are attached as consumable configurations used for variant aware selection"() {
            def id = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("group", "module"), "version")
            def metadata = createMetadata(id)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    These configurations were deprecated for consumption and are now no longer consumable.
    Attempting to consume them will result in an error.
    
    ==== Identical consumable configurations are now an error
    
    If a project has multiple consumable configurations that share the same attributes and capabilities declaration, the build will fail when publishing or resolving as a dependency that project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    The plugin declares a consumable `binaryTestResultsElements` configuration that represents the binary test results of the `test` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    - `(n)`: A dependency or dependency configuration that <<declaring_dependencies.adoc#sec:resolvable-consumable-configs,cannot be resolved>>.
    
    === Specify a Dependency Configuration
    
    To focus on the information about one dependency configuration, provide the optional parameter `--configuration`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

        /**
         * Creates a {@link SourceDirectorySet}.
         *
         * @param name A short name for the set.
         * @param displayName A human consumable display name for the set.
         * @since 5.0
         */
        SourceDirectorySet sourceDirectorySet(String name, String displayName);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    .{cpp} Application Plugin configurations
    image::cpp-application-configurations.png[]
    
    * The configurations in white are the ones a user should use to declare dependencies
    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            then:
            outputContains """
    project :A FAILED
       Failures:
          - Could not resolve project :A.
            Creating consumable variants is explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:resolvable-consumable-configs.
              - Unable to find a matching variant of project :A:
                  - No variants exist.
    
    project :A FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    - the configuration `mongodbSupportCompileOnlyApi`, used to _declare compile-only API dependencies_ for this feature
    
    Furthermore, consumable configurations are created in the same manner as for the main feature:
    
    - the configuration `mongodbSupportApiElements`, used by consumers to fetch the artifacts and API dependencies of this feature
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top