Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for empty (0.32 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                }
                val errorMessage = "Found non-empty test files dir:\n$nonEmptyDirs"
                if (reportOnly.get()) {
                    println(errorMessage)
                } else {
                    throw GradleException(errorMessage)
                }
            }
        }
    
        /**
         * Returns non-empty directories: the mapping of directory to at most 4 leftover files' relative path in the directory.
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  2. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 1095
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 1140
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble with empty remote http cache",
      "durations" : [ {
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 26.3K bytes
    - Viewed (1)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

        }
    
        private
        fun RichReport.toAssertionMessage(message: String) =
            if (isEmpty) "$message with an empty report"
            else "$message\n${toText().prependIndent("    ")}"
    
        private
        fun runKotlinBinaryCompatibilityCheck(v1: String, v2: String, block: CheckResult.() -> Unit = {}): CheckResult =
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  4. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            assertEquals(TaskOutcome.SUCCESS, result.task(":successful-test-with-leftover:test")!!.outcome)
    
            assertEquals(1, StringUtils.countMatches(result.output, "Found non-empty test files dir"))
            assertEquals(1, StringUtils.countMatches(result.output, "Failed to stop service 'testFilesCleanupBuildService'"))
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 14 12:35:52 GMT 2023
    - 10.6K bytes
    - Viewed (0)
  5. .cm/plugins/filters/byCodeowner/ignore/index.js

            return doThrow(
                `path must be a string, but got \`${originalPath}\``,
                TypeError
            )
        }
    
        // We don't know if we should ignore EMPTY, so throw
        if (!path) {
            return doThrow(`path must not be empty`, TypeError)
        }
    
        // Check if it is a relative path
        if (checkPath.isNotRelative(path)) {
            const r = '`path.relative()`d'
            return doThrow(
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  6. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble with empty local cache",
        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        }, {
          "testProject" : "largeMonolithicJavaProject",
    Json
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon May 06 09:01:23 GMT 2024
    - 35.5K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

            model,
            performanceTestCoverage,
            stage,
            bucketIndex,
            "Empty Performance Test bucket $index",
            mapOf()
        )
    }
    
    class TestProjectSplitBucket(val testProject: String, private val number: Int, val scenarios: List<PerformanceTestDuration>) : PerformanceTestBucket {
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Feb 19 11:22:56 GMT 2024
    - 15.3K bytes
    - Viewed (0)
Back to top