- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 133 for radiance (0.05 sec)
-
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
/** * Utility for remove and iterator.remove: Delete item at position i. Call only when occupying * monitor. */ void removeAt(int i) { E[] items = this.items; // if removing front item, just advance if (i == takeIndex) { items[takeIndex] = null; takeIndex = inc(takeIndex); } else { // slide over all others up through putIndex. for (; ; ) { int nexti = inc(i);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
case WitnessNotificationMessage.WITNESS_IP_CHANGE: decodeIpChangeMessage(buf, message); break; default: // Skip unknown message types buf.advance(messageLength - 8); // Skip remaining data (minus type and length) break; } return message; } /** * Decodes a resource change notification message. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/BloomFilterTest.java
} /** * This test will fail whenever someone updates/reorders the BloomFilterStrategies constants. Only * appending a new constant is allowed. */ // This test ensures that our reliance on the ordering elsewhere is safe. @SuppressWarnings("EnumOrdinal") public void testBloomFilterStrategies() { assertThat(BloomFilterStrategies.values()).hasLength(2);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 22K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/BloomFilterTest.java
} /** * This test will fail whenever someone updates/reorders the BloomFilterStrategies constants. Only * appending a new constant is allowed. */ // This test ensures that our reliance on the ordering elsewhere is safe. @SuppressWarnings("EnumOrdinal") public void testBloomFilterStrategies() { assertThat(BloomFilterStrategies.values()).hasLength(2);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 22K bytes - Viewed (0) -
docs/pt/docs/advanced/security/oauth2-scopes.md
O objeto `security_scopes` (da classe `SecurityScopes`) também oferece um atributo `scope_str` com uma única string, contendo os escopos separados por espaços (nós vamos utilizar isso).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
} private WindowBucket getCurrentBucket() { long now = System.currentTimeMillis(); // Check if we need to advance to next bucket if (now - lastBucketTime >= bucketSizeInMillis) { currentBucketIndex = (currentBucketIndex + 1) % numberOfBuckets; buckets[currentBucketIndex].reset(now);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
// Configure mocks for NdrBuffer interactions lenient().when(mockDeferredBuffer.derive(anyInt())).thenReturn(mockDeferredBuffer); lenient().doNothing().when(mockDeferredBuffer).advance(anyInt()); // Set up index field for derive operations mockDeferredBuffer.index = 0; } @Nested @DisplayName("Protocol Information Tests") class ProtocolInfoTests {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
@Nullable WriteThroughEntry lastReturned; HashIterator() { nextSegmentIndex = segments.length - 1; nextTableIndex = -1; advance(); } @Override public abstract T next(); final void advance() { nextExternal = null; if (nextInChain()) { return; } if (nextInTable()) { return; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.tooltip_search_view=Search Screen labels.tooltip_run_crawler=Run Crawler labels.tooltip_forum=Forum labels.tooltip_onlinehelp=Help labels.tooltip_logout=Logout labels.advance=Advanced Search labels.advance_search_title=Advanced Search labels.advance_search_must_queries=with all of the words labels.advance_search_phrase_query=with the exact phrase
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/resources/fess_label_zh_TW.properties
labels.eol_error=您的系統已停止支援。請參閱產品支援生命週期頁面進行升級。 labels.tooltip_search_view=搜尋視圖 labels.tooltip_run_crawler=運行爬蟲 labels.tooltip_forum=論壇 labels.tooltip_onlinehelp=幫助 labels.tooltip_logout=登出 labels.advance=高級搜尋 labels.advance_search_title=高級搜尋 labels.advance_search_must_queries=包含所有詞 labels.advance_search_phrase_query=精確匹配短語 labels.advance_search_should_queries=包含任何詞 labels.advance_search_not_queries=不包含詞
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0)