- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 173 for YET (0.01 sec)
-
CHANGELOG.md
``` * Breaking: Don't automatically start `MockWebServer` after calls to accessors like `port`. Now these accessors will throw an `IllegalStateException` if the service has not yet been started. * Breaking: Rename `RecordedRequest.path` to `RecordedRequest.target`. (This property is _sometimes_ a path, but it can also be a path and query, or a full URL.)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
docs/en/docs/contributing.md
#### Request a New Language Let's say that you want to request translations for a language that is not yet translated, not even some pages. For example, Latin. If there is no discussion for that language, you can start by requesting the new language. For that, you can follow these steps:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
} // Test generators. To let the GWT test suite generator access them, they need to be public named // classes with a public default constructor (not that we run these suites under GWT yet). @J2ktIncompatible @GwtIncompatible // used only from suite @AndroidIncompatible public static final class ImmutableDoubleArrayAsListGenerator extends TestDoubleListGenerator { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.5K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
} @Override ImmutableSortedSet<K> createKeySet() { // the keySet() of the delegate is only a Set and TreeMap.navigatableKeySet // is not available in GWT yet. To keep the code simple and code size more, // we make a copy here, instead of creating a view of it. // // TODO: revisit if it's unbearably slow or when GWT supports // TreeMap.navigatbleKeySet().
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
* * <p>Entries in the map can be in the following states: * * <p>Valid: - Live: valid key/value are set * * <p>Invalid: - Collected: key/value was partially collected, but not yet cleaned up */ interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> { /** Gets the next entry in the chain. */ E getNext(); /** Gets the entry's hash. */ int getHash();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
* **TLSv1 and TLSv1.1 are no longer enabled by default.** Major web browsers are working towards removing these versions altogether in early 2020. If your servers aren't ready yet you can configure OkHttp 3.13 to allow TLSv1 and TLSv1.1 connections: ``` OkHttpClient client = new OkHttpClient.Builder() .connectionSpecs(Arrays.asList(ConnectionSpec.COMPATIBLE_TLS))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
public void searchView(org.opensearch.action.admin.indices.view.SearchViewAction.Request request, ActionListener<SearchResponse> listener) { throw new UnsupportedOperationException("Not implemented yet"); } /** * Searches a view asynchronously (not implemented). * * @param request the search view request * @return never returns as this operation is not implemented
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/IntMathTest.java
private static int computeMeanSafely(int x, int y) { BigInteger bigX = BigInteger.valueOf(x); BigInteger bigY = BigInteger.valueOf(y); BigDecimal two = BigDecimal.valueOf(2); // Android doesn't have BigDecimal.TWO yet BigDecimal bigMean = new BigDecimal(bigX.add(bigY)).divide(two, RoundingMode.FLOOR); return bigMean.intValueExact(); } private static boolean fitsInInt(BigInteger big) { return big.bitLength() <= 31;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* Property {@code jcifs.smb.client.encryptionEnabled} (boolean, default false) * * This is an experimental option allowing to indicate support during protocol * negotiation, SMB encryption is not implemented yet. * * @return whether SMB encryption is enabled * @since 2.1 */ boolean isEncryptionEnabled(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
} /** * Registers a new searcher with the rank fusion processor. * Adds the searcher to the searchers array and initializes the executor service * if it hasn't been created yet. The executor service is created with a thread pool * sized based on configuration or system capabilities. * * @param searcher the RankFusionSearcher to register */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0)