- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 192 for Reserved1 (0.07 sec)
-
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
* @return the standard lease context size */ protected int getStandardLeaseSize() { // Standard lease V2 size: LeaseKey(16) + LeaseState(4) + Flags(4) + reserved fields return 32; } @Override public int size() { // Context header: 16 bytes // Name: 4 bytes ("DLse") // Padding: 4 bytes (to align data to 8-byte boundary)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java
// Verify completion filter assertEquals(Smb2ChangeNotifyRequest.FILE_NOTIFY_CHANGE_FILE_NAME, SMBUtil.readInt4(buffer, offset + 24)); // Verify reserved field is zero assertEquals(0, SMBUtil.readInt4(buffer, offset + 28)); } @Test @DisplayName("Should read empty bytes from wire format") void testReadBytesWireFormat() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
LICENSES/third_party/forked/gonum/graph/LICENSE
Copyright ©2013 The gonum Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jul 08 11:48:19 UTC 2021 - 1.5K bytes - Viewed (0) -
src/packaging/deb/copyright
Copyright(C) 2009-2016 CodeLibs Project. All Rights Reserved. License: Apache-2.0 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jan 07 06:27:26 UTC 2016 - 749 bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
// The implementation skips 4 reserved bytes without writing zeros // This is consistent with the actual implementation behavior // The reserved bytes remain as they were in the buffer for (int i = 0; i < 4; i++) { assertEquals((byte) 0xFF, buffer[startIndex + SOURCE_KEY_SIZE + 4 + i], "Reserved byte at position " + i + " should remain unchanged");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
// HIGH RISK ACTIVITIES. // // // The rest is: // // Copyright (C) 1996 by Jef Poskanzer <******@****.***>. All rights reserved. // // Copyright (C) 1996 by Wolfgang Platzer // email: ******@****.*** // // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions // are met:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
int actualInfoLevel = SMBUtil.readInt2(buffer, 2); assertEquals(0x0101, actualInfoLevel); // Check reserved bytes (should be 0) int reserved = SMBUtil.readInt2(buffer, 4); assertEquals(0, reserved); } @DisplayName("Test writeParametersWireFormat with different FIDs") @ParameterizedTest @ValueSource(ints = { 0, 1, 0xFFFF, 0x8000, 0x7FFF })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.8K bytes - Viewed (0) -
LICENSES/vendor/github.com/antlr4-go/antlr/v4/LICENSE
= vendor/github.com/antlr4-go/antlr/v4 licensed under: = Copyright (c) 2012-2023 The ANTLR Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Apr 22 17:54:32 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// Query Reserved Characters and Patterns // ============================================================ /** Array of reserved characters for query processing. */ public static final String[] RESERVED = { "\\", "+", "-", "&&", "||", "!", "(", ")", "{", "}", "[", "]", "^", "~", "*", "?", ";", ":", "/" }; /** Pattern for detecting reserved characters in Lucene field queries. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
assertEquals(4, buffer[offset] | (buffer[offset + 1] << 8), "Structure size should be 4"); assertEquals(0, buffer[offset + 2], "Reserved bytes should be 0"); assertEquals(0, buffer[offset + 3], "Reserved bytes should be 0"); } @Test @DisplayName("Test readBytesWireFormat returns 0") void testReadBytesWireFormat() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0)