Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,523 for because1 (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(libs.kotlinCoroutines)
        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
        }
        integTestImplementation(project(":language-groovy")) {
            because("ClassBytesRepositoryTest makes use of Groovydoc task.")
        }
        integTestImplementation(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

            assertThat(spec.stringLiteral, equalTo("foo${'$'}{'${'$'}'}${'$'}{'${'$'}'}bar"))
        }
    
        interface NonExistingType
    
        @Test
        fun `non existing type is represented as Inaccessible because NonAvailable`() {
    
            val type = SchemaType.of<NonExistingType>()
    
            val projectSchema = availableProjectSchemaFor(
                schemaWithExtensions("buildScan" to type),
                ClassPath.EMPTY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/UndeclaredDependencyResolutionIntegrationTest.groovy

    // This tests current behaviour, not desired behaviour
    class UndeclaredDependencyResolutionIntegrationTest extends AbstractIntegrationSpec implements ArtifactTransformTestFixture {
        @ToBeFixedForConfigurationCache(because = "Transform nodes are not serialized when transform of project artifact is not declared as a dependency of another node")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildlifecycle/basic/kotlin/build.gradle.kts

    println("This is executed during the configuration phase.")
    
    tasks.register("configured") {
        println("This is also executed during the configuration phase, because :configured is used in the build.")
    }
    
    tasks.register("test") {
        doLast {
            println("This is executed during the execution phase.")
        }
    }
    
    tasks.register("testBoth") {
        doFirst {
            println("This is executed first during the execution phase.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 638 bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUpdater.java

            try {
                daemonRegistry.markState(connectorAddress, Busy);
            } catch (DaemonRegistry.EmptyRegistryException e) {
                LOGGER.warn("Cannot mark daemon as busy because the registry is empty.");
            }
        }
    
        public void onCompleteActivity() {
            LOGGER.info("Marking the daemon as idle, address: {}", connectorAddress);
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

                'validation_problems', 'unsupported_value_type')
            expectThatExecutionOptimizationDisabledWarningIsDisplayed(executer,
                "Type 'TaskWithInput' property 'nestedInput.nested' has @Input annotation used on type 'java.net.URL' or a property of this type. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            failure.assertHasNoCause("could not be started because the command line exceed operating system limits.")
    
            where:
            method                    | taskName
            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
            // The test does not work with the JavaExec task because the task resolves the executable prior to starting the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13799.go

    	// occurs.
    
    	var fn func() // ERROR "moved to heap: fn$"
    	i := 0        // ERROR "moved to heap: i$"
    	for ; i < maxI; i++ {
    		// var fn func() // this makes it work, because fn stays off heap
    		j := 0        // ERROR "moved to heap: j$"
    		fn = func() { // ERROR "func literal escapes to heap$"
    			m[i] = append(m[i], 0)
    			if j < 25 {
    				j++
    				fn()
    			}
    		}
    		fn()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

     * For JUnit Jupiter tests, because it's a <a href="https://junit.org/junit5/docs/current/user-guide/#writing-tests-meta-annotations">Meta-Annotation</a>,
     *   tests annotated by this is handled by `JUnitPlatformOptions.includeTags/excludeTags`.
     * For JUnit 4 tests, because we run them in Vintage engine, we have to annotate the tests with `@Category(Flaky.class)` so it can be transparently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            when:
            configurationCacheRun "help", "-D${SYSTEM_PROJECT_PROPERTIES_PREFIX}gradleProp=2"
    
            then:
            outputContains '2!'
            outputContains "because the set of system properties prefixed by '${SYSTEM_PROJECT_PROPERTIES_PREFIX}' has changed."
            configurationCache.assertStateStored()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top