- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 852 for Config (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exentity/RequestHeader.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exentity; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.app.service.WebConfigService; import org.codelibs.fess.opensearch.config.bsentity.BsRequestHeader; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
assertTrue(ipc.shouldForceSigning()); // Case 2: config disabled when(config.isIpcSigningEnforced()).thenReturn(false); assertFalse(ipc.shouldForceSigning()); // Case 3: anonymous credentials when(config.isIpcSigningEnforced()).thenReturn(true); when(creds.isAnonymous()).thenReturn(true); assertFalse(ipc.shouldForceSigning());
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/main/java/jcifs/internal/smb1/com/SmbComWriteAndXResponse.java
private long count; /** * Constructs a write response for SMB1 protocol. * * @param config the configuration for this SMB session */ public SmbComWriteAndXResponse(final Configuration config) { super(config); } /** * Gets the number of bytes written. * * @return the count of bytes written */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtCancel.java
*/ public class SmbComNtCancel extends ServerMessageBlock { /** * Constructs an NT cancel command. * * @param config the configuration * @param mid the message ID to cancel */ protected SmbComNtCancel(final Configuration config, final int mid) { super(config, SMB_COM_NT_CANCEL); setMid(mid); } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequest.java
/** * Creates a new SMB2 tree disconnect request to close a tree connection. * * @param config the CIFS configuration */ public Smb2TreeDisconnectRequest(final Configuration config) { super(config, SMB2_TREE_DISCONNECT); } @Override protected Smb2TreeDisconnectResponse createResponse(final CIFSContext tc,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComFindClose2.java
private final int sid; /** * Creates a new SMB1 find close request to close a search handle. * * @param config the CIFS configuration * @param sid the search identifier to close */ public SmbComFindClose2(final Configuration config, final int sid) { super(config, SMB_COM_FIND_CLOSE2); this.sid = sid; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComRename.java
/** * Constructs a rename request. * * @param config the configuration * @param oldFileName the current file name * @param newFileName the new file name */ public SmbComRename(final Configuration config, final String oldFileName, final String newFileName) { super(config, SMB_COM_RENAME); this.oldFileName = oldFileName; this.newFileName = newFileName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java
* Constructs a TransCallNamedPipeResponse with the specified configuration and output buffer. * * @param config the SMB configuration * @param inB the buffer to receive response data from the named pipe */ public TransCallNamedPipeResponse(final Configuration config, final byte[] inB) { super(config); this.outputBuffer = inB; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponse.java
/** * Constructs an NT transaction notify change response. * @param config the configuration context for this response */ public NtTransNotifyChangeResponse(final Configuration config) { super(config); } /** * @return the notifyInformation */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java
/** * Constructs an NT transaction response. * @param config the configuration context for this response */ protected SmbComNtTransactionResponse(final Configuration config) { super(config); } @Override protected int readParameterWordsWireFormat(final byte[] buffer, int bufferIndex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (0)