Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for forcing (0.25 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

                        module('org:core:2.7.9')
                        module('org:annotations:2.7.9')
                    }
                }
            }
        }
    
        def "fails if forcing a virtual platform version by forcing multiple leaves with different versions through resolutionStrategy"() {
            repository {
                ['2.7.9', '2.9.4', '2.9.4.1'].each {
                    path "databind:$it -> core:$it"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                        forced()
                        module('org:core:2.7.9')
                        module('org:annotations:2.7.9')
                    }
                }
            }
        }
    
        def "fails if forcing a virtual platform version by forcing multiple leaves with different versions"() {
            repository {
                ['2.7.9', '2.9.4', '2.9.4.1'].each {
                    path "databind:$it -> core:$it"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    	case arg_mem_R_pm_R_postindex:
    		// Treat [<Rn>],+/-<Rm> like [<Rn>,+/-<Rm>{,<shift>}]{!}
    		// by forcing shift bits to <<0 and P=0, W=0 (postindex=true).
    		return decodeArg(arg_mem_R_pm_R_shift_imm_W, x&^((1<<7-1)<<5|1<<24|1<<21))
    
    	case arg_mem_R_pm_R_W:
    		// Treat [<Rn>,+/-<Rm>]{!} like [<Rn>,+/-<Rm>{,<shift>}]{!}
    		// by forcing shift bits to <<0.
    		return decodeArg(arg_mem_R_pm_R_shift_imm_W, x&^((1<<7-1)<<5))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

    import org.gradle.api.Action;
    import org.gradle.api.provider.Property;
    
    import java.util.Set;
    import java.util.concurrent.TimeUnit;
    
    /**
     * Defines the strategies around dependency resolution.
     * For example, forcing certain dependency versions, substitutions, conflict resolutions or snapshot timeouts.
     * <p>
     * Examples:
     * <pre class='autoTested'>
     * plugins {
     *     id 'java' // so that there are some configurations
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

            ALL,
            CONSTRAINTS_ONLY,
            DEPENDENCIES_ONLY,
            FORCED_ALL,
            FORCED_CONSTRAINTS_ONLY,
            FORCED_DEPENDENCIES_ONLY;
    
            DependencyFilter forcing() {
                switch (this) {
                    case ALL:
                        return FORCED_ALL;
                    case CONSTRAINTS_ONLY:
                        return FORCED_CONSTRAINTS_ONLY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    [WARNING]
    ====
    Forcing a version of a dependency requires a conscious decision.
    Changing the version of a transitive dependency might lead to runtime errors if external libraries do not properly function without them.
    Consider upgrading your source code to use a newer version of the library as an alternative approach.
    ====
    
    In general, forcing dependencies is done to downgrade a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestTaskIntegrationTest.groovy

            executer.withArguments("--max-workers=${maxWorkers}", "-i")
            succeeds 'test'
    
            then:
            output.contains("test.maxParallelForks ($maxParallelForks) is larger than max-workers ($maxWorkers), forcing it to $maxWorkers")
    
            where:
            maxWorkers                                | _
            Runtime.runtime.availableProcessors()     | _
            Runtime.runtime.availableProcessors() - 1 | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/conversion.go

    		return err
    	}
    
    	// drop init container annotations so they don't show up as differences when receiving requests from old clients
    	out.Annotations = dropInitContainerAnnotations(out.Annotations)
    
    	// Forcing the value of TerminationGracePeriodSeconds to 1 if it is negative.
    	// Just for Pod, not for PodSpec, because we don't want to change the behavior of the PodTemplate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. subprojects/core/build.gradle.kts

        runtimeOnly(libs.groovyNio)
        runtimeOnly(libs.groovySql)
        runtimeOnly(libs.groovyTest)
    
        // The bump to SSHD 2.10.0 causes a global exclusion for `groovy-ant` -> `ant-junit`, so forcing it back in here
        // TODO investigate why we depend on SSHD as a platform for internal-integ-testing
        runtimeOnly(libs.antJunit)
    
        testImplementation(project(":platform-jvm"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

            'toRootComponent()'                | 'dependencyScope' | "toRootComponent()"                     || [ProperMethodUsage.RESOLVABLE]
        }
    
        def "forcing resolve of a non-resolvable configuration via calling invalid internal API method #methodName for role #role warns and then throws an exception"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top