Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for resolvable (0.41 sec)

  1. build/root/Makefile

    #  REMOTE_MODE: For REMOTE=true only.  Mode for remote execution (eg. gce, ssh).
    #    If set to "gce", an instance can be provisioned or reused from GCE. If set
    #    to "ssh", provided `HOSTS` must be IPs or resolvable.  Defaults to "gce".
    #  ARTIFACTS: Local directory to scp test artifacts into from the remote hosts
    #    for REMOTE=true. Local directory to write juntil xml results into for REMOTE=false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                    }
                }
            """
            buildFile << """
                configurations {
                    dependencyScope("implementation")
                    resolvable("runtimeClasspath") {
                        attributes.attribute(Attribute.of("attr1", Named), objects.named(Named,"value"))
                        extendsFrom(implementation)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component compiles, links, or runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `api`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    * The configurations in pink, also known as consumable denoted by \(C), are the ones used when a component compiles, links, or runs against the library
    * The configurations in blue, also known as resolvable denoted by \(R), are internal to the component, for its own use
    
    The following configurations are used to declare dependencies:
    
    `api`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                executer.expectDocumentedDeprecationWarning("Accessing the build dependencies of project dependency ':' has been deprecated. This will fail with an error in Gradle 9.0. Add the dependency to a resolvable configuration and use the configuration to track task dependencies. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_8.html#deprecate_self_resolving_dependency")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                        }
                    }
                    dependencyScope("implementation")
                    resolvable("res") {
                        extendsFrom(implementation)
                        attributes {
                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    .withProblemId("configurations-acting-as-both-root-and-variant")
                    .withAdvice("Be sure to mark configurations meant for resolution as canBeConsumed=false or use the 'resolvable(String)' configuration factory method to create them.")
                    .willBecomeAnErrorInGradle9()
                    .withUpgradeGuideSection(8, "depending_on_root_configuration")
                    .nagUser();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    	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 Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                assignmentRValue.source?.kind is KtFakeSourceElementKind.DesugaredAugmentedAssign
            ) {
                require(assignmentRValue is FirResolvable) {
                    "Rvalue of desugared compound assignment should be resolvable, but it was ${assignmentRValue::class}"
                }
    
                return assignmentRValue.calleeReference.toTargetSymbol(session, symbolBuilder)
            }
    
            return emptyList()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

                        sha512: getChecksum(foo, "sha512", "pom")
                    )
                }
            }
    
            where:
            stop << [true, false]
        }
    
        def "generates checksums for resolvable configurations only"() {
            given:
            javaLibrary()
            def foo = uncheckedModule("org", "foo", "1.0")
            def foo1 = uncheckedModule("org", "foo", "1.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top