Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 445 for SKIPPED (0.15 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             */
            String getIdentity();
        }
    
        public interface Result {
    
            /**
             * A message describing why the work was skipped.
             * <p>
             * Expected values are:
             * <ul>
             *     <li>{@code null} - the work was not skipped</li>
             *     <li>{@code NO-SOURCE} - executing the work was no necessary to produce the outputs</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/ExtractSymbolsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "extract is skipped when there are no changes"() {
            when:
            succeeds ":extractSymbolsDebug"
    
            then:
            executedAndNotSkipped":extractSymbolsDebug"
    
            when:
            succeeds ":extractSymbolsDebug"
    
            then:
            skipped":extractSymbolsDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/tasks/StripSymbolsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "strip is skipped when there are no changes"() {
            when:
            succeeds ":stripSymbolsDebug"
    
            then:
            executedAndNotSkipped":stripSymbolsDebug"
    
            when:
            succeeds ":stripSymbolsDebug"
    
            then:
            skipped":stripSymbolsDebug"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

                Build output does not contain the expected skipped tasks.
                Expected: []
                Actual: [:b]
                '''))
    
            when:
            result.assertTasksSkipped(":a")
    
            then:
            def e9 = thrown(AssertionError)
            error(e9).startsWith(error('''
                Build output does not contain the expected skipped tasks.
                Expected: [:a]
                Actual: [:b]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

            executedAndNotSkipped(":createFile")
    
            when:
            assert outputFile.delete()
            withBuildCache().run("createFile", "-Dfile.encoding=$fileEncoding")
            skipped(":createFile")
    
            then:
            output.contains("> Default charset: $fileEncoding")
            outputFile.text == "output"
    
            where:
            fileEncoding << DEFAULT_ENCODINGS
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

            file("build/${customReportDirectory}/test/jacocoTestReport.xml").exists()
            file("build/${customReportDirectory}/test/jacocoTestReport.csv").exists()
        }
    
        def "jacoco test report is skipped if no coverage data available"() {
            when:
            def executionResult = succeeds('jacocoTestReport')
            then:
            executionResult.assertTaskSkipped(':jacocoTestReport')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. .github/workflows/arm-cd.yml

          - name: Checkout repository for nightly (skipped for releases)
            if: ${{ github.event_name == 'schedule' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
            with:
              ref: 'nightly'
          - name: Checkout repository for releases (skipped for nightly)
            if: ${{ github.event_name == 'push' }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            then:
            taskWithSources.outputsHaveBeenRemoved()
            skipped(taskWithSources.taskPath)
    
            when:
            taskWithSources.outputFile << "Added by other task"
            run(taskWithSources.taskPath)
            then:
            taskWithSources.outputFile.exists()
            skipped(taskWithSources.taskPath)
        }
    
        @Issue("https://github.com/gradle/gradle/issues/973")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/ByteStreams.java

        long skipped = skipUpTo(in, n);
        if (skipped < n) {
          throw new EOFException(
              "reached end of stream after skipping " + skipped + " bytes; " + n + " bytes expected");
        }
      }
    
      /**
       * Discards up to {@code n} bytes of data from the input stream. This method will block until
       * either the full amount has been skipped or until the end of the stream is reached, whichever
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    	}
    	f.common.Helper()
    	f.common.Fail()
    }
    
    // Skipped reports whether the test was skipped.
    func (f *F) Skipped() bool {
    	// (*F).Skipped may be called by tRunner, which we should allow. However, we
    	// shouldn't allow direct (*F).Skipped calls from inside the (*F).Fuzz function.
    	if f.inFuzzFn {
    		panic("testing: f.Skipped was called inside the fuzz target, use t.Skipped instead")
    	}
    	f.common.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top