- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,142 for clean (0.04 sec)
-
.teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt
description = "Check Kotlin DSL in .teamcity/" applyDefaultSettings() steps { script { name = "RUN_MAVEN_CLEAN_VERIFY" scriptContent = "./mvnw clean verify -Dmaven.repo.local=../build" workingDir = ".teamcity" } script { name = "CLEAN_M2" executionMode = BuildStep.ExecutionMode.ALWAYS
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 30 04:10:13 UTC 2024 - 1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/extensions.kt
} } fun String.toCapitalized() = this.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() } /** * Define clean up rules for the project. * See https://www.jetbrains.com/help/teamcity/teamcity-data-clean-up.html#Clean-up+Rules * * @param historyDays days number of days to store build history .
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 10 03:25:26 UTC 2024 - 13.2K bytes - Viewed (0) -
cmd/os_windows.go
// an error. func readDirFn(dirPath string, filter func(name string, typ os.FileMode) error) error { // Ensure we don't pick up files as directories. globAll := filepath.Clean(dirPath) + `\*` globAllP, err := syscall.UTF16PtrFromString(globAll) if err != nil { return errInvalidArgument } data := &syscall.Win32finddata{} handle, err := syscall.FindFirstFile(globAllP, data)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Oct 18 18:08:15 UTC 2023 - 5.1K bytes - Viewed (0) -
cmd/untar.go
return fmt.Errorf("tar file error: %w%s", err, extra) // if the header is nil, just skip it (not sure how this happens) case header == nil: continue } name := header.Name switch path.Clean(name) { case ".", slashSeparator: continue } switch header.Typeflag { case tar.TypeDir: // = directory if o.ignoreDirs { continue }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 6K bytes - Viewed (2) -
istioctl/pkg/writer/envoy/configdump/testdata/versionsummary.txt
Istio Version: 1.10.0 Istio Proxy Version: 436f365a8007cd8a13a9f1321e7cce94bcc8883e
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jun 15 05:44:44 UTC 2021 - 142 bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
private fun scriptsCacheDirsUnder(cacheDir: File) = scriptCacheDirNames .map { File(cacheDir, it) } .filter { it.isDirectory } /** * Clean up cache files for older versions that aren't multi-process safe. */ fun FileSystemOperations.removeDodgyCacheFiles(dir: Directory) { if (dir.asFile.isDirectory) { for (cacheDir in dir.asFile.listFiles()) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 10 13:15:00 UTC 2024 - 5.1K bytes - Viewed (0) -
build-logic/build.gradle.kts
id("gradlebuild.cache-miss-monitor") } description = "Provides plugins that are used by Gradle subprojects" tasks.register("check") { dependsOn(subprojects.map { "${it.name}:check" }) } val clean by tasks.registering { val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties") val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties") doLast {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jan 24 02:52:56 UTC 2024 - 1.2K bytes - Viewed (0) -
.github/pull_request_template.md
- [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [ ] Run `mvn clean verify` to make sure basic checks pass. A more thorough check will be performed on your pull request automatically. - [ ] You have run the [Core IT][core-its] successfully.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Dec 20 13:14:27 UTC 2022 - 1.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt
// Let the rebuild complete successfully. filesystem.setFaultyRename(cacheDir / DiskLruCache.JOURNAL_FILE_BACKUP, false) taskFaker.runNextTask() assertJournalEquals("CLEAN a 1 1", "CLEAN b 1 1", "DIRTY e", "CLEAN c 1 1") } @ParameterizedTest @ArgumentsSource(FileSystemParamProvider::class) fun rebuildJournalFailureWithEditorsInFlightThenClose(parameters: Pair<FileSystem, Boolean>) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 14:55:09 UTC 2024 - 75.8K bytes - Viewed (0)