Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for httpCookie (1.47 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    properties: consistentHash: allOf: - oneOf: - not: anyOf: - required: - httpHeaderName - required: - httpCookie - required: - useSourceIp - required: - httpQueryParameterNa - required: - httpHeaderName - required: - httpCookie - required: - useSourceIp - required: - httpQueryParameterNa - oneOf: - not: anyOf: - required: - ringHash - required: - maglev - required: - ringHash - required: - maglev properties: httpCookie: description: Hash based on HTTP cookie. properties: name: description: Name of the cookie....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	}
    
    	// simple load balancing is always valid
    	consistentHash := settings.GetConsistentHash()
    	if consistentHash != nil {
    		httpCookie := consistentHash.GetHttpCookie()
    		if httpCookie != nil && httpCookie.GetName() == "" {
    			errs = AppendValidation(errs, fmt.Errorf("name required for HttpCookie"))
    		}
    		if consistentHash.MinimumRingSize != 0 { // nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

    import assertk.fail
    import java.io.FileNotFoundException
    import java.io.IOException
    import java.io.InterruptedIOException
    import java.net.CookieManager
    import java.net.CookiePolicy
    import java.net.HttpCookie
    import java.net.HttpURLConnection
    import java.net.InetAddress
    import java.net.ProtocolException
    import java.net.Proxy
    import java.net.SocketTimeoutException
    import java.net.UnknownHostException
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: %s
    spec:
      host: %s
      trafficPolicy:
        loadBalancer:
          consistentHash:
            httpCookie:
              name: session-cookie
              ttl: 3600s
    `, svcName, svcName)
    
    			cookieWithoutTTLDest := fmt.Sprintf(`
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    						MinimumRingSize: 1024,
    						HashKey: &networking.LoadBalancerSettings_ConsistentHashLB_HttpCookie{
    							HttpCookie: &networking.LoadBalancerSettings_ConsistentHashLB_HTTPCookie{
    								Name: "test",
    								Ttl:  &duration,
    							},
    						},
    					},
    				},
    			},
    			valid: true,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    									ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{
    										MinimumRingSize: uint64(tt.ringSize),
    										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)
Back to top