Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Cookies (0.43 sec)

  1. 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)
  2. 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)
  3. 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