- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 2,036 for wong (0.02 sec)
-
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
class SmbFindFileBothDirectoryInfo implements FileEntry { int nextEntryOffset; int fileIndex; long creationTime; long lastAccessTime; long lastWriteTime; long changeTime; long endOfFile; long allocationSize; int extFileAttributes; int fileNameLength; int eaSize; int shortNameLength; String shortName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java
* actual free allocation units, sectors per allocation unit, and bytes per sector. */ public class FileFsFullSizeInformation implements AllocInfo, FileSystemInformation, Decodable { private long alloc; // Also handles SmbQueryFSSizeInfo private long free; private int sectPerAlloc; private int bytesPerSect; /** * Default constructor for decoding file system full size information. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/ConfigTest.java
} @Test @DisplayName("Should get long property with default value") void testGetLongWithDefault() { assertEquals(1234567890123L, Config.getLong(testProperties, "test.long", 0L)); assertEquals(987654321L, Config.getLong(testProperties, "nonexistent.long", 987654321L)); } @Test @DisplayName("Should get InetAddress property with default value")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DuplicateHost.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
* @throws SmbException if an I/O error occurs */ public long getFilePointer() throws SmbException { return fp; } /** * Sets the file pointer to the specified position. * * @param pos the new file pointer position * @throws SmbException if an I/O error occurs */ public void seek(final long pos) throws SmbException { fp = pos; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
static class FakeStopwatch extends SleepingStopwatch { long instant = 0L; final List<String> events = new ArrayList<>(); @Override public long readMicros() { return NANOSECONDS.toMicros(instant); } void sleepMillis(int millis) { sleepMicros("U", MILLISECONDS.toMicros(millis)); } void sleepMicros(String caption, long micros) { instant += MICROSECONDS.toNanos(micros);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
static class FakeStopwatch extends SleepingStopwatch { long instant = 0L; final List<String> events = new ArrayList<>(); @Override public long readMicros() { return NANOSECONDS.toMicros(instant); } void sleepMillis(int millis) { sleepMicros("U", MILLISECONDS.toMicros(millis)); } void sleepMicros(String caption, long micros) { instant += MICROSECONDS.toNanos(micros);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java
*/ @DisplayName("Smb2TransformHeader Tests") class Smb2TransformHeaderTest extends BaseTest { private Smb2TransformHeader transformHeader; private byte[] testNonce; private long testSessionId; @BeforeEach void setUp() { transformHeader = new Smb2TransformHeader(); testNonce = new byte[16]; new SecureRandom().nextBytes(testNonce);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
private final AtomicLong bytesEncrypted = new AtomicLong(0); private long encryptionStartTime = System.currentTimeMillis(); // Configurable key rotation limits with defaults private volatile long keyRotationBytesLimit = 1L << 30; // Default: 1GB private volatile long keyRotationTimeLimit = 24 * 60 * 60 * 1000L; // Default: 24 hours // Rotation metrics
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
.bazelrc
build:windows --host_linkopt=/DEBUG build:windows --linkopt=/OPT:REF build:windows --host_linkopt=/OPT:REF build:windows --linkopt=/OPT:ICF build:windows --host_linkopt=/OPT:ICF # Verbose failure logs when something goes wrong build:windows --verbose_failures # Work around potential issues with large command lines on windows. # See: https://github.com/bazelbuild/bazel/issues/5163 build:windows --features=compiler_param_file
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 22 21:03:34 UTC 2025 - 56K bytes - Viewed (0)