Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 131 for proxyv2 (0.16 sec)

  1. cmd/object-lambda-handlers.go

    	"Found":                           http.StatusFound,
    	"See Other":                       http.StatusSeeOther,
    	"Not Modified":                    http.StatusNotModified,
    	"Use Proxy":                       http.StatusUseProxy,
    	"Temporary Redirect":              http.StatusTemporaryRedirect,
    	"Permanent Redirect":              http.StatusPermanentRedirect,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    // Instead, we must never require two different casings of a file path.
    // Because we want the download cache to match the proxy protocol,
    // and because we want the proxy protocol to be possible to serve
    // from a tree of static files (which might be stored on a case-insensitive
    // file system), the proxy protocol must never require two different casings
    // of a URL path either.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion.go

    //
    // See convertServices() for the reverse conversion, used by Istio to handle ServiceEntry configs.
    // See kube.ConvertService for the conversion from K8S to internal Service.
    func ServiceToServiceEntry(svc *model.Service, proxy *model.Proxy) *config.Config {
    	gvk := gvk.ServiceEntry
    	se := &networking.ServiceEntry{
    		// Host is fully qualified: name, namespace, domainSuffix
    		Hosts: []string{string(svc.Hostname)},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. src/net/http/readrequest_test.go

    			"Accept-Language: en-us,en;q=0.5\r\n" +
    			"Accept-Encoding: gzip,deflate\r\n" +
    			"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" +
    			"Keep-Alive: 300\r\n" +
    			"Content-Length: 7\r\n" +
    			"Proxy-Connection: keep-alive\r\n\r\n" +
    			"abcdef\n???",
    
    		&Request{
    			Method: "GET",
    			URL: &url.URL{
    				Scheme: "http",
    				Host:   "www.techcrunch.com",
    				Path:   "/",
    			},
    			Proto:      "HTTP/1.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/proxy/healthcheck/healthcheck_test.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/sets"
    
    	basemetrics "k8s.io/component-base/metrics"
    	"k8s.io/kubernetes/pkg/proxy/metrics"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    type fakeListener struct {
    	openPorts sets.Set[string]
    }
    
    func newFakeListener() *fakeListener {
    	return &fakeListener{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *   <li>If a constructor or factory method takes a parameter whose type is interface, a dynamic
       *       proxy will be passed to the method. It's possible that the method body expects an
       *       instance method of the passed-in proxy to be of a certain value yet the proxy isn't aware
       *       of the assumption, in which case the equality check before and after serialization will
       *       fail.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. pilot/test/xds/fake.go

    	for _, sch := range collections.Pilot.All() {
    		watches = append(watches, sch.GroupVersionKind().String())
    	}
    	return watches
    }
    
    func (f *FakeDiscoveryServer) ConnectUnstarted(p *model.Proxy, watch []string) *adsc.ADSC {
    	f.t.Helper()
    	p = f.SetupProxy(p)
    	initialWatch := []*discovery.DiscoveryRequest{}
    	for _, typeURL := range watch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. api/api-rules/violation_exceptions.list

    API rule violation: list_type_missing,k8s.io/kube-proxy/config/v1alpha1,KubeProxyConfiguration,NodePortAddresses
    API rule violation: list_type_missing,k8s.io/kube-proxy/config/v1alpha1,KubeProxyIPVSConfiguration,ExcludeCIDRs
    API rule violation: list_type_missing,k8s.io/kubelet/config/v1,CredentialProvider,Args
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authenticator/config.go

    	var tokenAuthenticators []authenticator.Token
    	securityDefinitionsV2 := spec.SecurityDefinitions{}
    	securitySchemesV3 := spec3.SecuritySchemes{}
    
    	// front-proxy, BasicAuth methods, local first, then remote
    	// Add the front proxy authenticator if requested
    	if config.RequestHeaderConfig != nil {
    		requestHeaderAuthenticator := headerrequest.NewDynamicVerifyOptionsSecure(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    // GetProxyServiceTargets returns service instances co-located with a given proxy
    // TODO: this code does not return k8s service instances when the proxy's IP is a workload entry
    // To tackle this, we need a ip2instance map like what we have in service entry.
    func (esc *endpointSliceController) GetProxyServiceTargets(proxy *model.Proxy) []model.ServiceTarget {
    	eps := esc.slices.List(proxy.Metadata.Namespace, endpointSliceSelector)
    	var out []model.ServiceTarget
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top