Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DESC (0.01 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

        public ACE[] getSecurity(final boolean resolveSids) throws IOException {
            try (SmbTreeHandleImpl th = ensureTreeConnected()) {
                final SecurityDescriptor desc = querySecurity(th, SecurityInfo.DACL_SECURITY_INFO);
                final ACE[] aces = desc.getAces();
                if (aces != null) {
                    processAces(aces, resolveSids);
                }
    
                return aces;
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

            int f;
            ACE[] aces;
    
            f = open0(O_RDONLY, READ_CONTROL, 0, isDirectory() ? 1 : 0);
    
            /*
             * NtTrans Query Security Desc Request / Response
             */
    
            final NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc(f, 0x04);
            final NtTransQuerySecurityDescResponse response = new NtTransQuerySecurityDescResponse();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: by Filename (desc) */
        public static final String LABELS_search_result_sort_filename_desc = "{labels.search_result_sort_filename_desc}";
    
        /** The key of the message: by Date (asc) */
        public static final String LABELS_search_result_sort_created_asc = "{labels.search_result_sort_created_asc}";
    
        /** The key of the message: by Date (desc) */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 146.4K bytes
    - Viewed (0)
Back to top