Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for deflate (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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