- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 481 for initializer (0.06 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketWriter.kt
private val messageBuffer = Buffer() /** The [Buffer] of [sink]. Write to this and then flush/emit [sink]. */ private val sinkBuffer: Buffer = sink.buffer private var writerClosed = false /** Lazily initialized on first use. */ private var messageDeflater: MessageDeflater? = null // Masks are only a concern for client writers. private val maskKey: ByteArray? = if (isClient) ByteArray(4) else null
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
/** * Fess configuration settings. */ @Resource protected FessConfig fessConfig; /** * Default constructor for RequestHeaderService. * Initializes the service with dependency injection. */ public RequestHeaderService() { // Default constructor } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2ResponseTest.java
config = new PropertyConfiguration(props); response = new Trans2FindFirst2Response(config); } @Test void testConstructor() { // Test that the constructor properly initializes the object assertNotNull(response); // The command should be SMB_COM_TRANSACTION2 (0x32 = 50) assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION2, response.getCommand());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2GetDfsReferralTest.java
clazz = clazz.getSuperclass(); } } throw new NoSuchFieldException(fieldName); } @Test @DisplayName("Constructor initializes fields") void testConstructor() throws Exception { Trans2GetDfsReferral cmd = new Trans2GetDfsReferral("/file"); assertEquals("/file", getPrivateField(cmd, "path"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
propFile.deleteOnExit(); try (FileOutputStream fos = new FileOutputStream(propFile)) { fos.write("fess.version=1.0.0".getBytes()); } // Initialize SystemHelper SystemHelper systemHelper = new SystemHelper() { @Override protected void parseProjectProperties(final java.nio.file.Path propPath) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
static { try { SPNEGO_MECH_OID = new ASN1ObjectIdentifier("1.3.6.1.5.5.2"); } catch (final IllegalArgumentException e) { log.error("Failed to initialize OID", e); } } private final SSPContext mechContext; private boolean firstResponse = true; private boolean completed; private ASN1ObjectIdentifier[] mechs;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
void testConstructorWithContextOnly() { // When: Creating handle with context only TestDcerpcHandle h = new TestDcerpcHandle(mockContext); // Then: Should initialize correctly assertNotNull(h); assertEquals(mockContext, h.getTransportContext()); assertNull(h.getBinding()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
queryProcessor = ComponentUtil.getComponent("queryProcessor"); queryFieldConfig = ComponentUtil.getComponent("queryFieldConfig"); // Initialize and register PrefixQueryCommand queryCommand = new PrefixQueryCommand(); queryCommand.register(); } private void setNotAnalyzedFields(final String... fields) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/UniAddressTest.java
when(mockInetAddress.getHostName()).thenReturn("somehost"); UniAddress uniAddress = new UniAddress(mockInetAddress); uniAddress.firstCalledName(); // Initialize calledName assertEquals(NbtAddress.SMBSERVER_NAME, uniAddress.nextCalledName(mockCIFSContext)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.4K bytes - Viewed (0)