Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for Thresholds (2.5 sec)

  1. cluster/gce/gci/configure-helper.sh

      elif [[ -n "${ALLOCATE_NODE_CIDRS:-}" ]]; then
        params+=("--allocate-node-cidrs=${ALLOCATE_NODE_CIDRS}")
      fi
      if [[ -n "${TERMINATED_POD_GC_THRESHOLD:-}" ]]; then
        params+=("--terminated-pod-gc-threshold=${TERMINATED_POD_GC_THRESHOLD}")
      fi
      if [[ "${ENABLE_IP_ALIASES:-}" == 'true' ]]; then
        params+=("--cidr-allocator-type=${NODE_IPAM_MODE}")
        params+=("--configure-cloud-routes=false")
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // chunking mode, writing directly to (4) instead, if (2) has no
    // buffered data. More generally, we could short-circuit from (1) to
    // (3) even in chunking mode if the write size from (1) is over some
    // threshold and nothing is in (2).  The answer might be mostly making
    // bufferBeforeChunkingSize smaller and having bufio's fast-paths deal
    // with this instead.
    func (w *response) Write(data []byte) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	if allocs > 10 {
    		t.Errorf("allocs per map assignment: want at most 10 got %f", allocs)
    	}
    	// Empirical testing shows that with capacity hint single run will trigger 3 allocations and without 91. I set
    	// the threshold to 10, to not make it overly brittle if something changes in the initial allocation of the
    	// map, but to still catch a regression where we keep re-allocating in the hashmap as new entries are added.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top