- Sort Score
- Result 10 results
- Languages All
Results 741 - 750 of 3,587 for findall (0.06 sec)
-
src/main/java/jcifs/smb1/util/MD4.java
} // The basic MD4 atomic functions. private int FF(final int a, final int b, final int c, final int d, final int x, final int s) { final int t = a + (b & c | ~b & d) + x; return t << s | t >>> 32 - s; } private int GG(final int a, final int b, final int c, final int d, final int x, final int s) { final int t = a + (b & (c | d) | c & d) + x + 0x5A827999;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
CLOSED } /** Remote endpoint address */ protected final InetSocketAddress remoteAddress; /** Local endpoint address */ protected final InetSocketAddress localAddress; /** Available send credits for flow control */ protected final AtomicInteger sendCredits; /** Available receive credits for flow control */ protected final AtomicInteger receiveCredits; /** Queue of pending RDMA work requests */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
/** SMB2 lock file command */ protected static final short SMB2_LOCK = 0x000A; /** SMB2 IO control command */ protected static final short SMB2_IOCTL = 0x000B; /** SMB2 cancel command */ protected static final short SMB2_CANCEL = 0x000C; /** SMB2 echo/keepalive command */ protected static final short SMB2_ECHO = 0x000D; /** SMB2 query directory command */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
okhttp-dnsoverhttps/api/okhttp-dnsoverhttps.api
public final class okhttp3/dnsoverhttps/DnsOverHttps : okhttp3/Dns { public static final field Companion Lokhttp3/dnsoverhttps/DnsOverHttps$Companion; public static final field MAX_RESPONSE_SIZE I public final fun client ()Lokhttp3/OkHttpClient; public final fun includeIPv6 ()Z public fun lookup (Ljava/lang/String;)Ljava/util/List; public final fun post ()Z public final fun resolvePrivateAddresses ()Z public final fun resolvePublicAddresses ()Z
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 27 15:23:43 UTC 2022 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
/** Logger for this class. */ private static final Logger logger = LogManager.getLogger(SpnegoAuthenticator.class); /** Configuration key for SPNEGO initialization status. */ protected static final String SPNEGO_INITIALIZED = "spnego.initialized"; /** Configuration key for directories to exclude from SPNEGO authentication. */ protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (3) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java
@Override protected int writeBytesWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int readParameterWordsWireFormat(final byte[] buffer, final int bufferIndex) { this.supportSearchBits = (buffer[bufferIndex] & SMB_SUPPORT_SEARCH_BITS) == SMB_SUPPORT_SEARCH_BITS; this.shareIsInDfs = (buffer[bufferIndex] & SMB_SHARE_IS_IN_DFS) == SMB_SHARE_IS_IN_DFS;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
*/ public static String getSimpleMessage(final String messageCode, final Object... args) { try { final String pattern = getPattern(messageCode); if (pattern != null) { return MessageFormat.format(pattern, args); } return getNoPatternMessage(args); } catch (final Throwable ignore) { return getNoPatternMessage(args); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphConstants.java
final class GraphConstants { private GraphConstants() {} static final int EXPECTED_DEGREE = 2; static final int DEFAULT_NODE_COUNT = 10; static final int DEFAULT_EDGE_COUNT = DEFAULT_NODE_COUNT * EXPECTED_DEGREE; // Load factor and capacity for "inner" (i.e. per node/edge element) hash sets or maps static final float INNER_LOAD_FACTOR = 1.0f;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/PluginTests.java
public class PluginTests extends CrudTestBase { private static final String NAME_PREFIX = "pluginTests_"; private static final String API_PATH = "/api/admin/plugin"; private static final String LIST_ENDPOINT_SUFFIX = ""; private static final String ITEM_ENDPOINT_SUFFIX = ""; private static final String INSTALLED_ENDPOINT_SUFFIX = "installed"; private static final String AVAILABLE_ENDPOINT_SUFFIX = "available";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
public static final String REGEXP_IGNORE_CASE = "regexpIgnoreCase:"; /** Prefix for contains-based string matching patterns. */ public static final String CONTAINS = "contains:"; /** XML element name for collections container. */ protected static final String COLLECTIONS = "collections"; /** XML element name for individual collection. */ protected static final String COLLECTION = "collection";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0)