Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Cookie1 (0.12 sec)

  1. pilot/pkg/networking/util/util.go

    		if !found {
    			cookiePath = "/"
    		}
    		// The cookie is using TTL=0, which means they are session cookies (browser is not saving the cookie, expires
    		// when the tab is closed). Most pods don't have ability (or code) to actually persist cookies, and expiration
    		// is better handled in the cookie content (and consistently in the header value - which doesn't have
    		// persistence semantics).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. samples/bookinfo/src/details/details.rb

          # SkyWalking trace headers.
          'sw8',
    
          # Application-specific headers to forward.
          'end-user',
          'user-agent',
    
          # Context and session specific headers
          'cookie',
          'authorization',
          'jwt'
      ]
    
      request.each do |header, value|
        if incoming_headers.include? header then
          headers[header] = value
        end
      end
    
      return headers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ## 0.29.0
    
    * Add support for declaring a `Response` parameter:
        * This allows declaring:
            * [Response Cookies](https://fastapi.tiangolo.com/advanced/response-cookies/).
            * [Response Headers](https://fastapi.tiangolo.com/advanced/response-headers/).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

    -python-framework-2n10 title: Introduction to the fastapi python framework - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-how-to-add-basic-and-cookie-authentication-a45c85ef47d3 title: FastAPI — How to add basic and cookie authentication - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-google-as-an-external-authentication-provider-3a527672cf33 title: FastAPI — Google...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/productpage.py

            # SkyWalking trace headers.
            'sw8',
    
            # Application-specific headers to forward.
            'user-agent',
    
            # Context and session specific headers
            'cookie',
            'authorization',
            'jwt',
        ]
        # For Zipkin, always propagate b3 headers.
        # For Lightstep, always propagate the x-ot-span-context header.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    				// as UNHEALTHY ('coarse state'), which is what will show in config dumps.
    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    					Statuses: []core.HealthStatus{
    						core.HealthStatus_HEALTHY,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    										HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    											HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    												Name: "hash-cookie",
    												Ttl:  &durationpb.Duration{Nanos: 100},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				}))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    		}
    	}
    
    	for _, location := range rule.FromCookies {
    		if len(location) == 0 {
    			errs = multierror.Append(errs, errors.New("cookie name must be non-empty string"))
    		}
    	}
    
    	for _, claimAndHeaders := range rule.OutputClaimToHeaders {
    		if claimAndHeaders == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top