Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 499 for Archiver (0.5 sec)

  1. tools/bug-report/pkg/archive/archive.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package archive
    
    import (
    	"archive/tar"
    	"compress/gzip"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    	"sync"
    )
    
    const (
    	bugReportSubdir        = "bug-report"
    	proxyLogsPathSubdir    = "proxies"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeElement.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.archive;
    
    import org.apache.commons.compress.archivers.ArchiveEntry;
    import org.gradle.api.file.FileVisitDetails;
    import org.gradle.api.file.RelativePath;
    import org.gradle.api.internal.file.AbstractFileTreeElement;
    import org.gradle.internal.file.Chmod;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.reproducible-archives.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    // Ensure the archives produced are reproducible
    tasks.withType<AbstractArchiveTask>().configureEach {
        isPreserveFileTimestamps = false
        isReproducibleFileOrder = true
        dirPermissions { unix("0755") }
        filePermissions { unix("0644") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 15:37:11 UTC 2024
    - 867 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    .Adding distribution archives to an Ivy publication
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/file/ArchiveOperationsIntegrationTest.groovy

            given:
            file("inputs/file.txt") << "some text"
            buildFile << """
                def createArchive = tasks.register("createArchive", ${archiveType.capitalize()}) {
                    destinationDirectory.set(layout.buildDirectory.dir("archives"))
                    archiveFileName.set("archive.$archiveType")
                    from("inputs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom

          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-users/</archive>
        </mailingList>
        <mailingList>
          <name>Maven Wagon Developer List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-dev/</archive>
        </mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom

          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-users/</archive>
        </mailingList>
        <mailingList>
          <name>Maven Wagon Developer List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-dev/</archive>
        </mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  8. docs/extensions/s3zip/README.md

    ## How to access to files inside a ZIP archive
    
    Accessing to contents inside an archive can be done using regular S3 API with a modified request path. You just need to append the path of the content inside the archive to the path of the archive itself.
    
    e.g.:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file.archive;
    
    import java.io.Closeable;
    import java.io.File;
    
    /**
     * A coordinator that can be used to manage access to decompressed data extracted from archive files like zip and tars.
     *
     * <p>
     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

    import org.gradle.api.internal.file.copy.CopySpecInternal;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.java.archives.Manifest;
    import org.gradle.api.java.archives.internal.CustomManifestInternalWrapper;
    import org.gradle.api.java.archives.internal.DefaultManifest;
    import org.gradle.api.java.archives.internal.ManifestInternal;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Internal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top