Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ace (0.15 sec)

  1. src/test/java/jcifs/tests/FileAttributesTest.java

                }
            }
        }
    
    
        @Test
        public void testGetACL () throws IOException {
            try ( SmbFile f = getDefaultShareRoot() ) {
                try {
                    jcifs.ACE[] security = f.getSecurity();
                    assertNotNull(security);
                }
                catch ( SmbUnsupportedOperationException e ) {
                    Assume.assumeTrue("No Ntsmbs", false);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * Return an array of Access Control Entry (ACE) objects representing
     * the security descriptor associated with this file or directory.
     * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
     * @param resolveSids Attempt to resolve the SIDs within each ACE form
     * their numeric representation to their corresponding account names.
     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  3. src/main/java/jcifs/smb/SmbFile.java

    
        @Override
        public ACE[] getSecurity () throws IOException {
            return getSecurity(false);
        }
    
    
        @Override
        public ACE[] getSecurity ( boolean resolveSids ) throws IOException {
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                SecurityDescriptor desc = querySecurity(th, SecurityInfo.DACL_SECURITY_INFO);
                ACE[] aces = desc.getAces();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  4. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F0B1..1F0BE  ; valid                  ;      ; NV8    # 6.0  PLAYING CARD ACE OF HEARTS..PLAYING CARD KING OF HEARTS
    1F0BF         ; valid                  ;      ; NV8    # 7.0  PLAYING CARD RED JOKER
    1F0C0         ; disallowed                             # NA   <reserved-1F0C0>
    1F0C1..1F0CF  ; valid                  ;      ; NV8    # 6.0  PLAYING CARD ACE OF DIAMONDS..PLAYING CARD BLACK JOKER
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Feb 10 11:25:47 GMT 2024
    - 854.1K bytes
    - Viewed (2)
Back to top