Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for undeclarable (0.38 sec)

  1. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/badConfNames.out

    	Consumable - this configuration can be selected by another project as a dependency
    	Resolvable - this configuration can be resolved by this project to a set of files
    	Declarable - this configuration can have dependencies added to it
    Yet Gradle expected to create it with the usage(s):
    	Resolvable - this configuration can be resolved by this project to a set of files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRolesIntegrationTest.groovy

    \tConsumable - this configuration can be selected by another project as a dependency
    \tDeclarable - this configuration can have dependencies added to it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

            expect:
            executer.expectDocumentedDeprecationWarning("Calling configuration method 'copy()' is deprecated for configuration 'api', which has permitted usage(s):\n" +
                    "\tDeclarable - this configuration can have dependencies added to it\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    Current Usage:
    \tConsumable - this configuration can be selected by another project as a dependency
    \tResolvable - this configuration can be resolved by this project to a set of files
    \tDeclarable - this configuration can have dependencies added to it
    Local Dependencies:
       DefaultExternalModuleDependency{group='dumpgroup1', name='dumpname1', version='dumpversion1', configuration='default'}
    Local Artifacts:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         */
        ConfigurationRole getRoleAtCreation();
    
        /**
         * Indicates if the allowed usages of this configuration (consumable, resolvable, declarable) can be changed.
         *
         * @return {@code true} if so; {@code false} otherwise
         */
        boolean usageCanBeMutated();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

        }
    
        private String buildAllowedUsages(String role) {
            switch (role) {
                case 'dependencyScope':
                    return "\tDeclarable - this configuration can have dependencies added to it"
                case 'consumable':
                    return "\tConsumable - this configuration can be selected by another project as a dependency"
                case 'resolvable':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

                    assert configurations.custom.canBeConsumed == $consumable
                    assert configurations.custom.canBeResolved == $resolvable
                    assert configurations.custom.canBeDeclared == $declarable
                    assert configurations.custom.deprecatedForConsumption == $consumptionDeprecated
                    assert configurations.custom.deprecatedForResolution == $resolutionDeprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         * <p>
         * This method does not resolve the configuration. Therefore, the return value does not include
         * transitive dependencies.
         *
         * @implSpec Usage: This method should only be called on declarable configurations, but will not warn if used otherwise.
         *
         * @return the set of dependencies
         * @see #extendsFrom(Configuration...)
         */
        DependencySet getDependencies();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
            if (isCanBeResolved() != role.isResolvable()) {
                setCanBeResolvedInternal(role.isResolvable());
            }
            if (isCanBeDeclared() != role.isDeclarable()) {
                setCanBeDeclaredInternal(role.isDeclarable());
            }
        }
    
        @VisibleForTesting
        ListenerBroadcast<DependencyResolutionListener> getDependencyResolutionListeners() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getResolvedConfigurations()` - RESOLVABLE configurations only
    - `defaultDependencies(Action)` - DECLARABLE configurations only
    - `shouldResolveConsistentlyWith(Configuration)` - RESOLVABLE configurations only
    - `disableConsistentResolution()` - RESOLVABLE configurations only
    - `getDependencyConstraints()` - DECLARABLE configurations only
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top