- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 522 for command3 (0.17 sec)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
private boolean asyncHandled; /** * Constructor for SMB2 response with configuration and command. * * @param config the configuration object * @param command the SMB2 command code */ public ServerMessageBlock2Response(final Configuration config, final int command) { super(config, command); } /** * Constructor for SMB2 response with configuration. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComDeleteTest.java
} @Test public void testConstructor() { // Test if the constructor sets the file name and command correctly assertEquals(TEST_FILE_NAME, smbComDelete.path); assertEquals(ServerMessageBlock.SMB_COM_DELETE, smbComDelete.command); } @Test public void testWriteParameterWordsWireFormat() { // Test the writing of parameter words to a byte array
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndX.java
primaryDomain = auth.domain.toUpperCase(); } else { throw new SmbException("Unsupported"); } } @Override int getBatchLimit(final byte command) { return command == SMB_COM_TREE_CONNECT_ANDX ? BATCH_LIMIT : 0; } @Override int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
regression-test/README.md
$ echo "no" | avdmanager --verbose create avd --force --name "pixel5" --device "pixel" --package "system-images;android-29;google_apis;x86" --tag "google_apis" --abi "x86" ``` 2. Run an Emulator using Android Studio or from command line. ``` $ emulator -no-window -no-snapshot-load @pixel5 ``` 2. Turn on logs with logcat ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComQueryInformationResponse.java
private final long serverTimeZoneOffset; private int fileSize = 0; SmbComQueryInformationResponse(final long serverTimeZoneOffset) { this.serverTimeZoneOffset = serverTimeZoneOffset; command = SMB_COM_QUERY_INFORMATION; } @Override public int getAttributes() { return fileAttributes; } @Override public long getCreateTime() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationTest.java
} @Test void testConstructor() { // Then assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION2, trans2SetFileInformation.command); assertEquals(Trans2SetFileInformation.TRANS2_SET_FILE_INFORMATION, trans2SetFileInformation.subCommand); assertEquals(6, trans2SetFileInformation.maxParameterCount);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.3K bytes - Viewed (0) -
integration-tests/gradle/gradlew.bat
@rem Find java.exe if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute echo. 1>&2 echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 echo. 1>&2 echo Please set the JAVA_HOME variable in your environment to match the 1>&2 echo location of your Java installation. 1>&2 goto fail :findJavaFromJavaHome
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 21 19:14:29 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSetInformation.java
*/ package jcifs.internal.smb1.com; import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; /** * SMB1 COM_SET_INFORMATION command implementation. * * This command sets file attributes and last write time for a file or directory. * * @author mbechler */ public class SmbComSetInformation extends ServerMessageBlock { private final int fileAttributes;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
cmd/common-main.go
} func buildServerCtxt(ctx *cli.Context, ctxt *serverCtxt) (err error) { // Get "json" flag from command line argument and ctxt.JSON = ctx.IsSet("json") || ctx.GlobalIsSet("json") // Get quiet flag from command line argument. ctxt.Quiet = ctx.IsSet("quiet") || ctx.GlobalIsSet("quiet") // Get anonymous flag from command line argument. ctxt.Anonymous = ctx.IsSet("anonymous") || ctx.GlobalIsSet("anonymous") // Fetch address option
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java
import jcifs.smb1.util.Hexdump; class Trans2QueryFSInformation extends SmbComTransaction { private final int informationLevel; Trans2QueryFSInformation(final int informationLevel) { command = SMB_COM_TRANSACTION2; subCommand = TRANS2_QUERY_FS_INFORMATION; this.informationLevel = informationLevel; totalParameterCount = 2; totalDataCount = 0; maxParameterCount = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0)