Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeLengths (0.05 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

              writeUtf8(entry.key)
              writeByte('\n'.code)
            } else {
              writeUtf8(CLEAN).writeByte(' '.code)
              writeUtf8(entry.key)
              entry.writeLengths(this)
              writeByte('\n'.code)
            }
          }
        }
    
        if (fileSystem.exists(journalFile)) {
          fileSystem.atomicMove(journalFile, journalFileBackup)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/NodeStatusRequestTest.java

            nodeStatusRequest.nameTrnId = 0x1234;
    
            byte[] buffer = new byte[512];
    
            // Act - Write
            int writeLength = nodeStatusRequest.writeWireFormat(buffer, 0);
    
            // Assert write
            assertTrue(writeLength > 0);
    
            // Create new request to read
            NodeStatusRequest readRequest = new NodeStatusRequest(mockConfig, new Name(mockConfig));
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
Back to top