- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 341 for Level (0.02 sec)
-
src/test/java/jcifs/dcerpc/msrpc/MsrpcQueryInformationPolicyTest.java
// Assert assertEquals(level, queryPolicy.level); } @Test void constructor_shouldSetInfoObjectCorrectly() { // Arrange short level = 2; // Act queryPolicy = new MsrpcQueryInformationPolicy(mockPolicyHandle, level, mockNdrObject); // Assert assertSame(mockNdrObject, queryPolicy.info); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
logger.logp(Level.INFO, sourceClass, null, message); } @Override public void info(final String message, final Throwable t) { logger.logp(Level.INFO, sourceClass, null, message, t); } @Override public boolean isDebugEnabled() { return logger.isLoggable(Level.FINE); } @Override public void debug(final String message) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
/** * The information level to return. */ public int level; /** * The share information. */ public NdrObject info; /** * Constructs a ShareGetInfo request. * @param servername the server name * @param sharename the share name * @param level the information level
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
* Enumeration data object corresponding to the level */ public NdrObject e; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(this.level); final int _descr = this.level; _dst.enc_ndr_long(_descr); _dst.enc_ndr_referent(this.e, 1); if (this.e != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/LogStreamTest.java
// Test setting log level LogStream.setLevel(0); assertEquals(0, LogStream.level); LogStream.setLevel(1); assertEquals(1, LogStream.level); LogStream.setLevel(3); assertEquals(3, LogStream.level); LogStream.setLevel(10); assertEquals(10, LogStream.level); // Test negative level LogStream.setLevel(-1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ErrorToWarnRewritePolicyTest.java
.setLevel(Level.ERROR) .setMessage(new SimpleMessage("test message 3")) .build(); LogEvent result1 = policy.rewrite(event1); LogEvent result2 = policy.rewrite(event2); LogEvent result3 = policy.rewrite(event3); assertEquals(Level.WARN, result1.getLevel()); assertEquals(Level.WARN, result2.getLevel());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/LogStream.java
/** * The current logging level. */ public static int level = 1; /** * Constructs a LogStream with the specified output stream. * * @param stream the output stream for logging */ public LogStream(final PrintStream stream) { super(stream); } /** * Sets the logging level. * * @param level the logging level to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
/** * The information level to return. */ public int level; /** * The share information. */ public NdrObject info; /** * Constructs a ShareGetInfo request. * @param servername the server name * @param sharename the share name * @param level the information level
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
public rpc.policy_handle handle; /** Information level to query. */ public short level; /** Information object to populate. */ public NdrObject info; /** * Creates a new LsarQueryInformationPolicy message. * * @param handle the policy handle * @param level the information level * @param info the information object */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java
/** * Log level constant for debug messages. */ public static final String DEBUG = "DEBUG"; /** * Log level constant for info messages. */ public static final String INFO = "INFO"; /** * Log level constant for warning messages. */ public static final String WARN = "WARN"; /** * Log level constant for error messages. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0)