- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,756 for int (0.03 sec)
-
api/go1.14.txt
pkg syscall (freebsd-arm64), const AF_CHAOS = 5 pkg syscall (freebsd-arm64), const AF_CHAOS ideal-int pkg syscall (freebsd-arm64), const AF_CNT = 21 pkg syscall (freebsd-arm64), const AF_CNT ideal-int pkg syscall (freebsd-arm64), const AF_COIP = 20 pkg syscall (freebsd-arm64), const AF_COIP ideal-int pkg syscall (freebsd-arm64), const AF_DATAKIT = 9 pkg syscall (freebsd-arm64), const AF_DATAKIT ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const AF_DATAKIT = 9 pkg syscall (darwin-arm64), const AF_DATAKIT ideal-int pkg syscall (darwin-arm64), const AF_DECnet = 12 pkg syscall (darwin-arm64), const AF_DECnet ideal-int pkg syscall (darwin-arm64), const AF_DLI = 13 pkg syscall (darwin-arm64), const AF_DLI ideal-int pkg syscall (darwin-arm64), const AF_E164 = 28 pkg syscall (darwin-arm64), const AF_E164 ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java
@Benchmark int factorial(int reps) { int tmp = 0; for (int i = 0; i < reps; i++) { int j = i & ARRAY_MASK; tmp += BigIntegerMath.factorial(factorials[j]).intValue(); } return tmp; } @Benchmark int binomial(int reps) { int tmp = 0; for (int i = 0; i < reps; i++) { int j = i & 0xffff; tmp += BigIntegerMath.binomial(factorials[j], binomials[j]).intValue(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 19 16:21:24 UTC 2024 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingList.java
* #remove(int)}. If you override any of these methods, you may wish to override {@link * #listIterator(int)} to forward to this implementation. * * @since 7.0 */ protected ListIterator<E> standardListIterator(int start) { return Lists.listIteratorImpl(this, start); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
protected final int start; protected final int offset; /** The value of current page number. */ protected final int pageSize; /** The value of current page number. */ protected int currentPageNumber; protected long allRecordCount; protected String allRecordCountRelation; protected int allPageCount; protected boolean existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 8.9K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java
} } @Benchmark int hashUtf8(int reps) { int res = 0; for (int i = 0; i < reps; i++) { res += System.identityHashCode( hashFunctionEnum.getHashFunction().hashString(strings[i & SAMPLE_MASK], UTF_8)); } return res; } @Benchmark int hashUtf8Hasher(int reps) { int res = 0; for (int i = 0; i < reps; i++) { res +=
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 5.2K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java
} } @Benchmark int hashUtf8(int reps) { int res = 0; for (int i = 0; i < reps; i++) { res += System.identityHashCode( hashFunctionEnum.getHashFunction().hashString(strings[i & SAMPLE_MASK], UTF_8)); } return res; } @Benchmark int hashUtf8Hasher(int reps) { int res = 0; for (int i = 0; i < reps; i++) { res +=
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 5.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashing.java
* current hashtable size. */ static int newCapacity(int mask) { return ((mask < 32) ? 4 : 2) * (mask + 1); } /** Returns the hash prefix given the current mask. */ static int getHashPrefix(int value, int mask) { return value & ~mask; } /** Returns the index, or 0 if the entry is "null". */ static int getNext(int entry, int mask) { return entry & mask; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 15:34:52 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
public static final int DEFAULT_PAGE_SIZE = 20; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; private int allRecordCount; private int allPageCount; private boolean existPrePage; private boolean existNextPage; private List<Integer> pageNumberList; private int pageSize; private int currentPageNumber; public String id;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java
public static final int DEFAULT_PAGE_SIZE = 20; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; private int allRecordCount; private int allPageCount; private boolean existPrePage; private boolean existNextPage; private List<Integer> pageNumberList; private int pageSize; private int currentPageNumber; public String id;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.5K bytes - Viewed (0)