Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for setSecure (0.14 sec)

  1. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                cookie.setDomain(cookieDomain);
            }
            if (StringUtil.isNotBlank(cookiePath)) {
                cookie.setPath(cookiePath);
            }
            if (cookieSecure != null) {
                cookie.setSecure(cookieSecure);
            }
            LaResponseUtil.getResponse().addCookie(cookie);
        }
    
        protected String getUserCodeFromCookie(final HttpServletRequest request) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/subr.go

    // a greater depth.
    func adddot1(s *types.Sym, t *types.Type, d int, save **types.Field, ignorecase bool) (c int, more bool) {
    	if t.Recur() {
    		return
    	}
    	t.SetRecur(true)
    	defer t.SetRecur(false)
    
    	var u *types.Type
    	d--
    	if d < 0 {
    		// We've reached our target depth. If t has any fields/methods
    		// named s, then we're done. Otherwise, we still need to check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
            - --lightstepSecure={{ .ProxyConfig.GetTracing.GetLightstep.GetSecure }}
            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
            - --lightstepSecure={{ .ProxyConfig.GetTracing.GetLightstep.GetSecure }}
            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
            - --lightstepSecure={{ .ProxyConfig.GetTracing.GetLightstep.GetSecure }}
            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --lightstepAccessToken
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetAccessToken }}"
            - --lightstepSecure={{ .ProxyConfig.GetTracing.GetLightstep.GetSecure }}
            - --lightstepCacertPath
            - "{{ .ProxyConfig.GetTracing.GetLightstep.GetCacertPath }}"
          {{- else if eq .Values.global.proxy.tracer "zipkin" }}
            - --zipkinAddress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    func (t *Type) SetNotInHeap(b bool)  { t.flags.set(typeNotInHeap, b) }
    func (t *Type) SetNoalg(b bool)      { t.flags.set(typeNoalg, b) }
    func (t *Type) SetDeferwidth(b bool) { t.flags.set(typeDeferwidth, b) }
    func (t *Type) SetRecur(b bool)      { t.flags.set(typeRecur, b) }
    
    // Should always do SetHasShape(true) when doing SetIsShape(true).
    func (t *Type) SetIsShape(b bool)  { t.flags.set(typeIsShape, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top