- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 429 for Levels (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
private final int searchAttributes; private final int flags; private final int informationLevel; private final int searchStorageType = 0; private final String wildcard; // information levels static final int SMB_INFO_STANDARD = 1; static final int SMB_INFO_QUERY_EA_SIZE = 2; static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class Trans2QueryFSInformationResponse extends SmbComTransactionResponse { // information levels static final int SMB_INFO_ALLOCATION = 1; static final int SMB_QUERY_FS_SIZE_INFO = 0x103; static final int SMB_FS_FULL_SIZE_INFORMATION = 1007; class SmbInfoAllocation implements AllocInfo {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/AndroidLog.kt
if (configuredLoggers.add(logger)) { logger.useParentHandlers = false // log based on levels at startup to avoid logging each frame logger.level = when { Log.isLoggable(tag, Log.DEBUG) -> Level.FINE Log.isLoggable(tag, Log.INFO) -> Level.INFO else -> Level.WARNING } logger.addHandler(AndroidLogHandler) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:03:31 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
public void test_exceptionChaining() { // Test exception chaining with multiple levels Exception rootCause = new Exception("Root cause"); RuntimeException middleCause = new RuntimeException("Middle cause", rootCause); FessSystemException topException = new FessSystemException("Top level", middleCause); assertEquals("Top level", topException.getMessage()); assertEquals(middleCause, topException.getCause());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbException.java
* with proper error context and recovery information. */ public class SmbException extends CIFSException { private static final long serialVersionUID = 1L; /** * Error severity levels */ public enum Severity { RECOVERABLE, // Can retry the operation TRANSIENT, // Temporary error, retry after delay PERMANENT, // Operation cannot succeed
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 6.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java
*/ @Nonnull String getMessage(); /** * Gets the severity level of this problem. * * @return the severity level of this problem, never {@code null} */ @Nonnull Severity getSeverity(); /** * The different severity levels for a problem, in decreasing order. * * @since 4.0.0 */ @Experimental enum Severity {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
* returning various file information levels based on the requested information level. */ public class Trans2QueryPathInformationResponse extends SmbComTransactionResponse { private final int informationLevel; private FileInformation info; /** * Constructs a Trans2QueryPathInformationResponse with the specified configuration and information level. * * @param config the SMB configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
return problemsReportedFor(BuilderProblem.Severity.values()); } /** * Returns count of problems reported for given severities. * * @param severities the severity levels to count problems for * @return the total count of problems for the specified severities */ int problemsReportedFor(BuilderProblem.Severity... severities); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 18 17:30:19 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java
assertThrows(NullPointerException.class, () -> { buffer.size(); }); } @ParameterizedTest @DisplayName("Should handle various referral levels") @ValueSource(ints = { 0, 1, 2, 3, 4, 5, 255, 256, 32767, 65535 }) void testConstructorWithVariousReferralLevels(int maxReferralLevel) { String path = "\\\\test";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java
byte[] challenge = { 1, 2, 3, 4, 5, 6, 7, 8 }; byte[] hash = auth.getAnsiHash(challenge); assertNotNull(hash); // getAnsiHash always returns 24 bytes for all lmCompatibility levels // (getPreNTLMResponse, getNTLMResponse, or getLMv2Response all return 24 bytes) assertEquals(24, hash.length); } // Test getUnicodeHash behavior based on static LM_COMPATIBILITY setting
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0)