Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Administrator (0.11 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java

            assertEquals("localhost", config.getMailHostname());
        }
    
        // Test with different from names
        public void test_differentFromNames() {
            String[] fromNames = { "Administrator", "Support Team", "No Reply", "Test User" };
    
            for (String name : fromNames) {
                ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                    private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceException.java

                return "Reduce buffer sizes or increase heap memory";
            case DISK_SPACE:
                return "Free up disk space or use a different location";
            case QUOTA:
                return "Contact administrator to increase quota limits";
            case LOCK:
                return "Release existing locks or wait for them to be released";
            case BUFFER:
                return "Reduce buffer usage or increase buffer pool size";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * <tr>
     * <td >
     * <code>smb://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td>
     * <td>
     * A relatively sophisticated example that references a file
     * <code>msmith1</code>'s desktop as user <code>Administrator</code>. Notice the '@' is URL encoded with the '%40'
     * hexcode escape.
     * </td>
     * </tr>
     *
     * <tr>
     * <td ><code>smb://angus/</code></td>
     * <td>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *
     * <tr><td >
     * <code>smb1://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td><td>
     * A relativly sophisticated example that references a file
     * <code>msmith1</code>'s desktop as user <code>Administrator</code>. Notice the '@' is URL encoded with the '%40' hexcode escape.
     * </td></tr>
     *
     * <tr><td ><code>smb1://angus/</code></td><td>
     * This references only a server. The behavior of some methods is different
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dtyp/ACE.java

     * <code>WNET\alice</code> is in the local <code>Administrators</code> group the access check
     * will succeed because the inherited ACE allows local <code>Administrators</code>
     * both <code>FILE_READ_DATA</code> and <code>FILE_WRITE_DATA</code> access.
     *
     */
    public class ACE implements jcifs.ACE, Decodable {
    
        /**
         * Default constructor for ACE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ACE.java

     * <code>WNET\alice</code> is in the local <code>Administrators</code> group the access check
     * will succeed because the inherited ACE allows local <code>Administrators</code>
     * both <code>FILE_READ_DATA</code> and <code>FILE_WRITE_DATA</code> access.
     */
    public interface ACE {
    
        /**
         * Permission to read data from a file or list directory contents
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/SIDTest.java

            rpcSid.sub_authority = new int[] { 32, 544 };
    
            SID sid = new SID(rpcSid, SID.SID_TYPE_WKN_GRP, "BUILTIN", "Administrators", false);
            assertEquals(SID.SID_TYPE_WKN_GRP, sid.getType());
            assertEquals("BUILTIN", sid.getDomainName());
            assertEquals("Administrators", sid.getAccountName());
            assertEquals(adminSidString, sid.toString());
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/ACE.java

     * <code>WNET\alice</code> is in the local <code>Administrators</code> group the access check
     * will succeed because the inherited ACE allows local <code>Administrators</code>
     * both <code>FILE_READ_DATA</code> and <code>FILE_WRITE_DATA</code> access.
     */
    
    public class ACE {
    
        /**
         * Default constructor for ACE
         */
        public ACE() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SIDTest.java

                byte[] ident = new byte[] { 0, 0, 0, 0, 0, 5 };
                // Well-known group
                SID wkn = new SID(buildSidT((byte) 1, ident, 32), jcifs.SID.SID_TYPE_WKN_GRP, "BUILTIN", "Administrators", false);
                assertEquals("Administrators", wkn.toDisplayString());
    
                // BUILTIN with unknown type -> falls back to numeric toString
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

    /**
     * Service class for managing stemmer override dictionary operations.
     *
     * This service provides functionality for CRUD operations on stemmer override
     * dictionaries. Stemmer override dictionaries allow administrators to define
     * custom stemming rules that override the default stemming behavior for
     * specific terms, improving search accuracy for domain-specific vocabularies.
     */
    public class StemmerOverrideService {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top