Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for consumable (0.24 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyTest.groovy

            then:
            1 * context.add(conf)
            1 * context.add({ it.is(conf.allArtifacts) })
            0 * _
        }
    
        void "doesn't allow selection of configuration is not consumable"() {
            def context = Mock(TaskDependencyResolveContext)
    
            project.configurations.create('conf') {
                canBeConsumed = false
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/JvmTestSuitePlugin.java

                });
            });
        }
    
        private void addTestResultsVariant(ProjectInternal project, JvmTestSuite suite, JvmTestSuiteTarget target) {
            final Configuration variant = project.getConfigurations().consumable(TEST_RESULTS_ELEMENTS_VARIANT_PREFIX + StringUtils.capitalize(target.getName())).get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 21:08:13 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractMinimalProvider.java

            return new FlatMapProvider<>(this, transformer);
        }
    
        /**
         * Returns the human consumable display name for this provider, or null if this is not known.
         */
        @Nullable
        protected DisplayName getDeclaredDisplayName() {
            return null;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    |Artifacts are uploaded, dependencies are those described by the mapping
    |Artifacts are uploaded, dependencies are ignored
    |Custom component types are probably not consumable from Maven or Ivy in any case. They usually exist in the context of a custom ecosystem.
    
    |===
    
    === Disabling metadata compatibility publication warnings
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRole.java

     *
     * @since 8.1
     */
    public interface ConfigurationRole {
        /**
         * Returns a human-readable name for this role.
         */
        String getName();
    
        boolean isConsumable();
        boolean isResolvable();
        boolean isDeclarable();
        boolean isConsumptionDeprecated();
        boolean isResolutionDeprecated();
        boolean isDeclarationAgainstDeprecated();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:39:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/type/ModelTypesTest.groovy

        }
    
        static def maybeWithJava12ConstantTypes(types) {
            if (JavaVersion.current().java12Compatible) {
                types += [Class.forName("java.lang.constant.Constable"), Class.forName("java.lang.constant.ConstantDesc")]
            }
            return types
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/README.adoc

    [NOTE]
    ====
    This demonstrates the <<../userguide/cross_project_publications.adoc#simple-sharing-artifacts-between-projects, simple version>> of sharing information across project boundaries, by explicitly specifying which producer project's _consumable configuration_ to use for a locally available artifact.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top