- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 3,687 for PRIVATE (0.04 sec)
-
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) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
@GwtCompatible @NullMarked abstract class AbstractIteratorTester<E extends @Nullable Object, I extends Iterator<E>> { private final Stimulus<E, ? super I>[] stimuli; private final Iterator<E> elementsToInsert; private final Set<IteratorFeature> features; private final List<E> expectedElements; private final int startIndex; private final KnownOrder knownOrder; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 20.8K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/UploadProgress.kt
import okio.buffer class UploadProgress { companion object { private const val IMGUR_CLIENT_ID = "9199fdef135c122" private val MEDIA_TYPE_PNG = "image/png".toMediaType() } private val client = OkHttpClient() @Throws(Exception::class) fun run() { val progressListener = object : ProgressListener { private var firstUpdate = true override fun update(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
private IndexUpdateCallbackImpl indexUpdateCallback; private TestSystemHelper systemHelper; private TestIndexingHelper indexingHelper; private TestCrawlingInfoHelper crawlingInfoHelper; private TestSearchLogHelper searchLogHelper; private TestLabelTypeHelper labelTypeHelper; private TestLanguageHelper languageHelper; private TestSearchEngineClient searchEngineClient;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
*/ public class NetworkInterfaceInfo { private int interfaceIndex; private int capability; private int linkSpeed; // In units of 1 Mbps private byte[] sockaddrStorage; private InetAddress address; private boolean ipv6; private boolean rssCapable; // Receive Side Scaling private boolean rdmaCapable; /** * Create network interface info *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K 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/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) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
return cast(type, get(type)); } @CanIgnoreReturnValue private static <T> @Nullable T cast(Class<T> type, @Nullable Object value) { return Primitives.wrap(type).cast(value); } private Object writeReplace() { return new SerializedForm<>(delegate()); } private void readObject(ObjectInputStream stream) throws InvalidObjectException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 6.7K bytes - Viewed (0) -
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) -
android/guava/src/com/google/common/reflect/Types.java
} return false; } private static final long serialVersionUID = 0; } private static final class ParameterizedTypeImpl implements ParameterizedType, Serializable { private final @Nullable Type ownerType; private final ImmutableList<Type> argumentsList; private final Class<?> rawType;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.6K bytes - Viewed (0)