Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Cookie2 (0.24 sec)

  1. tests/integration/pilot/common/routing.go

    						scopes.Framework.Infof("no response")
    						return
    					}
    					if res.Cookies() == nil {
    						scopes.Framework.Infof("no cookies")
    						return
    					}
    					var sessionCookie *http.Cookie
    					for _, cookie := range res.Cookies() {
    						if cookie.Name == "session-cookie" {
    							sessionCookie = cookie
    							break
    						}
    					}
    					if sessionCookie != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        )
        val cookieManager = CookieManager(null, CookiePolicy.ACCEPT_ORIGINAL_SERVER)
        val cookie = HttpCookie("c", "cookie")
        cookie.domain = server.hostName
        cookie.path = "/"
        val portList = server.port.toString()
        cookie.portlist = portList
        cookieManager.cookieStore.add(server.url("/").toUri(), cookie)
        client =
          client.newBuilder()
            .cookieJar(JavaNetCookieJar(cookieManager))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r0 != 0 {
    		errcode = syscall.Errno(r0)
    	}
    	return
    }
    
    func AddDllDirectory(path *uint16) (cookie uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procAddDllDirectory.Addr(), 1, uintptr(unsafe.Pointer(path)), 0, 0)
    	cookie = uintptr(r0)
    	if cookie == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func AssignProcessToJobObject(job Handle, process Handle) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Set-Cookie: a=FIRST")
            .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
            .addHeader("Cache-Control: max-age=0")
            .body("A")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Set-Cookie: a=SECOND")
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
            .build(),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/networking/core/gateway_test.go

    			Name:     "http",
    			Protocol: "HTTP",
    			Port:     80,
    		}},
    		Attributes: pilot_model.ServiceAttributes{
    			Namespace: "default",
    			Labels:    map[string]string{"istio.io/persistent-session": "session-cookie"},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			cfgs := tt.gateways
    			cfgs = append(cfgs, tt.virtualServices...)
    			cg := NewConfigGenTest(t, TestOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/validation/validation_test.go

    							{
    								Name:   "x-foo",
    								Prefix: "Bearer ",
    							},
    						},
    					},
    				},
    			},
    			valid: true,
    		},
    		{
    			name:       "bad cookie location",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in: &security_beta.RequestAuthentication{
    				JwtRules: []*security_beta.JWTRule{
    					{
    						Issuer:      "foo.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top