Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,912 for because3 (0.11 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                import org.gradle.work.*;
    
                @DisableCachingByDefault(because = "test task")
                public class MyTask extends DefaultTask {
                    // Should be ignored because it's not a getter
                    public void getVoid() {
                    }
    
                    // Should be ignored because it's not a getter
                    public int getWithParameter(int count) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

    import static org.hamcrest.CoreMatchers.startsWith
    
    class AntProjectIntegrationTest extends AbstractIntegrationTest {
        @Test
        @ToBeFixedForConfigurationCache(because = "AntTarget task")
        void antTargetsAndGradleTasksCanDependOnEachOther() {
            testFile('build.xml') << """
    <project>
        <target name='target1' depends='target2,initialize'>
            <touch file='build/target1.txt'/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

                        println "Retrying test because socket disappeared."
                        return cleanProjectDir(specification)
                    }
    
                    for (def daemon : daemonsFixture.allDaemons) {
                        if (daemonStoppedWithSocketExceptionOnWindows(daemon)) {
                            println "Retrying test because socket disappeared. Check log of daemon with PID ${daemon.context.pid}."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/runtime/tracemap.go

    	hash     uintptr
    	id       uint64
    	data     []byte
    }
    
    // stealID steals an ID from the table, ensuring that it will not
    // appear in the table anymore.
    func (tab *traceMap) stealID() uint64 {
    	return tab.seq.Add(1)
    }
    
    // put inserts the data into the table.
    //
    // It's always safe for callers to noescape data because put copies its bytes.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

                            ${blockingServer.callFromBuildUsingExpression("projectName")}
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForIsolatedProjects(because = "allprojects")
        def "tasks run in parallel when no max usages specified"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/maven/build.gradle.kts

        api(project(":resources"))
    
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.maven3Model) {
            because("We use the metadata model classes to create POM metadata files for components")
        }
        api(libs.maven3RepositoryMetadata) {
            because("We use the metadata model classes to create repository metadata files")
        }
    
        implementation(project(":functional"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/CharSequenceReader.java

       *   even back to `this.seq`. However, that may suggest that we're defending against concurrent
       *   mutation, which is not an actual risk because we use `synchronized`.
       * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the
       *   method, while it would avoid the instance field `seq` would still access the instance field
       *   `pos`.
       */
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/CharSequenceReader.java

       *   even back to `this.seq`. However, that may suggest that we're defending against concurrent
       *   mutation, which is not an actual risk because we use `synchronized`.
       * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the
       *   method, while it would avoid the instance field `seq` would still access the instance field
       *   `pos`.
       */
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/build.gradle.kts

        runtimeOnly(project(":testing-jvm"))
    
        testFixturesApi(project(":base-services")) {
            because("test fixtures export the Action class")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures export the ConsoleOutput class")
        }
        testFixturesApi(project(":tooling-api")) {
            because("test fixtures export the EclipseWorkspace and EclipseWorkspaceProject classes")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            // second cannot be loaded from the cache because it overlaps with first
            result.assertTaskNotSkipped(second)
    
            when:
            withBuildCache().run(first)
            then:
            // first overwrites second's output if executed on its own
            sharedOutput.text == "Generated by ${first}"
            // first is not loaded from cache because of overlap
            result.assertTaskNotSkipped(first)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top