Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for posix (0.01 sec)

  1. android/guava/src/com/google/common/io/TempFileCreator.java

        private static final PermissionSupplier directoryPermissions;
    
        static {
          Set<String> views = FileSystems.getDefault().supportedFileAttributeViews();
          if (views.contains("posix")) {
            filePermissions = () -> asFileAttribute(PosixFilePermissions.fromString("rw-------"));
            directoryPermissions = () -> asFileAttribute(PosixFilePermissions.fromString("rwx------"));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                    }
                }
            }
            return roleTypeList;
        }
    
        /**
         * Extracts role type information from file system response data.
         * Processes ACL (Access Control List) or POSIX file attributes to extract user and group information.
         *
         * @param responseData the response data containing file system metadata
         * @return a list of role type strings extracted from the file permissions
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top