Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 755 for ZIP (0.04 sec)

  1. platforms/jvm/plugins-java-library/src/test/groovy/org/gradle/api/plugins/JavaLibraryDistributionPluginTest.groovy

            when:
            project.pluginManager.apply(JavaLibraryDistributionPlugin)
    
            then:
            def task = project.tasks.distZip
            task instanceof Zip
            task.archiveFileName.get() == "test-project.zip"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. hack/jenkins/update-dockerized.sh

    kube::etcd::install
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    make update
    
    if [[ -d "${ARTIFACTS:-}" ]]; then
      # ignore the .git, _output directories and zip up everything else
      zip -y -r "${ARTIFACTS}/updated-files.zip" . -x '*.git*' -x '*_output*'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 00:02:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

        }
        into layout.buildDirectory.dir("toArchive")
    }
    // end::copy-directory-including-itself-example[]
    
    // tag::create-archive-example[]
    tasks.register('packageDistribution', Zip) {
        archiveFileName = "my-distribution.zip"
        destinationDirectory = layout.buildDirectory.dir('dist')
    
        from layout.buildDirectory.dir("toArchive")
    }
    // end::create-archive-example[]
    
    // tag::rename-on-copy-example[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

    import org.gradle.api.artifacts.PublishArtifact
    import org.gradle.api.internal.plugins.DefaultArtifactPublicationSet
    import org.gradle.api.tasks.Delete
    import org.gradle.api.tasks.bundling.Tar
    import org.gradle.api.tasks.bundling.Zip
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    
    import static org.gradle.api.tasks.TaskDependencyMatchers.dependsOn
    import static org.hamcrest.CoreMatchers.instanceOf
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/ClasspathNormalizer.java

     * but ignores the order and timestamps of files in directories and ZIP/JAR files.
     *
     * This normalization applies to not only files directly on the classpath, but also
     * to any ZIP/JAR files found inside directories or nested inside other ZIP/JAR files.
     *
     * @see org.gradle.api.tasks.Classpath
     *
     * @since 4.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 28 21:23:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/PathNormalisingKeyFileStoreTest.groovy

        }
    
        def "can move to filestore"() {
            when:
            store.move("!.zip", file("abc"))
            store.move("  ", file("def"))
    
            then:
            fsBase.file("_.zip").text == "abc"
            fsBase.file("__").text == "def"
        }
    
        def "can add to filestore"() {
            when:
            store.add("!.zip", { File file -> file.text = "abc" } as Action<File>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_sum_readonly.txt

    # When a sum is needed to load a .zip file, we get a more specific error.
    # The .zip file is not downloaded.
    ! go list rsc.io/quote
    stderr '^missing go.sum entry for module providing package rsc.io/quote; to add:\n\tgo mod download rsc.io/quote$'
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    
    # The error is attached to the package from the missing module. We can load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 15:42:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            assert tempUnzipDir.file("gradle-${distribution.version.baseVersion.version}", "bin", "gradle").delete()
            TestFile tempZipDir = temporaryFolder.createDir("temp-zip-foo")
            TestFile malformedDistZip = new TestFile(tempZipDir, "gradle-${distribution.version.version}-bin.zip")
            tempUnzipDir.zipTo(malformedDistZip)
            prepareWrapper(malformedDistZip.toURI())
    
            when:
            result = wrapperExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-eager/kotlin/build.gradle.kts

    // tag::container-api[]
    tasks.create("greeting") {
        doLast { println("Hello, World!") }
    }
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.create<Zip>("docZip") {
        archiveFileName = "doc.zip"
        from("doc")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 258 bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    // individually, we ship them in an uncompressed zip file.
    // Used this way, the zip file format serves as a commonly readable
    // container for the individual small files. We choose zip over tar
    // because zip files have a contiguous table of contents, making
    // individual file lookups faster, and because the per-file overhead
    // in a zip file is considerably less than tar's 512 bytes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top