- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 51 for Level0s (0.5 sec)
-
src/main/java/jcifs/internal/fscc/FileInformation.java
* Defines common functionality for various SMB2/SMB3 file information classes used in * query and set file information operations, with constants for information levels. * * @author mbechler */ public interface FileInformation extends Decodable, Encodable { // information levels /** * File end-of-file information class constant. */ byte FILE_ENDOFFILE_INFO = 20; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* Returns the ancestor of the current domain at the given number of levels "higher" (rightward) * in the subdomain list. The number of levels must be non-negative, and less than {@code N-1}, * where {@code N} is the number of parts in the domain. * * <p>TODO: Reasonable candidate for addition to public API. */ private InternetDomainName ancestor(int levels) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/maven-system.properties
${includes} = ?"${maven.user.conf}/maven-system.properties", \ ?"${maven.project.conf}/maven-system.properties" # # Settings # # Define the default three levels for settings. # The '-is' flag will override the 'maven.installation.settings' property. # The '-ps' flag will override the 'maven.project.settings' property. # The '-s' flag will override the 'maven.user.settings' property.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 2.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java
/** * Enumeration of model versions that can be validated. * These versions correspond to different levels of validation that can be applied * during model building, based on the POM schema version. * <p> * The validation levels are cumulative, with higher versions including all validations * from lower versions plus additional checks specific to that version. */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:31:13 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileSystemInformation.java
* Provides common functionality for various SMB2/SMB3 file system information classes * used in query file system information operations, with constants for information levels. * * @author mbechler */ public interface FileSystemInformation extends Decodable { /** * SMB information allocation constant. */ byte SMB_INFO_ALLOCATION = -1; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
/** * Path or URL to be crawled by this configuration. */ @Required @Size(max = 1000) public String crawlingConfigPath; /** * Maximum depth for crawling (how many levels deep to follow links). */ @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** * Maximum number of pages/documents to access during crawling.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
assertEquals("Expected structureSize = 24", exception.getMessage()); } @ParameterizedTest @DisplayName("Should read different oplock levels correctly") @ValueSource(bytes = { 0x00, 0x01, 0x02, 0x08, (byte) 0xFF }) void testReadDifferentOplockLevels(byte oplockLevel) throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
FileSystemInformation.FS_FULL_SIZE_INFO }) void testConstructorWithDifferentInformationLevels(int informationLevel) { // Test constructor with different information levels response = new Trans2QueryFSInformationResponse(config, informationLevel); assertNotNull(response); assertEquals(informationLevel, response.getInformationLevel());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
assertTrue(s); } } @DisplayName("Test exception handling for invalid information levels") @ParameterizedTest @ValueSource(ints = { 0, 1, 2, 4, 5, 6, 8, 100, -2, -100, Integer.MIN_VALUE, Integer.MAX_VALUE }) void testInvalidInformationLevels(int invalidLevel) { // Skip valid levels
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java
* This form extends CreateForm to include fields necessary for updating existing role entries, * including tracking information for optimistic locking and audit trails. * Roles define permissions and access levels for users within the system. * */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0)