Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 636 for swapped (0.14 sec)

  1. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

            then:
            succeeds ":b:${language.compileTaskName}"
            skipped ":a:${language.compileTaskName}"
            skipped ":b:${language.compileTaskName}"
    
            when:
            resourceFile.delete()
    
            then:
            succeeds ":b:${language.compileTaskName}"
            skipped ":a:${language.compileTaskName}"
            skipped ":b:${language.compileTaskName}"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            given:
            buildFile << basicScalaProject()
            file('src/main/scala/MyClass.java') << javaClassWithCustomAnnotation()
    
            when:
            fails 'compileScala'
    
            then:
            skipped(':compileJava')
            executedAndNotSkipped(':compileScala')
            result.assertHasErrorOutput('error: package org.gradle does not exist')
            failure.assertHasCause('javac returned non-zero exit code')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

        private static final String TASK_PREFIX = "> Task ";
    
        //for example: ':a SKIPPED' or ':foo:bar:baz UP-TO-DATE' but not ':a'
        private static final Pattern SKIPPED_TASK_PATTERN = Pattern.compile("(> Task )?(:\\S+?(:\\S+?)*)\\s+((SKIPPED)|(UP-TO-DATE)|(NO-SOURCE)|(FROM-CACHE))");
    
        //for example: ':hey' or ':a SKIPPED' or ':foo:bar:baz UP-TO-DATE' but not ':a FOO'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

            withBuildCache().run "jar"
            then:
            noneSkipped()
    
            expect:
            withBuildCache().run "clean"
    
            when:
            withBuildCache().run "jar"
            then:
            skipped ":compileJava"
        }
    
        def "outputs are correctly loaded from cache"() {
            buildFile << """
                apply plugin: "application"
                application {
                    mainClass = "Hello"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                        case SUCCESS:
                            return Collections.singleton(success(classId, execution.getId()));
                        case SKIPPED:
                            return Collections.singleton(skipped(classId, execution.getId()));
                        case FAILURE:
                            return failures(classId, execution, allFailed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            when:
            succeeds("printCounts")
            then:
            skipped(':myTask')
            outputContains("outputFileCount = 1, inputFileCount = 2, inputValueCount = 1, nestedInputCount = 3, nestedInputValueCount = 1")
    
            when:
            file('build').deleteDir()
            withBuildCache().succeeds("printCounts")
            then:
            skipped(':myTask')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/runtime/tracestack.go

    			// up-to-date information about where it stopped, and like case (1), we match gcallers
    			// here.
    			//
    			// (3) We're called against a gp that we're not currently executing on, but that is in
    			// a syscall, in which case gp.syscallsp != 0. gp.syscall* contains the most up-to-date
    			// information about where it stopped, and like case (1), we match gcallers here.
    			if gp.syscallsp != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                        state = State.STOPPED;
                        // Clean the interrupted status
                        // because some test class processors do work here, e.g. JUnitPlatform
                        Thread.interrupted();
                    }
                }
            });
        }
    
        private synchronized void submitToRun(Runnable command) {
            if (state != State.STOPPED) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

      - Variant apiElements:
          - Declares capability org:foo:1.0 which cannot be mapped to Maven'''
            outputContains '''
      - Variant runtimeElements:
          - Declares capability org:bar:1.0 which cannot be mapped to Maven
          - Declares capability org:foo:1.0 which cannot be mapped to Maven'''
    
            for (def feature : features().findAll { it != MavenJavaModule.MAIN_FEATURE }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalCompileIntegrationTest.groovy

                #include MY_HEADER
    """
    
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
            run "mainExecutable"
            then:
            skipped compileTask
        }
    
        @ToBeFixedForConfigurationCache
        def "does not recompile when included header has the same name as a directory"() {
            given:
            buildFile << """
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top