Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for readAttributes (0.11 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

                if (posixFileAttributeView != null) {
                    responseData.addMetaData(FILE_ATTRIBUTE_VIEW, posixFileAttributeView);
                    responseData.addMetaData(FS_FILE_GROUPS, new String[] { posixFileAttributeView.readAttributes().group().getName() });
                    return posixFileAttributeView;
                }
                return ownerAttrView;
            } catch (final Exception e) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

        }
    
        private BasicFileAttributes readAttributes() throws IOException {
          return Files.readAttributes(
              path,
              BasicFileAttributes.class,
              followLinks ? FOLLOW_LINKS : new LinkOption[] {NOFOLLOW_LINKS});
        }
    
        @Override
        public Optional<Long> sizeIfKnown() {
          BasicFileAttributes attrs;
          try {
            attrs = readAttributes();
          } catch (IOException e) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

        }
    
        private BasicFileAttributes readAttributes() throws IOException {
          return Files.readAttributes(
              path,
              BasicFileAttributes.class,
              followLinks ? FOLLOW_LINKS : new LinkOption[] {NOFOLLOW_LINKS});
        }
    
        @Override
        public Optional<Long> sizeIfKnown() {
          BasicFileAttributes attrs;
          try {
            attrs = readAttributes();
          } catch (IOException e) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                        });
                    } else if (fileAttributeView instanceof final PosixFileAttributeView posixFileAttributeView) {
                        final PosixFileAttributes attributes = posixFileAttributeView.readAttributes();
                        final UserPrincipal userPrincipal = attributes.owner();
                        if (logger.isDebugEnabled()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top