Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for deflate (0.19 sec)

  1. cmd/admin-handlers.go

    		name:    name,
    		size:    int64(len(data)),
    		mode:    fileMode,
    		modTime: UTCNow(),
    		isDir:   false,
    		sys:     nil,
    	})
    	if zerr != nil {
    		return zerr
    	}
    	header.Method = zip.Deflate
    	zwriter, zerr := zipWriter.CreateHeader(header)
    	if zerr != nil {
    		return zerr
    	}
    	_, err := io.Copy(zwriter, bytes.NewReader(data))
    	return err
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
    User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.52 Safari/537.17
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    `)
    	res := []byte("Hello world!\n")
    
    	conn := newTestConn()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    function yaml-map-string-stringarray {
      declare -r name="${1}"
      declare -r encoded="${2}"
      declare -r kv_sep="${3:-:}"
      declare -r item_sep="${4:-,}"
    
      declare -a pairs # indexed array
      declare -A map # associative array
      IFS="${item_sep}" read -ra pairs <<<"${encoded}" # split on item_sep
      for pair in "${pairs[@]}"; do
        declare key
        declare value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <p>
    The built-in function <code>delete</code> removes the element with key
    <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
    type of <code>k</code> must be <a href="#Assignability">assignable</a>
    to the key type of <code>m</code>.
    </p>
    
    <pre class="grammar">
    delete(m, k)  // remove element m[k] from map m
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      LOG_INSTANCE_NAME=$(hostname)
      LOG_BOOT_ID=$(journalctl --list-boots | grep -E '^ *0' | awk '{print $2}')
      declare -Ag LOG_START_TIMES
      declare -ag LOG_TRAP_STACK
    
      LOG_STATUS_STARTED='STARTED'
      LOG_STATUS_COMPLETED='COMPLETED'
      LOG_STATUS_ERROR='ERROR'
    }
    
    # Sets an EXIT trap.
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    		s.listenerGroup.Add(1)
    	} else {
    		delete(s.listeners, ln)
    		s.listenerGroup.Done()
    	}
    	return true
    }
    
    func (s *Server) trackConn(c *conn, add bool) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if s.activeConn == nil {
    		s.activeConn = make(map[*conn]struct{})
    	}
    	if add {
    		s.activeConn[c] = struct{}{}
    	} else {
    		delete(s.activeConn, c)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/reflect/value.go

    		}
    		return Value{v.typ(), unsafe.Pointer(&t), v.flag}
    	}
    
    	if i < 0 || j < i || j > cap {
    		panic("reflect.Value.Slice: slice index out of bounds")
    	}
    
    	// Declare slice so that gc can see the base pointer in it.
    	var x []unsafe.Pointer
    
    	// Reinterpret as *unsafeheader.Slice to edit.
    	s := (*unsafeheader.Slice)(unsafe.Pointer(&x))
    	s.Len = j - i
    	s.Cap = cap - i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // Each listed package causes the execution of a separate test binary.
    // Files whose names begin with "_" (including "_test.go") or "." are ignored.
    //
    // Test files that declare a package with the suffix "_test" will be compiled as a
    // separate package, and then linked and run with the main test binary.
    //
    // The go tool will ignore a directory named "testdata", making it available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <p>A step can be the input to at most one derived step. Once you transform its value, catch its
     * exception, or combine it with others, you cannot do anything else with it, including declare it
     * to be the last step of the pipeline.
     *
     * <h4>Transforming</h4>
     *
     * To derive the next step by asynchronously applying a function to an input step's value, call
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    			a = append(a, "-ffile-prefix-map="+workdir+"=/tmp/go-build")
    		} else {
    			a = append(a, "-fdebug-prefix-map="+workdir+"=/tmp/go-build")
    		}
    	}
    
    	// Tell gcc not to include flags in object files, which defeats the
    	// point of -fdebug-prefix-map above.
    	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
    		a = append(a, "-gno-record-gcc-switches")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top