- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,542 for ifndef (0.07 sec)
-
android/guava/src/com/google/common/collect/DenseImmutableTable.java
private int index = -1; private final int maxIndex = keyToIndex().size(); @Override @CheckForNull protected Entry<K, V> computeNext() { for (index++; index < maxIndex; index++) { V value = getValue(index); if (value != null) { return immutableEntry(getKey(index), value); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
/** * インデックスで指定された位置のエントリを返します。 * * @param index * インデックス * @return エントリ */ public Entry getEntry(final int index) { assertIndex(0 <= index && index < size, "Index: " + index + ", Size: " + size); Entry e = header; if (index < size / 2) { for (int i = 0; i <= index; i++) { e = e.next; } } else {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelParseException.java
} /** * Gets the one-based index of the line containing the error. * * @return The one-based index of the line containing the error or a non-positive value if unknown. */ public int getLineNumber() { return lineNumber; } /** * Gets the one-based index of the column containing the error. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsParseException.java
} /** * Gets the one-based index of the line containing the error. * * @return The one-based index of the line containing the error or a non-positive value if unknown. */ public int getLineNumber() { return lineNumber; } /** * Gets the one-based index of the column containing the error. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
return client.admin(); } @Override public ActionFuture<IndexResponse> index(final IndexRequest request) { return client.index(request); } @Override public void index(final IndexRequest request, final ActionListener<IndexResponse> listener) { client.index(request, listener); } @Override public IndexRequestBuilder prepareIndex() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 19.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java
this.offset = offset; this.length = length; } private int getCount(int index) { return (int) (cumulativeCounts[offset + index + 1] - cumulativeCounts[offset + index]); } @Override Entry<E> getEntry(int index) { return Multisets.immutableEntry(elementSet.asList().get(index), getCount(index)); } @Override @CheckForNull public Entry<E> firstEntry() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 4.3K bytes - Viewed (0) -
cmd/erasure-healing-common.go
for index, e := range etags { if partsMetadata[index].IsValid() && e == etag { onlineDisks[index] = disks[index] } else { onlineDisks[index] = nil } } return onlineDisks, modTime, etag } } // Create a new online disks slice, which have common uuid. for index, t := range modTimes {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
try { update(macSigningKey, 0, macSigningKey.length); int index = offset + ServerMessageBlock.SIGNATURE_OFFSET; for (int i = 0; i < 8; i++) data[index + i] = 0; ServerMessageBlock.writeInt4(signSequence, data, index); update(data, offset, length); System.arraycopy(digest(), 0, data, index, 8); if (bypass) { bypass = false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
import org.opensearch.core.action.ActionListener; import org.opensearch.core.common.Strings; import org.opensearch.index.query.BoolQueryBuilder; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; import org.opensearch.index.query.functionscore.FunctionScoreQueryBuilder; import org.opensearch.index.query.functionscore.ScoreFunctionBuilders; import org.opensearch.search.SearchHit;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 13.3K bytes - Viewed (0)