Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for headerv3 (0.12 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                            \n Input: GET /foo HTTP/1.1 my-header1: foo
                                            my-header2: bar my-header3: baz \n Config:
                                            remove: [\"my-header1\", \"my-header3\"] \n
                                            Output: GET /foo HTTP/1.1 my-header2: bar"
                                          items:
                                            type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    // per RFC 7540 section 8.1.2.2: Connection-Specific Header Fields.
    // Certain headers are special-cased as okay but not transmitted later.
    func http2checkConnHeaders(req *Request) error {
    	if v := req.Header.Get("Upgrade"); v != "" {
    		return fmt.Errorf("http2: invalid Upgrade request header: %q", req.Header["Upgrade"])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	ExecCommandParam = "command"
    
    	// Name of header that specifies stream type
    	StreamType = "streamType"
    	// Value for streamType header for stdin stream
    	StreamTypeStdin = "stdin"
    	// Value for streamType header for stdout stream
    	StreamTypeStdout = "stdout"
    	// Value for streamType header for stderr stream
    	StreamTypeStderr = "stderr"
    	// Value for streamType header for data stream
    	StreamTypeData = "data"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // Defaults to HTTP.
      // +optional
      optional string scheme = 4;
    
      // Custom headers to set in the request. HTTP allows repeated headers.
      // +optional
      // +listType=atomic
      repeated HTTPHeader httpHeaders = 5;
    }
    
    // HTTPHeader describes a custom header to be used in HTTP probes
    message HTTPHeader {
      // The header field name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

    * The `--insecure-allow-any-token` flag has been removed from the API server. Users of the flag should use impersonation headers instead for debugging. ([#49045](https://github.com/kubernetes/kubernetes/pull/49045), [@ericchiang](https://github.com/ericchiang))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Fixed a bug that unintentionally overrides custom Accept headers in http (live-/readiness)-probes if the header is in lowercase. ([#114606](https://github.com/kubernetes/kubernetes/pull/114606), [@tuunit](https://github.com/tuunit))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		if hotAlign > 0 && b.Hotness&ssa.HotPgoInitial == ssa.HotPgoInitial {
    			// So far this has only been shown profitable for PGO-hot loop headers.
    			// The Hotness values allows distinctions betwen initial blocks that are "hot" or not, and "flow-in" or not.
    			// Currently only the initial blocks of loops are tagged in this way;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top