Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 742 for comprises (0.17 sec)

  1. internal/config/compress/compress.go

    	cfg := Config{}
    	if err = config.CheckValidKeys(config.CompressionSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    
    	compress := env.Get(EnvCompressState, kvs.Get(config.Enable))
    	if compress == "" {
    		compress = env.Get(EnvCompress, "")
    	}
    	cfg.Enabled, err = config.ParseBool(compress)
    	if err != nil {
    		// Parsing failures happen due to empty KVS, ignore it.
    		if kvs.Empty() {
    			return cfg, nil
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // as "pointer"). A "0" bit means the word should be ignored by GC
    // (referred to as "scalar", though it could be a dead pointer value).
    //
    // Heap bitmaps
    //
    // The heap bitmap comprises 1 bit for each pointer-sized word in the heap,
    // recording whether a pointer is stored in that word or not. This bitmap
    // is stored at the end of a span for small objects and is unrolled at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/ArchiveOutputStreamFactory.java

    package org.gradle.api.internal.file.archive.compression;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.OutputStream;
    
    /**
     * Compresses the input
     */
    public interface ArchiveOutputStreamFactory {
    
        /**
         * Returns the output stream that is able to compress into the destination file
         *
         * @param destination the destination of the archive output stream
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  4. docs/compression/README.md

    MinIO server allows streaming compression to ensure efficient disk space usage.
    Compression happens inflight, i.e objects are compressed before being written to disk(s).
    MinIO uses [`klauspost/compress/s2`](https://github.com/klauspost/compress/tree/master/s2)
    streaming compression due to its stability and performance.
    
    This algorithm is specifically optimized for machine generated content.
    Write throughput is typically at least 500MB/s per CPU core,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/compress/gzip/example_test.go

    	// Make sure that bodyReader is always closed, so that the
    	// goroutine below will always exit.
    	defer bodyReader.Close()
    
    	// gzipWriter compresses data to httpWriter.
    	gzipWriter := gzip.NewWriter(httpWriter)
    
    	// errch collects any errors from the writing goroutine.
    	errch := make(chan error, 1)
    
    	go func() {
    		defer close(errch)
    		sentErr := false
    		sendErr := func(err error) {
    			if !sentErr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. pkg/kubelet/logs/container_log_manager.go

    	if err != nil {
    		return fmt.Errorf("failed to remove excess logs: %v", err)
    	}
    
    	// Compress uncompressed log files.
    	for _, l := range logs {
    		if strings.HasSuffix(l, compressSuffix) {
    			continue
    		}
    		if err := c.compressLog(l); err != nil {
    			return fmt.Errorf("failed to compress log %q: %v", l, err)
    		}
    	}
    
    	if err := c.rotateLatestLog(ctx, id, log); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. .github/workflows/mint/minio-compress-encrypt.yaml

    Harshavardhana <******@****.***> 1699046298 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/compress/zlib/writer_test.go

    }
    
    func testLevelDict(t *testing.T, fn string, b0 []byte, level int, d string) {
    	// Make dictionary, if given.
    	var dict []byte
    	if d != "" {
    		dict = []byte(d)
    	}
    
    	// Push data through a pipe that compresses at the write end, and decompresses at the read end.
    	piper, pipew := io.Pipe()
    	defer piper.Close()
    	go func() {
    		defer pipew.Close()
    		zlibw, err := NewWriterLevelDict(pipew, level, dict)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Furthermore, updating the initialization script logic uniformly can prove challenging.
    
    Custom Gradle distributions are a practical solution to this very problem.
    A custom Gradle distribution is comprised of the standard Gradle distribution plus one or many custom initialization scripts.
    The initialization scripts come bundled with the distribution and are applied every time the build is run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/run/run.go

    //
    // These rules are slightly different than other commands. Whether or not
    // 'go run' uses this mode, it interprets arguments ending with ".go" as files
    // and uses arguments up to the last ".go" argument to comprise the package.
    // If there are no ".go" arguments, only the first argument is interpreted
    // as a package path, since there can be only one package.
    func shouldUseOutsideModuleMode(args []string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top