Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 96 for substitutions (0.57 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

            }
        }
    
        /*
         * Gradle 5.6 introduced closed project substitution for Buildship: https://github.com/gradle/gradle/pull/9405
         * The feature is built upon the EclipseProject TAPI model which is based on the result of the Eclipse plugin.
         *
         * To distinguish between different task dependencies the closed project substitution feature had to change
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         * }
         * ```
         *
         * Unfortunately, [symbol] for the `action("")` call will be pointing to the `Function1<P1, R>.invoke(p1: P1): R`, because we
         * intentionally unwrap use-site substitution overrides. Because of this, `symbol.name` will yield `"p1"`, and not `"bar"`.
         *
         * To overcome this problem, [name] property is introduced: it allows to get the intended name of the parameter,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import spock.lang.Ignore
    
    /**
     * Tests for resolving dependency artifacts with substitution within a composite build.
     */
    class IncludedBuildValidationIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        BuildTestFile buildB
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/EnforcedPlatformIntegrationTest.groovy

    class EnforcedPlatformIntegrationTest extends AbstractHttpDependencyResolutionTest {
    
        def setup() {
            settingsFile << """
                rootProject.name = 'test'
            """
        }
    
        def "dependency substitution on a dependency enforced by a published platform should not cause an exception"() {
            settingsFile << """
                includeBuild 'jackson-core'
            """
            file('jackson-core/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    import org.gradle.tooling.model.idea.IdeaModuleDependency
    import org.gradle.tooling.model.idea.IdeaProject
    
    /**
     * Dependency substitution is performed for models in a composite build
     */
    @TargetGradleVersion(">=3.1")
    class AdHocCompositeDependencySubstitutionCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         * Until the feature 'settles' and we receive more feedback, it's internal
         *
         * @return conflict resolution
         */
        ConflictResolution getConflictResolution();
    
        /**
         * @return the dependency substitution rule (may aggregate multiple rules)
         */
        ImmutableActionSet<DependencySubstitutionInternal> getDependencySubstitutionRule();
    
        /**
         * Used by tests to validate behaviour of the 'task graph modified' state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    1. Change the sources of `Number.java`
    2. Run the `my-app` application, including the `my-utils` build.
    
    ```
    cd my-app
    gradle --include-build ../my-utils run
    ```
    
    Using _dependency substitution_, the module dependencies on the util libraries are replaced by project dependencies on `my-utils`.
    
    == Converting `my-app` to a composite build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSessionComponent.kt

    import org.jetbrains.kotlin.fir.expressions.FirQualifiedAccessExpression
    import org.jetbrains.kotlin.fir.expressions.createConeSubstitutorFromTypeArguments
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    import org.jetbrains.kotlin.fir.types.*
    import org.jetbrains.kotlin.types.TypeCheckerState
    import org.jetbrains.kotlin.types.model.convertVariance
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/Platform.java

      static int collectionIteratorTesterNumIterations() {
        return 3;
      }
    
      // TODO: Consolidate different copies in one single place.
      static String format(String template, Object... args) {
        // start substituting the arguments into the '%s' placeholders
        StringBuilder builder = new StringBuilder(template.length() + 16 * args.length);
        int templateStart = 0;
        int i = 0;
        while (i < args.length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 04 15:31:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsAndResolutionStrategiesIntegrationTest.groovy

                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
                GET_HELP
            )
        }
    
        void "dependency substitution rules are applied to dependency constraints"() {
            given:
            buildFile << """
                dependencies {
                    conf 'org:bar:1.0'
                    constraints {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top