Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for buffering (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/routing.py

                    )
                    response.headers["Cache-Control"] = "no-cache"
                    # For Nginx proxies to not buffer server sent events
                    response.headers["X-Accel-Buffering"] = "no"
                    response.headers.raw.extend(solved_result.response.headers.raw)
                elif is_json_stream:
                    # Generator endpoint: stream as JSONL
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  2. cmd/site-replication.go

    func isReplicated(cntReplicated, total int, valSet set.StringSet) bool {
    	if cntReplicated > 0 && cntReplicated < total {
    		return false
    	}
    	if len(valSet) > 1 {
    		// mismatch - one or more sites has differing tags/policy
    		return false
    	}
    	return true
    }
    
    // isIAMPolicyReplicated returns true if count of replicated IAM policies matches total
    // number of sites and IAM policies are identical.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 184.8K bytes
    - Click Count (1)
Back to Top