Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for IntegrationTestTimeout (0.41 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

     */
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @ExtensionAnnotation(IntegrationTestTimeoutExtension.class)
    public @interface IntegrationTestTimeout {
        int DEFAULT_TIMEOUT_SECONDS = 600;
    
        /**
         * Returns the duration after which the execution of the annotated feature or fixture
         * method times out.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutExtension.java

    public class IntegrationTestTimeoutExtension implements IAnnotationDrivenExtension<IntegrationTestTimeout> {
        @Override
        public void visitSpecAnnotation(IntegrationTestTimeout timeout, SpecInfo spec) {
            for (FeatureInfo feature : spec.getFeatures()) {
                if (!feature.getFeatureMethod().getReflection().isAnnotationPresent(IntegrationTestTimeout.class)) {
                    visitFeatureAnnotation(timeout, feature);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    
    @IntegrationTestTimeout(120)
    class WorkerDaemonExpirationIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            given:
            executer.requireIsolatedDaemons()
            executer.requireDaemon()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/InProcessGroovyCompilerIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.groovy.compile
    
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    
    @IntegrationTestTimeout(300)
    class InProcessGroovyCompilerIntegrationTest extends AbstractApiGroovyCompilerIntegrationSpec {
    
        def setup() {
            if (groovyVersionNumber < "2.0") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonWorkerExecutorSampleIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    
    @IntegrationTestTimeout(60)
    class WorkerDaemonWorkerExecutorSampleIntegrationTest extends AbstractWorkerExecutorSampleIntegrationTest {
        String getSampleName() {
            "workerApi/workerDaemon"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WaitForCompletionWorkerExecutorSampleIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import org.gradle.util.internal.TextUtil
    
    @IntegrationTestTimeout(60)
    class WaitForCompletionWorkerExecutorSampleIntegrationTest extends AbstractWorkerExecutorSampleIntegrationTest {
        String getSampleName() {
            "workerApi/waitForCompletion"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/NoIsolationWorkerExecutorSampleIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    
    @IntegrationTestTimeout(60)
    class NoIsolationWorkerExecutorSampleIntegrationTest extends AbstractWorkerExecutorSampleIntegrationTest {
        String getSampleName() {
            "workerApi/noIsolation"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 928 bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/integTest/groovy/org/gradle/process/internal/health/memory/MemoryStatusUpdateIntegrationTest.groovy

    package org.gradle.process.internal.health.memory
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    
    class MemoryStatusUpdateIntegrationTest extends AbstractIntegrationSpec {
    
        @IntegrationTestTimeout(60)
        def "can register a listener for JVM and OS memory status update events"() {
            given:
            buildFile << waitForMemoryEventsTask()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 14:36:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import org.gradle.internal.nativeintegration.ProcessEnvironment
    import org.gradle.internal.operations.BuildOperationDescriptor
    import org.gradle.internal.operations.BuildOperationListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ArtifactResolutionQueryIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import org.gradle.test.fixtures.server.http.BlockingHttpServer
    import org.junit.Rule
    import spock.lang.Issue
    
    class ArtifactResolutionQueryIntegrationTest extends AbstractHttpDependencyResolutionTest {
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top