Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Resolvable (0.25 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get the resolvable configuration containing the resolved runtime dependencies
         * for this feature. This configuration does not contain the artifacts from the
         * feature's compilation itself.
         *
         * @return The {@code runtimeClasspath} configuration.
         */
        Configuration getRuntimeClasspathConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

            given:
            mavenRepo.module("org", "foo").publish()
            buildFile << """
                configurations {
                    dependencyScope("deps")
                    resolvable("res")  {
                        extendsFrom(deps)
                        attributes {
                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, "foo"))
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/stored.rules

    should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateMigratingUnlocked(String,\ ConfigurationRole)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableDependencyScopeUnlocked(String),\ because\ Resolvable\ +\ dependency\ scope\ configurations\ should\ be\ avoided\ and\ we\ are\ migrating\ away\ from\ maybeCreate\ methods=configuration-factory-methods.txt...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

                    "\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)
  5. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/AbstractConflictResolverTest.java

            ResolutionNode resolvedNode = getConflictResolver().resolveConflict(actualNode1, actualNode2);
    
            assertNotNull(resolvedNode, "Expected resolvable");
            assertEquals(expectedNode, resolvedNode, "Resolution node");
        }
    
        protected Artifact createArtifact(String id, String version) throws InvalidVersionSpecificationException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ResettableConfiguration.java

         * By applying this functionality to all configurations, this method would no longer be required.
         *
         * @implSpec Usage: This method should only be called on resolvable configurations and should throw an exception if
         * called on a configuration that does not permit this usage.
         */
        @Nullable
        <T> T callAndResetResolutionState(Factory<T> factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 27 17:33:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

                }
    
                byIdentity.put(VariantIdentity.from(configuration), configuration);
            });
    
            return new VerificationReport(byIdentity);
        }
    
        /**
         * Consumable, non-resolvable, non-default configurations with attributes must have unique attributes.
         */
        private static boolean mustHaveUniqueAttributes(Configuration configuration) {
            return configuration.isCanBeConsumed() &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

                task jar3(type: Jar) {}
    
                configurations {
                    consumable("con") {
                        outgoing.artifact(tasks.jar1)
                    }
                    resolvable("res") {
                        outgoing.artifact(tasks.jar2)
                    }
                    dependencyScope("dep") {
                        outgoing.artifact(tasks.jar3)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/VersionCatalogBuilder.java

         * The passed notation should conform these constraints:
         * <ul>
         *     <li>If a file notation is passed, it should be a single file.</li>
         *     <li>If it's a resolvable dependency, it should resolve to a single file.</li>
         * </ul>
         *
         * <p>
         * If the notation doesn't conform these constraints, an exception will be thrown at configuration time.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 20:59:29 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/UniAddress.java

     * the client and may be necessary for proper operation.
     * <p>
     * This class should be used in favor of <tt>InetAddress</tt> to resolve
     * hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and
     * DNS resolvable hosts.
     */
    
    public class UniAddress implements Address {
    
        /**
         * Check whether a hostname is actually an ip address
         * 
         * @param hostname
         * @return whether this is an IP address
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.3K bytes
    - Viewed (0)
Back to top