Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for Delete (8.48 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                file.also(onFileAccess).outputStream()
    
            override fun inputStream(): InputStream =
                throw UnsupportedOperationException()
    
            override fun delete() {
                if (file.exists()) {
                    Files.delete(file.toPath())
                }
            }
    
            override fun moveFrom(file: File) {
                Files.move(file.toPath(), this.file.toPath(), StandardCopyOption.ATOMIC_MOVE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt

            fileSystemOperations.removeOldVersionsFromDir(workerDir.dir("wrapper/dists"), expireDistributionCache, "gradle-", "-bin")
            fileSystemOperations.delete {
                delete(workerDir.dir("wrapper/dists/dist"))
            }
    
            // Remove caches that weren't multi-process safe and may be corrupt
            fileSystemOperations.removeDodgyCacheFiles(workerDir.dir("caches"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.install.gradle.kts

            if (libDir.list()?.any { it.matches(Regex("^gradle.*\\.jar")) } == true) {
                return@also
            }
        }
    
        throw RuntimeException("Install directory $dir does not look like a Gradle installation. Cannot delete it to install.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 07:17:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. .teamcity/README.md

        Otherwise, TeamCity complains "Can't find the previous revision, please commit current settings first".
      - If anything bad happens, feel free to delete the project you created and retry (you may need to apply `Synchronization disabled` before deleting it).  
        
    If no errors, your new pipeline will be displayed on TeamCity web UI:
    
    ```
    Gradle
    |------ Master
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

            }
        }
    
        private
        fun MetadataFileChange.writeChange(output: File) {
            when (this) {
                is MetadataNotChanged -> Unit
                is MetadataRemoved -> output.delete()
                is MetadataModified -> this.newFile.copyTo(output, overwrite = true)
            }
        }
    
        private
        fun writeSuperTypes(superTypesFile: File, superTypes: Properties) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    # 24
    hg tag --user 'Russ Cox <******@****.***>' --date '2018-07-18T21:26:33-04:00' -m 'Added tag v2.0.0 for changeset 814fce58e83a' -r 814fce58e83a v2.0.0
    
    hg book --delete v1
    hg book --delete v2
    hg book --force -r 16 master
    
    hg log -G --debug
    
    hg tags
    cmp stdout .hg-tags
    hg branches
    cmp stdout .hg-branches
    hg bookmarks
    cmp stdout .hg-bookmarks
    
    -- .hg-tags --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

     * a shorthand string notation for configuring existing tasks.
     *
     * ```kotlin
     * tasks {
     *     "build" {
     *         dependsOn("clean")
     *     }
     *     "clean"(Delete::class) {
     *         delete("./build")
     *     }
     * }
     * ```
     *
     * @param configuration The expression to configure this [TaskContainer] with.
     * @return The given [TaskContainer].
     */
    inline operator fun TaskContainer.invoke(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

     * A class to keep a [KtUserType] to shorten and what shape the shortened result has to be. [shortenedReference] is the expected result of
     * shortening in a string form. If [shortenedReference] is null, it means the shortening will simply delete the qualifier. Note that
     * currently the only usage of [shortenedReference] is the case we have the import-alias. For example, [shortenedReference] will be
     * "AliasType" when we shorten:
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list.txt

    stdout '.*mod[\\/]rsc.io[\\/]quote@v1.5.2$'
    
    # downloaded dependencies are read-only
    exists -readonly $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    exists -readonly $GOPATH/pkg/mod/rsc.io/quote@v1.5.2/buggy
    
    # go clean -modcache can delete read-only dependencies
    go clean -modcache
    ! exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    
    # list {{.Dir}} shows replaced directories
    cp go.mod2 go.mod
    go list -mod=mod -f {{.Dir}} rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. README.md

    ## Overview
    
    * Full-Featured ORM
    * Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism, Single-table inheritance)
    * Hooks (Before/After Create/Save/Update/Delete/Find)
    * Eager loading with `Preload`, `Joins`
    * Transactions, Nested Transactions, Save Point, RollbackTo to Saved Point
    * Context, Prepared Statement Mode, DryRun Mode
    * Batch Insert, FindInBatches, Find To Map
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:20:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top