Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 666 for logout (0.31 sec)

  1. samples/ambient-argo/application/ingress-gateway.yaml

            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 760 bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-ingress.yaml

                  number: 9080
          - path: /login
            pathType: Exact
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /logout
            pathType: Exact
            backend:
              service:
                name: productpage
                port:
                  number: 9080
          - path: /api/v1/products
            pathType: Prefix
            backend:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 28 04:24:35 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

                    valueMap.put("user", fessCredential.getUserId());
                }
            });
            log(valueMap);
        }
    
        public void logout(final OptionalThing<FessUserBean> user) {
            final Map<String, String> valueMap = new LinkedHashMap<>();
            valueMap.put("action", Action.LOGOUT.name());
            valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-"));
            valueMap.put("permissions",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. samples/bookinfo/gateway-api/bookinfo-gateway.yaml

            value: /productpage
        - path:
            type: PathPrefix
            value: /static
        - path:
            type: Exact
            value: /login
        - path:
            type: Exact
            value: /logout
        - path:
            type: PathPrefix
            value: /api/v1/products
        backendRefs:
        - name: productpage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 03 18:46:50 UTC 2022
    - 761 bytes
    - Viewed (0)
  5. samples/bookinfo/networking/bookinfo-gateway.yaml

      - "*"
      gateways:
      - bookinfo-gateway
      http:
      - match:
        - uri:
            exact: /productpage
        - uri:
            prefix: /static
        - uri:
            exact: /login
        - uri:
            exact: /logout
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: productpage
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/index.jsp

    														<la:message key="labels.administration" />
    													</la:link>
    												</c:if>
    												<la:link href="/logout/" styleClass="dropdown-item">
    													<la:message key="labels.logout" />
    												</la:link>
    											</div>
    										</div>
    									</li>
    								</c:when>
    								<c:when test="${ pageLoginLink }">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

    public interface SsoAuthenticator {
    
        LoginCredential getLoginCredential();
    
        void resolveCredential(LoginCredentialResolver resolver);
    
        ActionResponse getResponse(SsoResponseType responseType);
    
        String logout(FessUserBean user);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/index.jsp

    														<la:message key="labels.administration" />
    													</la:link>
    												</c:if>
    												<la:link href="/logout/" styleClass="dropdown-item">
    													<la:message key="labels.logout" />
    												</la:link>
    											</div>
    										</div>
    									</li>
    								</c:when>
    								<c:when test="${ pageLoginLink }">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/common/admin/header.jsp

    					class="fa fa-question-circle"></a></li>
    		</c:if>
    		<li class="nav-item" data-toggle="tooltip" data-placement="left"
    			title="<la:message key="labels.tooltip_logout" />"><a class="nav-link" href="${contextPath}/logout"><em
    				class="fa fa-sign-out-alt"></a></li>
    	</ul>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 24 03:00:28 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/layout.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    // layout orders basic blocks in f with the goal of minimizing control flow instructions.
    // After this phase returns, the order of f.Blocks matters and is the order
    // in which those blocks will appear in the assembly output.
    func layout(f *Func) {
    	f.Blocks = layoutOrder(f)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top