Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,066 for logout (0.1 sec)

  1. pkg/volume/iscsi/iscsi_util.go

    		if err := c.mounter.Unmount(mntPath); err != nil {
    			klog.Errorf("iscsi detach disk: failed to unmount: %s\nError: %v", mntPath, err)
    			return err
    		}
    	}
    
    	// if device is no longer used, see if need to logout the target
    	device, _, err := extractDeviceAndPrefix(mntPath)
    	if err != nil {
    		return err
    	}
    
    	var bkpPortal []string
    	var volName, iqn, iface, initiatorName string
    	found := true
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/resources/fess_label_en.properties

    labels.login.title=Login
    labels.index_label=Labels
    labels.index_lang=Preferred Languages
    labels.index_sort=Sort
    labels.index_num=Results per page
    labels.logout_title=Logout
    labels.logout=Logout
    labels.do_you_want_to_logout=Do you want to logout?
    labels.logout_button=Logout
    labels.profile=Change Password
    labels.administration=Administration
    labels.profile_button=Profile
    labels.profile.title=Profile
    labels.profile.update=Update
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_label.properties

    labels.login.title=Login
    labels.index_label=Labels
    labels.index_lang=Preferred Languages
    labels.index_sort=Sort
    labels.index_num=Results per page
    labels.logout_title=Logout
    labels.logout=Logout
    labels.do_you_want_to_logout=Do you want to logout?
    labels.logout_button=Logout
    labels.profile=Change Password
    labels.administration=Administration
    labels.profile_button=Profile
    labels.profile.title=Profile
    labels.profile.update=Update
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/advance.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
    - 14.9K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/productpage.py

    def login():
        user = request.values.get('username')
        response = app.make_response(redirect(request.referrer))
        session['user'] = user
        return response
    
    
    @app.route('/logout', methods=['GET'])
    def logout():
        response = app.make_response(redirect(request.referrer))
        session.pop('user', None)
        return response
    
    # a helper function for asyncio.gather, does not return a value
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/advance.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
    - 14.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                                }
                            });
                } catch (final RuntimeException e) {
                    try {
                        requestManager.findLoginManager(FessUserBean.class).ifPresent(LoginManager::logout);
                    } catch (final Exception e1) {
                        // ignore
                    }
                    throw e;
                }
            }
    
            if (defaultRoleList != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        }
    
        @Override
        public ActionResponse getResponse(final SsoResponseType responseType) {
            return null;
        }
    
        @Override
        public String logout(final FessUserBean user) {
            return null;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top