Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Archiver (0.36 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

         */
        static final Collection<String> EXPECTED_PROVIDED_SCOPE_EXCLUSIONS_GA =
                Collections.unmodifiableCollection(Arrays.asList(
                        "org.apache.maven:maven-archiver", "org.apache.maven:maven-jxr", "org.apache.maven:plexus-utils"));
    
        private static final String ISSUES_KEY = DefaultPluginValidationManager.class.getName() + ".issues";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    archive = theArchive2
                    beginsWith = 'modification 2'
                }
            """
    
            when:
            run 'verify1', 'verify2'
    
            then:
            result.assertTasksExecutedAndNotSkipped(':update1', ':update2', ':verify1', ':verify2')
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. cmd/s3-zip-handlers.go

    	archiveTypeMetadataKey = ReservedMetadataPrefixLower + "archive-type" // "x-minio-internal-archive-type"
    	archiveInfoMetadataKey = ReservedMetadataPrefixLower + "archive-info" // "x-minio-internal-archive-info"
    
    	// Peek into a zip archive
    	xMinIOExtract = "x-minio-extract"
    )
    
    // splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. Makefile

    	@cp -af minio-release/$(GOOS)-$(GOARCH)/minio.$(VERSION)* minio-release/$(GOOS)-$(GOARCH)/archive/
    	@pkger -r $(VERSION) --ignore
    
    hotfix-push: hotfix
    	@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* ******@****.***:~/releases/server/minio/hotfixes/linux-amd64/
    	@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* ******@****.***:~/releases/server/minio/hotfixes/linux-amd64/archive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                        }
                    }
                }
            }
    
            return location;
        }
    
        /**
         * Unpacks and installs the given JDK archive. Returns a file pointing to the java home directory.
         */
        public File provisionFromArchive(JavaToolchainSpec spec, File jdkArchive, URI uri) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/archive/tar/writer_test.go

    	}
    	// Test that we can get a long name back out of the archive.
    	reader := NewReader(&buf)
    	hdr, err = reader.Next()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if hdr.Name != longName {
    		t.Fatal("Couldn't recover long file name")
    	}
    }
    
    func TestPaxSymlink(t *testing.T) {
    	// Create an archive with a large linkname
    	fileinfo, err := os.Stat("testdata/small.txt")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  9. build/lib/release.sh

        images_dir="${RELEASE_IMAGES}/${arch}"
        mkdir -p "${images_dir}"
    
        # registry.k8s.io is the constant tag in the docker archives, this is also the default for config scripts in GKE.
        # We can use KUBE_DOCKER_REGISTRY to include and extra registry in the docker archive.
        # If we use KUBE_DOCKER_REGISTRY="registry.k8s.io", then the extra tag (same) is ignored, see release_docker_image_tag below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. doc/godebug.md

    There is no plan to remove any of these settings.
    
    ### Go 1.20
    
    Go 1.20 introduced support for rejecting insecure paths in tar and zip archives,
    controlled by the [`tarinsecurepath` setting](/pkg/archive/tar/#Reader.Next)
    and the [`zipinsecurepath` setting](/pkg/archive/zip/#NewReader).
    These default to `tarinsecurepath=1` and `zipinsecurepath=1`,
    preserving the behavior of earlier versions of Go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top