- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 455 for Permission (0.08 sec)
-
src/main/java/jcifs/SmbConstants.java
// access mask encoding /** * Permission to read data from the file. */ int FILE_READ_DATA = 0x00000001; // 1 /** * Permission to write data to the file. */ int FILE_WRITE_DATA = 0x00000002; // 2 /** * Permission to append data to the file. */ int FILE_APPEND_DATA = 0x00000004; // 3 /** * Permission to read extended attributes. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
/** * Permission to read extended attributes */ int FILE_READ_EA = 0x00000008; // 4 /** * Permission to write extended attributes */ int FILE_WRITE_EA = 0x00000010; // 5 /** * Permission to execute a file or traverse a directory */ int FILE_EXECUTE = 0x00000020; // 6 /** * Permission to delete a file or directory */ int FILE_DELETE = 0x00000040; // 7
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
/** Permission to read file attributes */ public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8 /** Permission to write file attributes */ public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 /** Standard delete permission */ public static final int DELETE = 0x00010000; // 16 /** Permission to read the security descriptor */ public static final int READ_CONTROL = 0x00020000; // 17
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
cmd/s3-zip-handlers.go
if getRequestAuthType(r) == authTypeAnonymous { // As per "Permission" section in // https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectGET.html // If the object you request does not exist, // the error Amazon S3 returns depends on // whether you also have the s3:ListBucket // permission. // * If you have the s3:ListBucket permission // on the bucket, Amazon S3 will return an
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.8K bytes - Viewed (0) -
cmd/xl-storage_test.go
} } // TestXLStorage for permission denied. if runtime.GOOS != globalWindowsOSName { permDeniedDir := createPermDeniedFile(t) if err = os.Chmod(permDeniedDir, 0o400); err != nil { t.Fatalf("Unable to change permission to temporary directory %v. %v", permDeniedDir, err) } // Initialize xlStorage storage layer for permission denied error. _, err = newLocalXLStorage(permDeniedDir)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 66K bytes - Viewed (0) -
android-test-app/src/main/AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.testapp"> <uses-permission android:name="android.permission.INTERNET" /> <application android:allowBackup="true" android:label="@string/app_name" android:supportsRtl="true" android:name=".TestApplication" > <activity android:name=".MainActivity"
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Aug 19 08:10:39 UTC 2025 - 992 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
assertNotNull(timeout.getCause()); // Scenario 3: Permission denied CommandExecutionException permissionDenied = new CommandExecutionException("Permission denied: cannot execute command"); assertTrue(permissionDenied.getMessage().contains("Permission denied")); // Scenario 4: Exit code error
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
cmd/bucket-object-lock.go
// In governance mode, users can't overwrite or delete an object // version or alter its lock settings unless they have special // permissions. With governance mode, you protect objects against // being deleted by most users, but you can still grant some users // permission to alter the retention settings or delete the object // if necessary. You can also use governance mode to test retention-period
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:38:25 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaMemoryRegion.java
* * @return size in bytes */ public int getSize() { return buffer.limit(); } /** * Check if region has specific access permission * * @param access access permission to check * @return true if access is allowed, false otherwise */ public boolean hasAccess(RdmaAccess access) { return accessFlags.contains(access); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Checks if a permission string is a user permission. * * @param permission The permission string. * @return true if it is a user permission, false otherwise. */ public boolean isUserPermission(final String permission) { if (StringUtil.isNotBlank(permission)) { return permission.startsWith(ComponentUtil.getFessConfig().getRoleSearchUserPrefix());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)