- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getOwner (0.06 sec)
-
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
private Blocker(InterruptibleTask<?> task) { this.task = task; } @Override public void run() {} private void setOwner(Thread thread) { super.setExclusiveOwnerThread(thread); } @VisibleForTesting @Nullable Thread getOwner() { return super.getExclusiveOwnerThread(); } @Override public String toString() { return task.toString();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 10K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
final FileOwnerAttributeView ownerAttrView = Files.getFileAttributeView(file.toPath(), FileOwnerAttributeView.class); if (ownerAttrView != null) { final UserPrincipal owner = ownerAttrView.getOwner(); if (owner != null) { responseData.addMetaData(FS_FILE_USER, owner.getName()); } }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.8K bytes - Viewed (0)