Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for request_headers (0.24 sec)

  1. tests/integration/ambient/baseline_test.go

    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if !f {
    			return fmt.Errorf("X-Request-Id not set, is L7 processing enabled?")
    		}
    		return nil
    	})
    }
    
    func IsL4() echo.Checker {
    	return check.Each(func(r echot.Response) error {
    		// TODO: response headers?
    		_, f := r.RequestHeaders[http.CanonicalHeaderKey("X-Request-Id")]
    		if f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

          --external-hostname="${EXTERNAL_HOSTNAME}" \
          --requestheader-username-headers=X-Remote-User \
          --requestheader-group-headers=X-Remote-Group \
          --requestheader-extra-headers-prefix=X-Remote-Extra- \
          --requestheader-client-ca-file="${CERT_DIR}/request-header-ca.crt" \
          --requestheader-allowed-names=system:auth-proxy \
          --proxy-client-cert-file="${CERT_DIR}/client-auth-proxy.crt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

            wait()
          }
          return events.removeAt(0)
        }
    
        @Synchronized override fun onRequest(
          streamId: Int,
          requestHeaders: List<Header>,
        ): Boolean {
          assertThat(streamId).isEqualTo(2)
          events.add(requestHeaders)
          notifyAll()
          return false
        }
    
        @Synchronized override fun onHeaders(
          streamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsRequestHeaderCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "request_header";
        }
    
        @Override
        public String xgetAliasName() {
            return "request_header";
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    			TokenRequestTimeout: 10 * time.Second,
    			WebhookRetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    			ClientCert:          apiserveroptions.ClientCertAuthenticationOptions{},
    			RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    				UsernameHeaders:     []string{"x-remote-user"},
    				GroupHeaders:        []string{"x-remote-group"},
    				ExtraHeaderPrefixes: []string{"x-remote-extra-"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    								Value: "literal-value",
    							},
    						},
    					},
    					{
    						Tag: "custom_tag_request_header",
    						Type: &tracing.CustomTag_RequestHeader{
    							RequestHeader: &tracing.CustomTag_Header{
    								Name:         "custom_tag_request_header_name",
    								DefaultValue: "custom-defaulted-value-request-header",
    							},
    						},
    					},
    				}, customTracingTags()...),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top