Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for Delete (0.68 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/ResolverEventLogger.kt

                logDir.listFiles { file ->
                    file.isFile && file.name.matches(resolverLogFilenameRegex) && Date(file.lastModified()).before(expiration)
                }.forEach { it.delete() }
            }
    
        private
        fun readyForCleanup(logDir: File, cleanup: () -> Unit) =
            logDir.resolve(".cleanup").run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_update_unrelated_sum.txt

    go mod edit -replace rsc.io/quote@v1.5.2=rsc.io/quote@v1.5.1
    go get example.com/upgrade@v0.0.2
    ! grep '^rsc.io/quote v1.5.2 ' go.sum
    grep '^rsc.io/quote v1.5.1 ' go.sum
    cp go.mod.orig go.mod
    cp go.sum.orig go.sum
    
    
    # Delete the new version's zip (but not mod) from the cache and go offline.
    # 'go get' should fail when fetching the zip.
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    env GOPROXY=off
    ! go get example.com/upgrade@v0.0.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    func main() {
    	println("clean as a whistle")
    }
    
    -- usesInternalCgo/main.go --
    
    package main
    
    import (
    	"runtime/cgo"
    )
    
    func main() {
    	q := "hello"
    	h := cgo.NewHandle(q)
    	h.Delete()
    }
    
    -- usesExplicitCgo/main.go --
    
    package main
    
    /*
    int meaningOfLife() { return 42; }
    */
    import "C"
    
    func main() {
         println(C.meaningOfLife())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. ReadMe.md

    It's expected that `verification-metadata.xml` should only be updated with the commits that modify the build. There are some tips how
    to perform such updates:
    
    - Delete `components` section of `verification-metadata.xml` to avoid stockpiling of old unused dependencies. You may use the following command:
    ```bash
    #macOS
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_use_deleted.txt

    go work use -r .
    cmp go.work go.work.want
    
    -- go.work --
    go 1.18
    
    use (
    	.
    	./sub
    	./sub/dir/deleted
    )
    -- go.work.want --
    go 1.18
    
    use ./sub/dir
    -- sub/README.txt --
    A go.mod file has been deleted from this directory.
    In addition, the entire subdirectory sub/dir/deleted
    has been deleted, along with sub/dir/deleted/go.mod.
    -- sub/dir/go.mod --
    module example/sub/dir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 376 bytes
    - Viewed (0)
  6. maven-compat/src/test/projects/project-dependencies-resolver/it0063/jdk/jre/placeholder.txt

    need it so that empty directory does not get deleted...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 53 bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/sync/61696.md

    The [Map.Clear] method deletes all the entries, resulting in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 17:07:25 UTC 2024
    - 105 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download.txt

    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.mod
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.zip
    exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.3-pre1
    
    # download repopulates deleted files and directories independently.
    rm $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.info
    go mod download
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.3-pre1.info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/pruned v0.1.0 => ./pruned
    )
    
    require (
    	example.net/deleted v0.1.0
    	example.net/deleted v0.1.0 // redundant
    	example.net/lazy v0.1.0
    )
    -- go.mod.tidy --
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/deleted v0.1.0 => ./d1
    	example.net/deleted v0.2.0 => ./d2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/project-builder/it0063/jdk/jre/placeholder.txt

    need it so that empty directory does not get deleted...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 19 21:45:50 UTC 2021
    - 53 bytes
    - Viewed (0)
Back to top