- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 3,691 for Private (0.08 sec)
-
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
*/ private final byte[] fileId; /** * The type of handle (DURABLE_V1, DURABLE_V2, or PERSISTENT) */ private final HandleType type; /** * The timeout in milliseconds for durable handles (not applicable for persistent handles) */ private final long timeout; /** * The timestamp when this handle was created */ private final long createTime;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/DiscreteDomain.java
return BigIntegerDomain.INSTANCE; } private static final class BigIntegerDomain extends DiscreteDomain<BigInteger> implements Serializable { private static final BigIntegerDomain INSTANCE = new BigIntegerDomain(); BigIntegerDomain() { super(true); } private static final BigInteger MIN_LONG = BigInteger.valueOf(Long.MIN_VALUE);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutTask.java
* @author higa * */ public class TimeoutTask { private static final int ACTIVE = 0; private static final int STOPPED = 1; private static final int CANCELED = 2; private final TimeoutTarget timeoutTarget; private final long timeoutMillis; private final boolean permanent; private long startTime; private int status = ACTIVE;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
private SecureKeyManager keyManager; private String sessionId; private volatile boolean closed = false; // Store session key and preauth hash for key rotation private byte[] sessionKey; private byte[] preauthIntegrityHash; private int rotationCount = 0; // Key rotation tracking - use atomic for lock-free operations private final AtomicLong bytesEncrypted = new AtomicLong(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
import jcifs.internal.util.SMBUtil; @ExtendWith(MockitoExtension.class) class SrvCopychunkCopyTest { private static final int SOURCE_KEY_SIZE = 24; private static final int HEADER_SIZE = 32; // 24 bytes source key + 4 bytes chunk count + 4 bytes reserved private static final int CHUNK_SIZE = 24; @Mock private SrvCopychunk mockChunk; @BeforeEach void setUp() { } @Nested
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/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
import org.lastaflute.web.servlet.request.SimpleRequestManager; public class FessUserTimeZoneProcessProviderTest extends UnitFessTestCase { private FessUserTimeZoneProcessProvider provider; private RequestManager requestManager; @Override public void setUp() throws Exception { super.setUp(); provider = new FessUserTimeZoneProcessProvider();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
* returning various file system information levels such as volume size and attributes. */ public class Trans2QueryFSInformationResponse extends SmbComTransactionResponse { private final int informationLevel; private FileSystemInformation info; /** * Constructs a Trans2QueryFSInformationResponse with the specified configuration and information level. * * @param config the SMB configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
* </p> * */ public class SitemapFile implements Sitemap { private static final long serialVersionUID = 1L; /** * Identifies the location of the Sitemap. This location can be a Sitemap, * an Atom file, RSS file or a simple text file. */ private String loc; /** * Identifies the time that the corresponding Sitemap file was modified. It
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/index/contents/querylog/QueryLog.java
import org.opensearch.common.Nullable; /** * The QueryLog class represents a log entry containing a query string and an optional filter query string. */ public class QueryLog { private final String q; private final String fq; /** * Constructor for QueryLog. * @param queryString The query string. * @param filterQueryString The filter query string (can be null). */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
val enableVcsTriggers: Boolean = nightlyPromotionTriggerHour != null companion object { private const val MASTER_BRANCH = "master" private const val RELEASE_BRANCH = "release" private const val EXPERIMENTAL_BRANCH = "xperimental" // master branch of gradle/gradle-promote private const val GRADLE_PROMOTE_MASTER_VCS_ROOT_ID = "Gradle_GradlePromoteMaster"
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 17 09:57:45 UTC 2025 - 3.8K bytes - Viewed (0)