Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 271 for Archiver (1.63 sec)

  1. src/internal/xcoff/ar.go

    }
    
    // Close closes the Archive.
    // If the Archive was created using NewArchive directly instead of OpenArchive,
    // Close has no effect.
    func (a *Archive) Close() error {
    	var err error
    	if a.closer != nil {
    		err = a.closer.Close()
    		a.closer = nil
    	}
    	return err
    }
    
    // NewArchive creates a new Archive for accessing an AIX big archive in an underlying reader.
    func NewArchive(r io.ReaderAt) (*Archive, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/archivePerformanceProject/build.gradle

                tarTree(file("archive.tar.gz")).each {
                    logger.info it.path
                }
            }
        }
    }
    
    tasks.register("zip", Zip) {
        from "archive-contents"
        archiveFileName = "archive.zip"
    }
    
    tasks.register("tar", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar"
    }
    
    tasks.register("tarGz", Tar) {
        from "archive-contents"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

                void beforeBuild(BuildContext context) {
                    def archive = tempDir.file(name)
                    if (!archive.exists()) {
                        builder(archiveContentsDir.usingNativeTools(), archive)
                    }
                    File target = new File(invocationSettings.projectDir, name)
                    FileUtils.copyFile(archive, target)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/archives/ReproducibleArchivesInterceptor.groovy

                return withReproducibleArchives ? "with reproducible archives" : "without reproducible archives"
            }
    
            protected void before(IMethodInvocation invocation) {
                if (withReproducibleArchives) {
                    AbstractIntegrationSpec instance = invocation.instance as AbstractIntegrationSpec
                    def initScript = instance.testDirectory.file('reproducible-archives-init.gradle')
                    initScript.text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

            where:
            taskName << ['build', 'check']
        }
    
        def "can define 'default' and 'archives' configurations prior to applying plugin"() {
            buildFile << """
                configurations {
                    create("default")
                    archives
                }
                apply plugin: 'base'
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. hack/unwanted-dependencies.json

          "github.com/gorilla/handlers": "unmaintained, archive mode",
          "github.com/gorilla/mux": "unmaintained, archive mode",
          "github.com/gorilla/rpc": "unmaintained, archive mode",
          "github.com/gorilla/schema": "unmaintained, archive mode",
          "github.com/gregjones/httpcache": "unmaintained, archive mode",
          "github.com/grpc-ecosystem/go-grpc-prometheus": "unmaintained, archive mode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperBadArchiveTest.groovy

        private static final String GRADLE_BIN_HASH = "/gradle-bin.zip.sha256"
        private static final String BAD_ARCHIVE_CONTENT = "bad archive content"
    
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        TestFile badArchive = file("bad-archive.zip") << BAD_ARCHIVE_CONTENT
    
        def "wrapper gets bad archive on 1 attempt"() {
            given:
            server.expect(server.head(GRADLE_BIN_ZIP))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/script_test.go

    		// go.sum was deleted.
    		rewrite = true
    		archive.Files = append(archive.Files[:gosumIdx], archive.Files[gosumIdx+1:]...)
    	case err == nil && gosumIdx < 0:
    		// go.sum was created.
    		rewrite = true
    		gosumIdx = gomodIdx + 1
    		archive.Files = append(archive.Files, txtar.File{})
    		copy(archive.Files[gosumIdx+1:], archive.Files[gosumIdx:])
    		archive.Files[gosumIdx] = txtar.File{Name: "go.sum", Data: newGosumData}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ZipExtractor.java

    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.annotation.Resource;
    
    import org.apache.commons.compress.archivers.ArchiveInputStream;
    import org.apache.commons.compress.archivers.ArchiveStreamFactory;
    import org.apache.commons.compress.archivers.zip.ZipArchiveEntry;
    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactoryForLegacy.java

     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.internal.file.archive.ZipEntry;
    import org.gradle.api.internal.file.archive.ZipInput;
    import org.gradle.api.internal.file.archive.impl.FileZipInput;
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top