- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 497 for commandes (0.05 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
void testConstructorWithFileIdAndFileName() throws Exception { // Verify command is set correctly (SMB2_CLOSE = 0x0006) Field commandField = ServerMessageBlock2.class.getDeclaredField("command"); commandField.setAccessible(true); int command = (int) commandField.get(request); assertEquals(0x0006, command); // SMB2_CLOSE value // Verify file ID is set
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; import jcifs.smb.NtlmPasswordAuthenticator; import jcifs.util.Hexdump; /** * SMB1 Tree Connect AndX request message. * * This command is used to connect to a shared resource * on the server, such as a file share or printer. */ public class SmbComTreeConnectAndX extends AndXServerMessageBlock { private final boolean disconnectTid = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSetInformationResponse.java
*/ package jcifs.internal.smb1.com; import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * Response for SMB1 COM_SET_INFORMATION command. * * This response indicates the success or failure of setting file * attributes and last write time. * * @author mbechler */ public class SmbComSetInformationResponse extends ServerMessageBlock {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
/** * Main method to start the Fess application. * Sets up system properties, configures Tomcat, and starts the server. * * @param args command line arguments (not used) */ public static void main(final String[] args) { // update java.io.tmpdir final String tempPath = System.getProperty(FESS_TEMP_PATH); if (tempPath != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java
private static class FakeExecutor implements Executor { final Queue<Runnable> tasks = new ArrayDeque<>(); @Override public void execute(Runnable command) { tasks.add(command); } boolean hasNext() { return !tasks.isEmpty(); } void runNext() { assertTrue("expected at least one task to run", hasNext()); tasks.remove().run();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 11.4K bytes - Viewed (0) -
.teamcity/mvnw
echo "Downloading from: $jarUrl" fi wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" if $cygwin; then wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` fi if command -v wget > /dev/null; then if [ "$MVNW_VERBOSE" = true ]; then echo "Found wget ... using wget" fi if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 26 01:48:39 UTC 2020 - 9.8K bytes - Viewed (0) -
ci/official/containers/ml_build/cuda12.8_cudnn9.8.packages.txt
# All required CUDA packages cuda-compat-12-8 cuda-command-line-tools-12-8 cuda-cudart-dev-12-8 cuda-nvcc-12-8 cuda-cupti-12-8 cuda-nvprune-12-8 cuda-libraries-12-8 cuda-libraries-dev-12-8 cuda-nvml-dev-12-8 libcufft-12-8 libcurand-12-8 libcusolver-dev-12-8 libcusparse-dev-12-8 libcublas-12-8 libcublas-dev-12-8 libnccl-dev=2.25.1-1+cuda12.8 libnccl2=2.25.1-1+cuda12.8
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Mar 14 22:45:44 UTC 2025 - 534 bytes - Viewed (0) -
ci/official/containers/ml_build/cuda13.0_cudnn9.12.packages.txt
# All required CUDA packages cuda-compat-13-0 cuda-command-line-tools-13-0 cuda-cudart-dev-13-0 cuda-nvcc-13-0 cuda-cupti-13-0 cuda-nvprune-13-0 cuda-libraries-13-0 cuda-libraries-dev-13-0 cuda-nvml-dev-13-0 libcufft-13-0 libcurand-13-0 libcusolver-dev-13-0 libcusparse-dev-13-0 libcublas-13-0 libcublas-dev-13-0 libnccl-dev=2.27.7-1+cuda13.0 libnccl2=2.27.7-1+cuda13.0
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 15 20:39:50 UTC 2025 - 536 bytes - Viewed (0) -
cmd/rebalstatus_string.go
package cmd import "strconv" func _() { // An "invalid array index" compiler error signifies that the constant values have changed. // Re-run the stringer command to generate them again. var x [1]struct{} _ = x[rebalNone-0] _ = x[rebalStarted-1] _ = x[rebalCompleted-2] _ = x[rebalStopped-3] _ = x[rebalFailed-4] }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Oct 25 19:36:57 UTC 2022 - 795 bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransTransactNamedPipe.java
TransTransactNamedPipe(final int fid, final byte[] data, final int off, final int len) { pipeFid = fid; pipeData = data; pipeDataOff = off; pipeDataLen = len; command = SMB_COM_TRANSACTION; subCommand = TRANS_TRANSACT_NAMED_PIPE; maxParameterCount = 0; maxDataCount = 0xFFFF; maxSetupCount = (byte) 0x00; setupCount = 2; name = "\\PIPE\\";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.8K bytes - Viewed (0)