- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,243 for zIndex (0.04 sec)
-
src/main/java/jcifs/internal/util/SMBUtil.java
} /** * Writes a 16-bit integer value to a byte array in little-endian format * @param val the value to write * @param dst the destination byte array * @param dstIndex the starting index in the destination array */ public static void writeInt2(final long val, final byte[] dst, int dstIndex) { dst[dstIndex] = (byte) val; dstIndex++; dst[dstIndex] = (byte) (val >> 8); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Booleans.java
return i - start; } } return -1; } @Override public Boolean set(int index, Boolean element) { checkElementIndex(index, size()); boolean oldValue = array[start + index]; // checkNotNull for GWT (do not optimize) array[start + index] = checkNotNull(element); return oldValue; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
return i - start; } } return -1; } @Override public Boolean set(int index, Boolean element) { checkElementIndex(index, size()); boolean oldValue = array[start + index]; // checkNotNull for GWT (do not optimize) array[start + index] = checkNotNull(element); return oldValue; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java
} /** * Gets the name of the data index for the crawler. * * @return the data index name */ @Override public String getDataIndex() { return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".data"; } /** * Gets the name of the filter index for the crawler. * * @return the filter index name */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/MultiIterator.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.5K 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 public @Nullable Entry<E> firstEntry() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
Map<K, V> delegate = delegateOrNull(); if (delegate != null) { return delegate.get(key); } int index = indexOf(key); if (index == -1) { return null; } accessEntry(index); return value(index); } @CanIgnoreReturnValue @SuppressWarnings("unchecked") // known to be a V @Override public @Nullable V remove(@Nullable Object key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java
buffer[index++] = (byte) ((testSessionId >> 8) & 0xFF); buffer[index++] = (byte) ((testSessionId >> 16) & 0xFF); buffer[index++] = (byte) ((testSessionId >> 24) & 0xFF); buffer[index++] = (byte) ((testSessionId >> 32) & 0xFF); buffer[index++] = (byte) ((testSessionId >> 40) & 0xFF); buffer[index++] = (byte) ((testSessionId >> 48) & 0xFF);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
import org.codelibs.fess.util.ComponentUtil; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Job for purging expired documents from the search index. * This job removes documents that have passed their expiration time based on the expires field. * It helps maintain the search index by cleaning up outdated content automatically. */ public class PurgeDocJob {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java
/** * Displays the suggest management index page. * * @return HTML response for the suggest management page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse index() { saveToken(); return asHtml(path_AdminSuggest_AdminSuggestJsp).useForm(SuggestForm.class); } /** * Deletes all suggest words from the suggest index. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)