Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 625 for forced (1.71 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentReplacementIntegrationTest.groovy

            declaredReplacements 'a->c', 'b->c'
            expect:
            resolvedModules 'c'
        }
    
        def "declared modules coexist with forced versions"() {
            declaredDependencies 'a', 'b'
            declaredReplacements 'a->b'
            buildFile << "configurations.all { resolutionStrategy.force 'org:a:1', 'org:b:1'} "
            expect:
            resolvedModules 'b'
        }
    
        def "does not allow replacing with self"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    // if the list item content contains any blank lines
    // (meaning at least one item has multiple paragraphs)
    // then the list itself must be preceded by a blank line.
    // A preceding blank line can be forced by setting [List].ForceBlankBefore.
    func (l *List) BlankBefore() bool {
    	return l.ForceBlankBefore || l.BlankBetween()
    }
    
    // BlankBetween reports whether a reformatting of the comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

        }
    
        def "does not allow changing forced versions on a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
                configurations.a.resolutionStrategy.force "org.utils:api:1.3"
            """
    
            when: fails()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (2)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            }
        }
    
        private fun getFirTypeScope(type: KaFirType): FirTypeScope? = type.coneType.scope(
            firResolveSession.useSiteFirSession,
            getScopeSession(),
            CallableCopyTypeCalculator.Forced,
            requiredMembersPhase = FirResolvePhase.STATUS,
        )
    
        private fun getFirSyntheticPropertiesScope(coneType: ConeKotlinType, typeScope: FirTypeScope): FirSyntheticPropertiesScope? =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    | The dependency has a dynamic version and some versions did not match the <<variant_model#sec:variant-aware-matching, requested attributes>>.
    
    | Forced
    | The build enforces the version of the dependency through an enforced platform or resolution strategy.
    |===
    
    If multiple selection reasons exist, the insight report lists all of them.
    
    == Troubleshooting
    
    [[sec:resolving-version-conflict]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/math/big/prime.go

    // Miller-Rabin primality test, using pseudo-randomly chosen bases.
    // If force2 is true, one of the rounds is forced to use base 2.
    // See Handbook of Applied Cryptography, p. 139, Algorithm 4.24.
    // The number n is known to be non-zero.
    func (n nat) probablyPrimeMillerRabin(reps int, force2 bool) bool {
    	nm1 := nat(nil).sub(n, natOne)
    	// determine q, k such that nm1 = q << k
    	k := nm1.trailingZeroBits()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. docs/bucket/versioning/README.md

    Spark/Hadoop workloads which use Hadoop MR Committer v1/v2 algorithm upload objects to a temporary prefix in a bucket. These objects are 'renamed' to a different prefix on Job commit. Object storage admins are forced to configure separate ILM policies to expire these objects and their versions to reclaim space.
    
    ### Solution
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

    }
    
    dependencies {
      implementation 'gradle:foo:1.0', 'gradle:bar:1.0', 'gradle:baz:1.0'
    }
    
    configurations.all {
      exclude module: 'bar' //an exclusion
      resolutionStrategy.force 'gradle:baz:2.0' //forced module
    }
            """
    
            def classpath = getClasspath()
            classpath.assertHasLibs('foo-1.0.jar', 'baz-2.0.jar')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

        def "task with nested property defined by non-serializable Java lambda fails the build"() {
            // With configuration cache, all lambdas are forced to be serializable, so there won't be anything to report.
            Assume.assumeTrue(GradleContextualExecuter.isNotConfigCache())
    
            setupTaskClassWithConsumerProperty()
            file("buildSrc/src/main/java/Lambdas.java") <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public boolean isRerunTasks() {
            return rerunTasks;
        }
    
        /**
         * Specifies whether the cached task results should be ignored and each task should be forced to be executed.
         */
        public void setRerunTasks(boolean rerunTasks) {
            this.rerunTasks = rerunTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top