- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 839 for Zero (0.01 sec)
-
src/main/java/jcifs/smb/SmbTreeImpl.java
synchronized (this) { log.debug("Usage dropped to zero, release session"); if (this.sessionAcquired.compareAndSet(true, false)) { this.session.release(); } } } else if (usage < 0) { log.error("Usage count dropped below zero " + this); dumpResource();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
cmd/streaming-v4-unsigned.go
if err == io.EOF && size != 0 { err = io.ErrUnexpectedEOF } if err != nil && err != io.EOF { cr.err = err return n, cr.err } // If the chunk size is zero we return io.EOF. As specified by AWS, // only the last chunk is zero-sized. if len(cr.buffer) == 0 { if cr.debug { fmt.Println("EOF") } if cr.trailers != nil { err = cr.readTrailers() if cr.debug {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 03 14:55:52 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java
len += 2; if (len > 256) { throw new RuntimeException("zero termination not found"); } } server.oemDomainName = new String(buffer, bufferIndex, len, UNI_ENCODING); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
*/ @DisplayName("SMB1 Hexdump Utility Tests") class HexdumpTest extends BaseTest { @Test @DisplayName("Should convert integer to hex string with specified size") void testToHexStringInt() { // Test zero assertEquals("00000000", Hexdump.toHexString(0, 8)); assertEquals("0000", Hexdump.toHexString(0, 4)); assertEquals("00", Hexdump.toHexString(0, 2)); // Test positive values
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java
// Verify assertEquals(8, bytesDecoded); assertEquals(expectedIndexNumber, fileInternalInfo.getIndexNumber()); } @Test @DisplayName("Test decode with zero index number") void testDecodeWithZeroIndexNumber() throws SMBProtocolDecodingException { // Prepare test data byte[] buffer = new byte[8]; long expectedIndexNumber = 0L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
} @Test @DisplayName("Should initialize chunksWritten to zero") void testInitialChunksWrittenValue() { assertEquals(0, response.getChunksWritten()); } @Test @DisplayName("Should initialize chunkBytesWritten to zero") void testInitialChunkBytesWrittenValue() { assertEquals(0, response.getChunkBytesWritten());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
} @Test @DisplayName("Should initially have zero data length") void testInitialDataLength() { // Then assertEquals(0, response.getDataLength()); } @Test @DisplayName("Should initially have zero data remaining") void testInitialDataRemaining() { // Then assertEquals(0, response.getDataRemaining());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
android/guava/src/com/google/common/math/DoubleUtils.java
long bits = (long) (exponent + EXPONENT_BIAS) << SIGNIFICAND_BITS; bits += signifRounded; /* * If signifRounded == 2^53, we'd need to set all of the significand bits to zero and add 1 to * the exponent. This is exactly the behavior we get from just adding signifRounded to bits * directly. If the exponent is MAX_DOUBLE_EXPONENT, we round up (correctly) to * Double.POSITIVE_INFINITY.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 5.1K bytes - Viewed (0) -
docs/debugging/xattr/main.go
flag.BoolVar(&set, "set", false, "this is a set attribute operation") flag.Parse() if set && value == 0 { log.Fatalln("setting an attribute requires a non-zero value") } if !set && value > 0 { log.Fatalln("to set a value please specify --set along with --value") } table := tablewriter.NewWriter(os.Stdout) table.SetHeader([]string{"Name", "Value"})
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Dec 29 23:52:41 UTC 2023 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
// Assert assertEquals(expectedSize, size); verify(negotiationResponse).getTransactionBufferSize(); } @Test @DisplayName("Test getTransactionBufferSize returns zero") void testGetTransactionBufferSizeZero() { // Arrange when(negotiationResponse.getTransactionBufferSize()).thenReturn(0); // Act
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0)