Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for request_headers (0.22 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

         * @param promisedStreamId server-initiated stream ID.  Must be an even number.
         * @param requestHeaders minimally includes `:method`, `:scheme`, `:authority`, and `:path`.
         */
        @Throws(IOException::class)
        fun pushPromise(
          streamId: Int,
          promisedStreamId: Int,
          requestHeaders: List<Header>,
        )
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if resultConfig != nil {
    				if resultConfig.CAContentProvider == nil {
    					t.Error("missing requestheader verify")
    				}
    				resultConfig.CAContentProvider = nil
    			}
    
    			if !reflect.DeepEqual(resultConfig, testcase.expectConfig) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 15:01:56 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  3. 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)
  4. tests/integration/pilot/gateway_test.go

    						check.OK(),
    						check.RequestHeader("My-Added-Header", "added-value")),
    				})
    			})
    			t.NewSubTest("mesh-grpc").Run(func(t framework.TestContext) {
    				_ = apps.A[0].CallOrFail(t, echo.CallOptions{
    					To:    apps.C,
    					Count: 1,
    					Port: echo.Port{
    						Name: "grpc",
    					},
    					Check: check.And(
    						check.OK(),
    						check.RequestHeader("My-Added-Header", "added-grpc-value")),
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tracing.go

    					},
    				},
    			}
    			tags = append(tags, env)
    		case *telemetrypb.Tracing_CustomTag_Header:
    			header := &tracing.CustomTag{
    				Tag: tagName,
    				Type: &tracing.CustomTag_RequestHeader{
    					RequestHeader: &tracing.CustomTag_Header{
    						Name:         tag.Header.Name,
    						DefaultValue: tag.Header.DefaultValue,
    					},
    				},
    			}
    			tags = append(tags, header)
    		case *telemetrypb.Tracing_CustomTag_Literal:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options_test.go

    				RetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    			},
    			BootstrapToken: &kubeoptions.BootstrapTokenAuthenticationOptions{},
    			OIDC:           s.Authentication.OIDC,
    			RequestHeader:  &apiserveroptions.RequestHeaderAuthenticationOptions{},
    			ServiceAccounts: &kubeoptions.ServiceAccountAuthenticationOptions{
    				Lookup:           true,
    				ExtendExpiration: true,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    							},
    							Check: check.And(
    								check.NoError(),
    								check.Status(tc.code),
    								check.Each(func(r echoClient.Response) error {
    									if _, f := r.RequestHeaders["Handled-By-Egress-Gateway"]; tc.gateway && !f {
    										return fmt.Errorf("expected to be handled by gateway. response: %s", r)
    									}
    									return nil
    								})),
    						}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/options/options_test.go

    					RetryBackoff: apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    				},
    				BootstrapToken: &kubeoptions.BootstrapTokenAuthenticationOptions{},
    				OIDC:           s.Authentication.OIDC,
    				RequestHeader:  &apiserveroptions.RequestHeaderAuthenticationOptions{},
    				ServiceAccounts: &kubeoptions.ServiceAccountAuthenticationOptions{
    					Lookup:           true,
    					ExtendExpiration: true,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. 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)
  10. pkg/controlplane/apiserver/config.go

    	if err != nil {
    		return nil, nil, err
    	}
    	config.ClusterAuthenticationInfo.ClientCA = clientCAProvider
    
    	requestHeaderConfig, err := opts.Authentication.RequestHeader.ToAuthenticationRequestHeaderConfig()
    	if err != nil {
    		return nil, nil, err
    	}
    	if requestHeaderConfig != nil {
    		config.ClusterAuthenticationInfo.RequestHeaderCA = requestHeaderConfig.CAContentProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top