Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for zip (0.04 sec)

  1. guava-tests/benchmark/com/google/common/hash/ChecksumBenchmark.java

    package com.google.common.hash;
    
    import com.google.caliper.BeforeExperiment;
    import com.google.caliper.Benchmark;
    import com.google.caliper.Param;
    import java.util.Random;
    import java.util.zip.Adler32;
    import java.util.zip.CRC32;
    import java.util.zip.Checksum;
    
    /**
     * Benchmarks for comparing {@link Checksum}s and {@link HashFunction}s that wrap {@link Checksum}s.
     *
     * <p>Parameters for the benchmark are:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 13 16:19:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/shell.go

    			}
    			data, err := repo.ReadFile(f[1], f[2], 10<<20)
    			if err != nil {
    				fmt.Fprintf(os.Stderr, "?%s\n", err)
    				continue
    			}
    			os.Stdout.Write(data)
    
    		case "zip":
    			if len(f) != 4 {
    				fmt.Fprintf(os.Stderr, "?usage: zip rev subdir output\n")
    				continue
    			}
    			subdir := f[2]
    			if subdir == "-" {
    				subdir = ""
    			}
    			rc, err := repo.ReadZip(f[1], subdir, 10<<20)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_retract_pseudo_base.txt

    git tag v1.0.0
    
    # Commit a trivial change so the default branch does not point to v1.0.0.
    git mv p.go q.go
    git commit -m 'trivial change'
    
    zip -r ../retract-pseudo.zip .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/transforms/ExplodeZipAndFindJars.groovy

    import org.gradle.api.tasks.PathSensitive
    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.work.DisableCachingByDefault
    
    import java.nio.file.Files
    import java.util.zip.ZipEntry
    import java.util.zip.ZipInputStream
    
    @CompileStatic
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class ExplodeZipAndFindJars implements TransformAction<TransformParameters.None> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 08 13:44:59 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenJarCreator.groovy

     * limitations under the License.
     */
    
    package gradlebuild.performance.generator
    
    import java.nio.file.attribute.FileTime
    import java.util.zip.Deflater
    import java.util.zip.ZipEntry
    import java.util.zip.ZipOutputStream
    
    class MavenJarCreator {
        int minimumSizeKB = 0
        int maximumSizeKB = 0
        Random random = new Random(1L)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 05 09:51:22 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. deps.xml

    			<param name="file.version" value="1.3.2" />
    		</antcall>
    		<!-- kopf -->
    		<get dest="${target.dir}/kopf.zip">
    			<url url="https://github.com/codelibs/elasticsearch-kopf/archive/${kopf.branch}.zip" />
    		</get>
    		<delete dir="${site.dir}/kopf" />
    		<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip">
    			<patternset>
    				<include name="elasticsearch-kopf-${kopf.branch}/_site/**" />
    			</patternset>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                "performanceTestFlakinessReport"
            else
                "performanceTestReport"
    
            artifactRules = """
    testing/$performanceProjectName/build/performance-test-results.zip
    """
            if (performanceTestProject.performanceTests.any { it.testProjects.isNotEmpty() }) {
                val dependencyBuildIds = performanceTestProject.performanceTests
                    .filter { it.testProjects.isNotEmpty() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:42 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/net/URLUtilTest.java

        public void testToCanonicalProtocol() throws Exception {
            assertEquals("jar", URLUtil.toCanonicalProtocol("wsjar"));
            assertEquals("jar", URLUtil.toCanonicalProtocol("jar"));
            assertEquals("zip", URLUtil.toCanonicalProtocol("zip"));
            assertEquals("file", URLUtil.toCanonicalProtocol("file"));
        }
    
        /**
         * @throws Exception
         */
        public void testToFile() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_download_svn.txt

    env SVN_SSH="svn_do_not_use_ssh"
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Attempting to get a module zip using svn should succeed.
    go mod download vcs-test.golang.org/svn/hello.svn@000000000001
    exists $GOPATH/pkg/mod/cache/download/vcs-test.golang.org/svn/hello.svn/@v/v0.0.0-20170922011245-000000000001.zip
    
    # Attempting to get a nonexistent module using svn should fail with a
    # reasonable message instead of a panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ZipEntryContextHasher.java

    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.io.IOException;
    
    /**
     * Hashes a zip entry (e.g. a class file in a jar, a manifest file, a properties file)
     */
    public interface ZipEntryContextHasher {
        /**
         * Returns {@code null} if the zip entry should be ignored.
         */
        @Nullable
        HashCode hash(ZipEntryContext zipEntryContext) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top