Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 271 for Archiver (1.6 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

        Artifacts
            - $builtMainClassesPath (artifactType = java-classes-directory)
    
    --------------------------------------------------
    Variant archives
    --------------------------------------------------
    Configuration for archive artifacts.
    
    Capabilities
        - org:myLib:1.0 (default capability)
    Artifacts
        - $jarPath (artifactType = jar)
    
    --------------------------------------------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                archive {
                    duplicatesStrategy = DuplicatesStrategy.INCLUDE
                }
            """
            when:
            run 'archive'
    
            def archive = archiveFixture(archiveType, file("build/test.${archiveType}"))
            then:
            archive.assertContainsFile('file1.txt', 2)
            archive.assertContainsFile('file2.txt', 1)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.archive
    
    import org.apache.commons.compress.archivers.zip.ZipFile
    import org.apache.commons.io.IOUtils
    import org.gradle.api.JavaVersion
    import org.gradle.internal.lazy.Lazy
    import org.gradle.internal.serialize.JavaClassUtil
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. Jenkinsfile

        // notify completion
        stage("Notifications") {
            jenkinsNotify()
        }
    }
    
    def archiveDirs(stageId, archives) {
        archives.each { archivePrefix, pathToContent ->
            if (fileExists(pathToContent)) {
                zip(zipFile: "${archivePrefix}-${stageId}.zip", dir: pathToContent, archive: true)
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. Jenkinsfile.s390x

        echo "[FAILURE-001] ${e}"
        currentBuild.result = "FAILURE"
        throw e
    }
    
    def archiveDirs(stageId, archives) {
        archives.each { archivePrefix, pathToContent ->
            if (fileExists(pathToContent)) {
                zip(zipFile: "${archivePrefix}-${stageId}.zip", dir: pathToContent, archive: true)
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    // It just can't be the one make.bash built, because it knows it is already that
    // version and will skip the download.
    package main
    
    import (
    	"archive/tar"
    	"archive/zip"
    	"compress/flate"
    	"compress/gzip"
    	"crypto/sha256"
    	"flag"
    	"fmt"
    	"io"
    	"io/fs"
    	"log"
    	"os"
    	"path"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"time"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/archive/tar/common.go

    var (
    	ErrHeader          = errors.New("archive/tar: invalid tar header")
    	ErrWriteTooLong    = errors.New("archive/tar: write too long")
    	ErrFieldTooLong    = errors.New("archive/tar: header field too long")
    	ErrWriteAfterClose = errors.New("archive/tar: write after close")
    	ErrInsecurePath    = errors.New("archive/tar: insecure file path")
    	errMissData        = errors.New("archive/tar: sparse file references non-existent data")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/resource/TextResourceIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.archives.TestReproducibleArchives
    import org.gradle.internal.deprecation.Documentation
    import org.gradle.test.fixtures.keystore.TestKeyStore
    import org.gradle.test.fixtures.server.http.HttpServer
    import org.gradle.util.internal.GUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/pack/pack.go

    const (
    	arHeader = "!<arch>\n"
    )
    
    // An Archive represents an open archive file. It is always scanned sequentially
    // from start to end, without backing up.
    type Archive struct {
    	a        *archive.Archive
    	files    []string // Explicit list of files to be processed.
    	pad      int      // Padding bytes required at end of current archive file
    	matchAll bool     // match all files in archive
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    include::sample[dir="snippets/providers/services/groovy",files="build.gradle[tags=archive-op]"]
    ====
    
    Here is an example using `javax.inject.Inject`:
    
    ====
    include::sample[dir="snippets/providers/services/kotlin",files="build.gradle.kts[tags=archive-op-inject]"]
    include::sample[dir="snippets/providers/services/groovy",files="build.gradle[tags=archive-op-inject]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top