Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 170 for substitutions (0.44 sec)

  1. 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)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * ```
         * interface A<T> { fun x(): T }
         * interface B : A<Int> { }
         * ```
         *
         * The B will have a member B.foo(): Int, this member is generated inside interface B with substitution T -> Int,
         * such members are SUBSTITUTION_OVERRIDE
         */
        SUBSTITUTION_OVERRIDE,
    
        /**
         * Member symbol which was generated by compiler when using `by` interface delegation
         * e.g,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

            b1Model.projectDependencies.isEmpty()
            b1Model.classpath.collect { it.file.name }.sort() == ['buildC-1.0.jar']
        }
    
        def "Closed project tasks are run in composite with substitution"() {
            setup:
            def projectsLoadedHandler = new IntermediateResultHandlerCollector<Void>()
            def buildFinishedHandler = new IntermediateResultHandlerCollector<List<EclipseProject>>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

          [(UnsignedIntTensor $r)]>;
    
    // Performs a substitution of FloorDiv, pseudo code below:
    //
    //  return floor(div(x, y))
    def : Pat<(TF_FloorDivOp AnyTensor:$l, AnyTensor:$r),
              (MHLO_FloorOp
               (CHLO_BroadcastDivOp $l, $r, (BinBroadcastDimensions $l, $r))),
              [(IEEEFloatTensor $l)]>;
    
    // Performs a substitution of FloorDiv for integer tensors, which required
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpIntegrationTest.groovy

            classpath2.libs.size() == 2
            classpath2.lib("myartifact-1.2.3.jar")
            classpath2.lib("myartifactdep-1.0.jar")
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void "respects dependency substitution rules"() {
            // given:
            mavenRepo.module("gradle", "foo").publish()
            mavenRepo.module("gradle", "bar").publish()
            mavenRepo.module("gradle", "baz").publish()
    
            // when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                            }
                        }
                    }
                    configurations.implementation.resolutionStrategy.dependencySubstitution.all {
                        // To trigger the substitution: include dependency substitution rule to include external dependencies in the execution graph calculation
                    }
    
                    tasks.resolveArtifacts.collection = configurations.implementation.incoming.artifactView {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                                substitute module('org:foo') because "SUBSTITUTION 1" using module('org:foo:3.0')
                                substitute module('org:foo') because "SUBSTITUTION 2" using module('org:bar:2.0')
                                all {
                                    it.useTarget('org:bar:2.0', "SUBSTITUTION 3")
                                }
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

            if (preferProjectModules) {
                preferProjectModulesOption = 'preferProjectModules()'
            }
            if (!autoDependencySubstitution) { //only interpret depSubstitution in scenario without auto substitution (multi-project builds)
                depSubstitutionOption = depSubstitution;
            } else {
                winner = 'projectId("ModuleC")'
            }
    
            buildFile << """
                task check {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyState.java

            if (target instanceof ModuleComponentSelector) {
                return ((ModuleComponentSelector) target).getModule();
            }
            throw new IllegalStateException("Substitution with artifacts for something else than a module is not supported");
        }
    
    
        public boolean isForced() {
            if (!ruleDescriptors.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.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 PersistentCompositeDependencySubstitutionCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top