- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for subdirectories (0.23 sec)
-
src/main/java/jcifs/ACE.java
/** * Permission to write data to a file or add files to a directory */ int FILE_WRITE_DATA = 0x00000002; // 2 /** * Permission to append data to a file or add subdirectories */ int FILE_APPEND_DATA = 0x00000004; // 3 /** * Permission to read extended attributes */ int FILE_READ_EA = 0x00000008; // 4 /** * Permission to write extended attributes
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 write data to a file or add files to a directory */ public static final int FILE_WRITE_DATA = 0x00000002; // 2 /** Permission to append data to a file or add subdirectories */ public static final int FILE_APPEND_DATA = 0x00000004; // 3 /** Permission to read extended attributes */ public static final int FILE_READ_EA = 0x00000008; // 4
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ protected int thumbnailPathCacheSize = 10; /** * File extension for generated thumbnail images. */ protected String imageExtention = "png"; /** * Number of subdirectories for organizing thumbnails. */ protected int splitSize = 10; /** * Maximum size of the thumbnail generation task queue. */ protected int thumbnailTaskQueueSize = 10000;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
configure.py
ask_for_var='Please specify the home path of the Android SDK to use.', check_success=valid_sdk_path, error_msg=('Either %s does not exist, or it does not contain the ' 'subdirectories "platforms" and "build-tools".')) platforms = os.path.join(android_sdk_home_path, 'platforms') api_levels = sorted(os.listdir(platforms)) api_levels = [x.replace('android-', '') for x in api_levels]
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* * @param filter * see constants in {@link FileNotifyInformation} * @param recursive * whether to also watch subdirectories * @return watch context, needs to be closed when finished * @throws CIFSException if an error occurs accessing the resource */ SmbWatchHandle watch(int filter, boolean recursive) throws CIFSException;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
SmbFile dir = new SmbFile(baseUrl + "shared/listdir_" + timestamp + "/", dirContext); dir.mkdir(); dir.close(); Thread.sleep(200); // Create test files and subdirectories CIFSContext fileContext = createFreshContext(); String dirPath = baseUrl + "shared/listdir_" + timestamp + "/"; SmbFile file1 = new SmbFile(dirPath + "file1.txt", fileContext);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
docs/es/docs/tutorial/bigger-applications.md
* Hay un subdirectorio `app/routers/` con otro archivo `__init__.py`, por lo que es un "subpaquete de Python": `app.routers`. * El archivo `app/routers/items.py` está dentro de un paquete, `app/routers/`, por lo que es un submódulo: `app.routers.items`. * Lo mismo con `app/routers/users.py`, es otro submódulo: `app.routers.users`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 19.3K bytes - Viewed (0)