Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 300 for substituted (0.2 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/ThreadLocalInterceptorSet.groovy

            substitutions.get() == 0
        }
    
        void substituteForCurrentThread(T substitution) {
            if (threadLocalDecorators.get() != original) {
                throw new IllegalStateException("already substituted for the current thread; proper cleanup might have been missed")
            }
            substitutions.incrementAndGet()
            threadLocalDecorators.set(substitution)
        }
    
        void cancelSubstitutionForCurrentThread() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

        def "substituted project dependencies are also substituted in the generated POM file"() {
            createBuildScripts("""
                dependencies {
                    implementation project(":a")
                }
    
                configurations.all {
                    resolutionStrategy.dependencySubstitution {
                        substitute(project(':a')).using(project(':b'))
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    == Declaring the dependencies substituted by an included build
    
    By default, Gradle will configure each included build in order to determine the dependencies it can provide. The algorithm for doing this is very simple: Gradle will inspect the `group` and `name` for the projects in the included build, and substitute project dependencies for any matching external dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaConstructorSymbol
    import org.jetbrains.kotlin.name.Name
    
    /**
     * A scope inside which use-site type-parameters of callable declarations may be substituted. Such declarations are represented as [KaCallableSignature].
     *
     * @see org.jetbrains.kotlin.analysis.api.components.KaScopeProviderMixIn.getTypeScope
     * @see KaCallableSignature
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    The same rule _without_ the `platform` keyword would try to substitute _regular dependencies_ with a regular dependency, which is not what you want, so it's important to understand that the substitution rules apply on a _dependency specification_: it matches the requested dependency (`substitute XXX`) with a substitute (`using YYY`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesParallelIntegrationTest.groovy

                    }
                    tasks.producer.dependsOn(slow)
                }
                project(':consumer') {
                    dependencies {
                        // An external dependency that will be substituted with a dependency on project 'producer'
                        implementation "libs:producer:1.0"
                    }
                }
            """
    
            when:
            succeeds(":resolve", "--parallel")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         * The properties available for use in the configuration file. These are substituted into the configuration file.
         */
        @Nullable
        @Optional
        @Input
        public Map<String, Object> getConfigProperties() {
            return configProperties;
        }
    
        /**
         * The properties available for use in the configuration file. These are substituted into the configuration file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/README.adoc

    ```
    cd my-app
    echo "includeBuild '../my-utils'" >> settings.gradle
    gradle run
    ```
    
    With this configuration, the module dependencies from `my-app` to `my-utils` will always be substituted with project dependencies.
    
    While simple, this approach has the downside of modifying the `my-app` build.
    
    == Using separate 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)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

                buildFile << """
                    apply plugin: 'java-library'
                """
            }
        }
    
        def "EclipseProject model has closed project dependencies substituted in composite"() {
            setup:
            def workspace = eclipseWorkspace([project("buildA", buildA),
                                              project("buildB", buildB),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

            "2.0"      | "2.0"         | 'moduleId("myorg", "ModuleC", "2.0")' | false                | "substitute project(':ModuleC') using module('myorg:ModuleC:2.0')"
            "2.1"      | "2.0"         | 'moduleId("myorg", "ModuleC", "2.1")' | false                | "substitute project(':ModuleC') using module('myorg:ModuleC:2.1')"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top