Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for guest (0.24 sec)

  1. src/main/java/jcifs/CIFSContext.java

    
        /**
         * @return a child context using anonymous credentials
         */
        CIFSContext withAnonymousCredentials ();
    
    
        /**
         * 
         * @return a child context using guest credentials
         */
        CIFSContext withGuestCrendentials ();
    
    
        /**
         * 
         * @param creds
         * @return a child context using using the given credentials
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

        }
    
        static final NtlmPasswordAuthentication NULL =
                    new NtlmPasswordAuthentication( "", "", "" );
        static final NtlmPasswordAuthentication GUEST =
                    new NtlmPasswordAuthentication( "?", "GUEST", "" );
        static final NtlmPasswordAuthentication DEFAULT =
                    new NtlmPasswordAuthentication( null );
    
        String domain;
        String username;
        String password;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    authentication.admin.users=admin
    authentication.admin.roles=admin
    
    role.search.default.permissions=
    role.search.default.display.permissions={role}guest
    role.search.guest.permissions={role}guest
    
    role.search.user.prefix=1
    role.search.group.prefix=2
    role.search.role.prefix=R
    role.search.denied.prefix=D
    
    # ----------------------------------------------------------
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            } catch (SmbException se) {
                                ex = se;
                            }
        
                            if( response.isLoggedInAsGuest &&
                                        "GUEST".equalsIgnoreCase( auth.username ) == false &&
                                        transport.server.security != SmbConstants.SECURITY_SHARE &&
                                        auth != NtlmPasswordAuthentication.ANONYMOUS) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/BaseCIFSTest.java

            Assume.assumeNotNull(testUser);
            return testUser;
        }
    
    
        protected String getTestShareGuestURL () {
            String testGuestShare = getProperties().get(TestProperties.TEST_SHARE_GUEST);
            Assume.assumeNotNull(testGuestShare);
            return "smb://" + getTestServer() + "/" + testGuestShare + "/";
        }
    
    
        protected String getTestShareURL () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        public static final String PROCESS_TYPE_BOTH = "B";
    
        public static final long ONE_DAY_IN_MILLIS = 24L * 60L * 60L * 1000L;
    
        public static final String GUEST_USER = "guest";
    
        public static final String[] PAGER_CONVERSION_RULE =
                { "allRecordCount", "pageSize", "currentPageNumber", "allPageCount", "existPrePage", "existNextPage" };
    
        // crawler types
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/FileOperationsTest.java

                        Assume.assumeTrue("Not SMB2", th.isSMB2());
                    }
                    throw e;
                }
                catch ( SmbAuthException e )  {
                    // guest share not accessible
                }
                catch ( SmbException e) {
                    if ("Cannot rename between different trees".equals(e.getMessage())) {
                        // expected
                        return;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:17:59 GMT 2023
    - 16.3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/orig/view/header.jsp

    								class="fa fa-exclamation-triangle text-warning"
    							></a></li>
    					</c:if>
    					<c:choose>
    						<c:when test="${!empty username && username != 'guest'}">
    							<li class="nav-item">
    								<div class="dropdown">
    									<a class="nav-link dropdown-toggle" data-toggle="dropdown"
    										href="#" role="button" aria-haspopup="true"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/header.jsp

    								class="fa fa-exclamation-triangle text-warning"
    							></a></li>
    					</c:if>
    					<c:choose>
    						<c:when test="${!empty username && username != 'guest'}">
    							<li class="nav-item">
    								<div class="dropdown">
    									<a class="nav-link dropdown-toggle" data-toggle="dropdown"
    										href="#" role="button" aria-haspopup="true"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
Back to top