- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 534 for commando (0.1 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComWrite.java
private byte[] b; SmbComWrite() { command = SMB_COM_WRITE; } SmbComWrite(final int fid, final int offset, final int remaining, final byte[] b, final int off, final int len) { this.fid = fid; this.count = len; this.offset = offset; this.remaining = remaining; this.b = b; this.off = off; command = SMB_COM_WRITE; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3K bytes - Viewed (0) -
README.md
$ mvn rpm:rpm # .rpm package $ mvn jdeb:jdeb # .deb package ### Generate Source Code $ mvn dbflute:download # (one time command) $ mvn dbflute:freegen $ mvn license:format ### Integration Tests Launch Fess Server and run the following command: $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 06:34:32 UTC 2025 - 7.2K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
import jakarta.annotation.PostConstruct; /** * Command-based thumbnail generator that executes external commands to create thumbnails. * Uses external tools through command execution to generate thumbnail images from documents. */ public class CommandGenerator extends BaseThumbnailGenerator { private static final Logger logger = LogManager.getLogger(CommandGenerator.class); /** List of command strings to execute for thumbnail generation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnenc.cmd
@REM @REM Environment Variable Prerequisites @REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands. @REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending. @REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 18 11:01:21 UTC 2024 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
@Test @DisplayName("Test constructor initialization with command and subcommand") void testConstructorWithCommandAndSubcommand() { byte command = (byte) 0x25; byte subcommand = (byte) 0x01; TestSmbComTransactionResponse resp = new TestSmbComTransactionResponse(mockConfig, command, subcommand); assertNotNull(resp); assertEquals(command, resp.getCommand());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
docs/orchestration/docker-compose/README.md
### GNU/Linux and macOS ```sh docker-compose pull docker-compose up ``` or ```sh docker stack deploy --compose-file docker-compose.yaml minio ``` ### Windows ```sh
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.1K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnDebug.cmd
@REM @REM Environment Variable Prerequisites @REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands. @REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending. @REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 18 11:01:21 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWriteAndX.java
dataLength = len; digest = null; /* otherwise recycled commands * like writeandx will choke if session * closes in between */ } @Override int getBatchLimit(final byte command) { if (command == SMB_COM_READ_ANDX) { return READ_ANDX_BATCH_LIMIT; } if (command == SMB_COM_CLOSE) { return CLOSE_BATCH_LIMIT; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvnsh.cmd
@REM @REM Environment Variable Prerequisites @REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands. @REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending. @REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Dec 17 09:50:45 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; /** * SMB1 Write AndX request message. * * This command is used to write data to a file that has been * previously opened with an Open command. */ public class SmbComWriteAndX extends AndXServerMessageBlock { private int fid, remaining, dataLength, dataOffset, off; private byte[] b; private long offset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0)