Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 144 for Resolvable (0.17 sec)

  1. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

        public static final String ENFORCED_API_ELEMENTS_CONFIGURATION_NAME = "enforcedApiElements";
        public static final String ENFORCED_RUNTIME_ELEMENTS_CONFIGURATION_NAME = "enforcedRuntimeElements";
    
        // Resolvable configurations
        public static final String CLASSPATH_CONFIGURATION_NAME = "classpath";
    
        private static final String DISALLOW_DEPENDENCIES = "Adding dependencies to platforms is not allowed by default.\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            SourceSetConfigurationCreationRequest compileClasspathRequest = new SourceSetConfigurationCreationRequest(sourceSet.getName(), compileClasspathConfigurationName, ConfigurationRoles.RESOLVABLE);
            Configuration compileClasspathConfiguration = configurations.maybeCreate(compileClasspathRequest);
            compileClasspathConfiguration.setVisible(false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            DefaultResolvableConfiguration | Configuration      | "project.configurations.resolvable('some')" | "project.configurations.getByName('some')"           | 'file collection'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ====
    
    NOTE: Only configurations that can be resolved will have lock state attached to them.
    Applying locking on non resolvable-configurations is simply a no-op.
    
    Or the following, as a way to lock all configurations:
    
    .Locking all configurations
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

            """
    
            when:
            fails("helloWorld")
    
            then:
            failureDescriptionContains("could not resolve plugin artifact 'foo:bar:1.0'")
        }
    
        def "succeeds build for resolvable custom artifact"() {
            given:
            buildScript helloWorldPlugin('0.2')
    
            settingsFile << """
                pluginManagement {
                    resolutionStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

            tree1.files == [file1, file2] as Set
    
            def tree2 = layout.projectDirectory.dir("dir2").asFileTree
            tree2.files == [file3] as Set
        }
    
        def "can query and mutate the build directory using resolvable type"() {
            expect:
            def buildDirectory = layout.buildDirectory
            def fileProvider = buildDirectory.asFile
    
            buildDirectory.present
            fileProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         * a [KaClassErrorType] because [abbreviatedType] would then be `null`.
         *
         *
         * ### Resolvability
         *
         * Even when this [KaType] is an expansion, the abbreviated type may be `null` if it is not resolvable from this type's use-site module.
         * This can occur when the abbreviated type from a module `M1` was expanded at some declaration `D` in module `M2`, and the use-site
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    The role of each configuration is described in the following tables:
    
    .Java Library plugin - configurations used to declare dependencies
    [%header%autowidth,compact]
    |===
    | Configuration name | Role | Consumable? | Resolvable? | Description
    
    | `api`
    | Declaring API dependencies
    | no
    | no
    | This is where you declare dependencies which are transitively exported to consumers, for compile time and runtime.
    
    | `implementation`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ConfigurationReportModelFactory.java

                type = ReportConfiguration.Type.LEGACY;
            } else if (configuration.isCanBeResolved()) {
                type = ReportConfiguration.Type.RESOLVABLE;
            } else if (configuration.isCanBeConsumed()) {
                type = ReportConfiguration.Type.CONSUMABLE;
            } else {
                type = null;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    To some extent, this is similar to an _abstract class_ (`canBeResolved`=false) which is not supposed to be instantiated, and a concrete class extending the abstract class (`canBeResolved`=true).
    A resolvable configuration will extend at least one non-resolvable configuration (and may extend more than one).
    
    On the other end, at the library project side (the _producer_), we also use configurations to represent what can be consumed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top