Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 771 for SKIPPED (0.1 sec)

  1. build-logic/performance-testing/src/test/kotlin/gradlebuild/performance/PerformanceTestPluginTest.kt

            assert(
                allTestsWereSkipped(junitXmlWith(tests = "2", skipped = "2"))
            )
    
            assert(
                !allTestsWereSkipped(junitXmlWith(tests = "2", skipped = "1"))
            )
        }
    
        private
        fun junitXmlWith(tests: String, skipped: String): File =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1002 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecutionOutcome.java

        UP_TO_DATE(true, true, "UP-TO-DATE"),
        SKIPPED(true, false, "SKIPPED"),
        NO_SOURCE(true, false, "NO-SOURCE"),
        EXECUTED(false, false, null);
    
        private final boolean skipped;
        private final boolean upToDate;
        private final String message;
    
        TaskExecutionOutcome(boolean skipped, boolean upToDate, @Nullable String message) {
            this.skipped = skipped;
            this.upToDate = upToDate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 16:09:32 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            outputContains('greetings')
    
            when:
            run(':c:run')
    
            then:
            skipped(":a:${language.compileTaskName}")
            skipped(":b:${language.compileTaskName}")
            skipped(":c:${language.compileTaskName}")
            outputContains('greetings')
    
            when:
            // Update the library class
            fixture.message = 'hello'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

                executed ":linkMainExecutable", ":mainExecutable"
            } else {
                skipped ":linkHelloSharedLibrary", ":helloSharedLibrary"
                skipped ":linkMainExecutable", ":mainExecutable"
            }
    
            when:
            run "installMainExecutable"
    
            then:
            skipped libraryCompileTask
            skipped mainCompileTask
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            executedAndNotSkipped getComponentTasks("foo:foo")
            skipped getComponentTasks("app")
    
            when:
            run "visualStudio"
    
            then:
            skipped ":appVisualStudioSolution"
            skipped getComponentTasks("foo:foo")
            skipped getComponentTasks("app")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            then:
            skipped ":project-lib:jar", ":verify"
    
            when: "changing project library source code"
            withChangedSourceIn("project-lib")
            succeeds "verify"
    
            then:
            executedAndNotSkipped ":project-lib:jar"
            skipped ":verify"
    
            when:
            succeeds "verify"
    
            then:
            skipped ":project-lib:jar", ":verify"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            file('build/input.txt').makeOlder()
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
    
            buildFile << """
                task other {}
            """
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
        }
    
        def "task with type declared in build script is not up-to-date after build script change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    # If the service is in system namespace, i.e., kube-system, istio-system, kube-public, the check will be skipped.
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service1
      namespace: kube-system  # Skipped because it's in a kube system namespace
    spec:
      selector:
        app: my-service1
      ports:
        - protocol: TCP
          port: 8080
          targetPort: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

            run "someTask"
    
            then:
            skipped(":someTask")
    
            // Change the build script
            when:
            buildFile << """
    task someOtherTask
    """
            and:
            run "someTask"
    
            then:
            executedAndNotSkipped(":someTask")
    
            when:
            run "someTask"
    
            then:
            skipped(":someTask")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/TaskStateInternalTest.groovy

            assertTrue(state.executed)
            assertFalse(state.skipped)
            assertFalse(state.upToDate)
            assertFalse(state.configurable)
            assertThat(state.failure, sameInstance(failure))
        }
    
        @Test
        public void canMarkTaskAsSkipped() {
            state.setOutcome(TaskExecutionOutcome.SKIPPED)
            assertTrue(state.executed)
            assertTrue(state.skipped)
            assertFalse(state.upToDate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 30 07:54:03 UTC 2020
    - 3.7K bytes
    - Viewed (0)
Back to top