Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,264 for because3 (0.15 sec)

  1. platforms/native/distributions-native/build.gradle.kts

        agentsRuntimeOnly(project(":instrumentation-agent"))
    
        pluginsRuntimeOnly(platform(project(":distributions-jvm"))) {
            because("the project dependency 'toolingNative -> ide' currently links this to the JVM ecosystem")
        }
        pluginsRuntimeOnly(platform(project(":distributions-publishing"))) {
            because("configuring publishing is part of the 'language native' support")
        }
    
        pluginsRuntimeOnly(project(":language-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 825 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                module('kt') alignsTo('2.9.4.1') byPublishedPlatform()
    
                doesNotGetPlatform("org", "platform", "2.7.9") // because of conflict resolution
                doesNotGetPlatform("org", "platform", "2.9.0") // because of conflict resolution
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencyResolveDetailsSpec.groovy

        }
    
        def "can provide a custom selection reason with useTarget"() {
            def details = newDependencyResolveDetails("org", "foo", "1.0")
    
            when:
            details.because("forcefully upgrade dependency")
            details.useTarget("org:bar:2.0")
    
            then:
            details.target.toString() == 'org:bar:2.0'
            with (getReason(details)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	// Wait for exitingSyscall to drain.
    	//
    	// It may not monotonically decrease to zero, but in the limit it will always become
    	// zero because the world is stopped and there are no available Ps for syscall-exited
    	// goroutines to run on.
    	//
    	// Because we set gen before checking this, and because exitingSyscall is always incremented
    	// *before* traceAcquire (which checks gen), we can be certain that when exitingSyscall is zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/build.gradle.kts

        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native")) {
            because("ModelRuleCachingIntegrationTest requires a rules implementation")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            verificationFile.isFile()
    
            // TODO - get a false cache miss here because the content of the metadata file changes during the previous build
            when:
            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because file 'gradle/verification-metadata.xml' has changed.".replace('/', File.separator))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinStandaloneScriptWarningsIntegrationTest.kt

        private
        fun ExecutionFailure.assertHasDetailedErrorOutput() =
            assertHasErrorOutput(
                """
                * What went wrong:
                Script compilation error:
    
                  Line 3: SomeDeprecatedType()
                          ^ 'SomeDeprecatedType' is deprecated. BECAUSE
    
                1 error
                """.trimIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScopeTest.kt

                }
                dependencies {
                    constraints {
                        classpath("in-block:accessor")
                        classpath("in-block:accessor-with-action") {
                            because("just because")
                        }
                    }
                }
            }
    
            inOrder(constraintHandler) {
                verify(constraintHandler).add(eq("classpath"), eq("direct:accessor"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicNamedEntityInstantiatorTest.groovy

            instantiator.registerFactory(TestType, {})
    
            when:
            instantiator.create("foo", Integer)
    
            then:
            InvalidUserDataException e = thrown()
            e.message == "Cannot create a Integer because this type is not known to this container. Known types are: TestType"
            e.cause instanceof NoFactoryRegisteredForTypeException
        }
    
        def "can retrieve all creatable types and supported type names"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue28926.go

    func main() {
    	var e interface{}
    	switch e := e.(type) {
    	case G: // ERROR "undefined: G|undefined type .*G"
    		e.M() // ok: this error should be ignored because the case failed its typecheck
    	case E: // ERROR "undefined: E|undefined type .*E"
    		e.D() // ok: this error should be ignored because the case failed its typecheck
    	case Stringer:
    		// ok: this error should not be ignored to prove that passing legs aren't left out
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 721 bytes
    - Viewed (0)
Back to top