- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 3,763 for Int (0.03 sec)
-
test-site/activator-launch-1.3.2.jar
MODULE$; public static void <clinit>(); public static int byteswap32(int); private void package$(); } scala/util/hashing/MurmurHash3.class package scala.util.hashing; public synchronized class MurmurHash3 { public static int mix(int, int); private static int mixLast(int, int); private static int finalizeHash(int, int); public final int productHash$1f126290(scala.Product); public final int unorderedHash(scala.collection.TraversableOnce, int); public final int orderedHash(scala.collection.TraversableOnce,...
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 1.2M bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
import org.opensearch.index.query.QueryBuilders; public class IndexingHelper { private static final Logger logger = LogManager.getLogger(IndexingHelper.class); protected int maxRetryCount = 5; protected int defaultRowSize = 100; protected long requestInterval = 500; public void sendDocuments(final SearchEngineClient searchEngineClient, final DocList docList) { if (docList.isEmpty()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 16.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
*/ private static int getAccessibleMethods(Class<?> clazz, MethodInfo[] methodInfos, int upcastCount) { int l = methodInfos.length; // if this class is public, then check each of the currently // 'non-upcasted' methods to see if we have a match if (Modifier.isPublic(clazz.getModifiers())) { for (int i = 0; i < l && upcastCount < l; ++i) { try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0) -
guava/src/com/google/common/base/Utf8.java
throw new IllegalArgumentException( "UTF-8 length does not fit in int: " + (utf8Length + (1L << 32))); } return utf8Length; } private static int encodedLengthGeneral(CharSequence sequence, int start) { int utf16Length = sequence.length(); int utf8Length = 0; for (int i = start; i < utf16Length; i++) { char c = sequence.charAt(i); if (c < 0x800) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Settings.kt
val bit = 1 shl MAX_CONCURRENT_STREAMS return if (bit and set != 0) values[MAX_CONCURRENT_STREAMS] else Int.MAX_VALUE } fun getMaxFrameSize(defaultValue: Int): Int { val bit = 1 shl MAX_FRAME_SIZE return if (bit and set != 0) values[MAX_FRAME_SIZE] else defaultValue } fun getMaxHeaderListSize(defaultValue: Int): Int { val bit = 1 shl MAX_HEADER_LIST_SIZE
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
private static final int MAX_INTITEM_LENGTH = 9; private static final int MAX_LONGITEM_LENGTH = 18; private String value; private String canonical; private ListItem items; private interface Item { int INT_ITEM = 3; int LONG_ITEM = 4; int BIGINTEGER_ITEM = 0; int STRING_ITEM = 1; int LIST_ITEM = 2; int COMBINATION_ITEM = 5;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 26K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcError.java
public interface DcerpcError { public static final int DCERPC_FAULT_OTHER = 0x00000001; public static final int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; public static final int DCERPC_FAULT_CANT_PERFORM = 0x000006D8; public static final int DCERPC_FAULT_NDR = 0x000006F7; public static final int DCERPC_FAULT_INVALID_TAG = 0x1C000006; public static final int DCERPC_FAULT_CONTEXT_MISMATCH = 0x1C00001A;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComDelete.java
int writeBytesWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; dst[dstIndex++] = (byte)0x04; dstIndex += writeString( path, dst, dstIndex ); return dstIndex - start; } int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) { return 0; } int readBytesWireFormat( byte[] buffer, int bufferIndex ) { return 0; } public String toString() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt
} private fun String.requiresEncode( pos: Int, limit: Int, ): Boolean { for (i in pos until limit) { if (this[i].code >= INITIAL_N) return true } return false } private fun String.codePoints( pos: Int, limit: Int, ): List<Int> { val result = mutableListOf<Int>() var i = pos while (i < limit) { val c = this[i]
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 03 03:04:50 UTC 2024 - 8.5K bytes - Viewed (0)