Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for archiver (0.24 sec)

  1. .teamcity/.mvn/wrapper/maven-wrapper.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Implementation-Title: maven-wrapper Implementation-Version: 0.5.6 Archiver-Version: Provisio Archiver Built-By: manfred Specification-Title: maven-wrapper Implementation-Vendor-Id: io.takari Created-By: Takari Inc. Build-Jdk: 1.8.0_232 Specification-Version: 0.5.6 META-INF/maven/io.takari/maven-wrapper/pom.properties version=0.5.6 groupId=io.takari artifactId=maven-wrapper org/apache/maven/wrapper/BootstrapMainStarter.class package org.apache.maven.wrapper;...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:archives]]
    === Understanding archive creation
    
    Archives are essentially self-contained file systems, and Gradle treats them as such.
    This is why working with archives is similar to working with files and directories.
    
    Out of the box, Gradle supports the creation of ZIP and TAR archives and, by extension, Java's JAR, WAR, and EAR formats—Java's archive formats are all ZIPs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/lib.go

    	}
    	return path
    }
    
    type machoUpdateFunc func(ctxt *Link, exef *os.File, exem *macho.File, outexe string) error
    
    // archive builds a .a archive from the hostobj object files.
    func (ctxt *Link) archive() {
    	if ctxt.BuildMode != BuildModeCArchive {
    		return
    	}
    
    	exitIfErrors()
    
    	if *flagExtar == "" {
    		*flagExtar = "ar"
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/index.vnd",
    				"application/iotp",
    				"application/ipp",
    				"application/isup",
    				"application/java-archive",
    				"application/vnd.android.package-archive",
    				"application/x-tika-java-enterprise-archive",
    				"application/x-tika-java-web-archive",
    				"application/x-tika-unix-dump",
    				"application/java-serialized-object",
    				"application/javascript",
    				"application/json",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    }
    
    // dopack copies the package src to dst,
    // appending the files listed in extra.
    // The archive format is the traditional Unix ar format.
    func dopack(dst, src string, extra []string) {
    	bdst := bytes.NewBufferString(readfile(src))
    	for _, file := range extra {
    		b := readfile(file)
    		// find last path element for archive member name
    		i := strings.LastIndex(file, "/") + 1
    		j := strings.LastIndex(file, `\`) + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. .bazelrc

    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    build --noincompatible_remove_legacy_whole_archive
    build --features=-force_no_whole_archive
    
    # TODO(mihaimaruseac): Document this option or remove if no longer needed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	// non-critical debug setting.
    	if !t.compileOnly && !t.short {
    		t.registerTest("GODEBUG=gcstoptheworld=2 archive/zip",
    			&goTest{
    				variant: "runtime:gcstoptheworld2",
    				timeout: 300 * time.Second,
    				short:   true,
    				env:     []string{"GODEBUG=gcstoptheworld=2"},
    				pkg:     "archive/zip",
    			})
    	}
    
    	// morestack tests. We only run these in long-test mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    
    [[sec:inferred_task_dependencies]]
    === Inferred task dependencies
    
    Consider an archive task that packages the output of the `processTemplates` task. A build author will see that the archive task obviously requires `processTemplates` to run first and so may add an explicit `dependsOn`. However, if you define the archive task like so:
    
    .Inferred task dependency via task outputs
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== Reproducible archives can change compared to past versions
    
    Gradle changes the compression library used for creating archives from an Ant based one to https://commons.apache.org/proper/commons-compress/[Apache Commons Compress™].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top