- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 384 for exactly (0.07 sec)
-
android/guava/src/com/google/common/collect/ImmutableTable.java
* {@link Builder#putAll} * * <p>Despite the method name, this method attempts to avoid actually copying the data when it is * safe to do so. The exact circumstances under which a copy will or will not be performed are * undocumented and subject to change. */ public static <R, C, V> ImmutableTable<R, C, V> copyOf(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMaker.java
} return MapMakerInternalMap.create(this); } /** * Returns a string representation for this MapMaker instance. The exact form of the returned * string is not specified. */ @Override public String toString() { MoreObjects.ToStringHelper s = MoreObjects.toStringHelper(this); if (initialCapacity != UNSET_INT) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
g" "crypto/internal/fips140deps/byteorder" "math" ) // SealWithRandomNonce encrypts plaintext to out, and writes a random nonce to // nonce. nonce must be 12 bytes, and out must be 16 bytes longer than plaintext. // out and plaintext may overlap exactly or not at all. additionalData and out // must not overlap. // // This complies with FIPS 140-3 IG C.H Scenario 2. // // Note that this is NOT a [cipher.AEAD].Seal method. func SealWithRandomNonce(g *GCM, nonce, out, plaintext, additionalData []byte)...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
* String.format} is not available. As an example, method implementations of the {@link * Preconditions} class use this formatter, for both of the reasons just discussed. * * <p><b>Warning:</b> Only the exact two-character placeholder sequence {@code "%s"} is * recognized. * * @param template a string containing zero or more {@code "%s"} placeholder sequences. {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
* be at least 2 characters long, and contain only valid, lower-cased hexadecimal characters. * * <p>This method accepts the exact format generated by {@link #toString}. If you require more * lenient {@code base 16} decoding, please use {@link com.google.common.io.BaseEncoding#decode} * (and pass the result to {@link #fromBytes}). *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
// Test with minimal buffer size byte[] minBuffer = new byte[2]; int written = trans2QueryFSInfo.writeSetupWireFormat(minBuffer, 0); assertEquals(2, written); // Test with exact parameter size byte[] paramBuffer = new byte[2]; written = trans2QueryFSInfo.writeParametersWireFormat(paramBuffer, 0); assertEquals(2, written); // Test with zero-length data buffer
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
searchRenderData.setSearchQuery(complexQuery); assertEquals(complexQuery, searchRenderData.getSearchQuery()); // Test with special characters String specialQuery = "test + query - exclude \"exact phrase\" *wildcard?"; searchRenderData.setSearchQuery(specialQuery); assertEquals(specialQuery, searchRenderData.getSearchQuery()); } public void test_setAndGetRequestedTime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
docs/fr/docs/async.md
Ce concept se nomme l'"asynchronisme" car l'ordinateur / le programme n'a pas besoin d'être "synchronisé" avec la tâche, attendant le moment exact où cette dernière se terminera en ne faisant rien, pour être capable de récupérer le résultat de la tâche et l'utiliser dans la suite des opérations.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
void testDecodeWithMaxBufferSize() throws SMBProtocolDecodingException { prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, true, true, false); // Decode with exact size needed int size = securityDescriptor.decode(testBuffer, 0, 100); // decode returns 0 when no DACL is present (falls through) assertEquals(0, size);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
looks like this: /// tip This is a tip. /// ...it could be translated as: ``` /// tip Esto es un consejo. /// ``` ...but needs to keep the exact `tip` keyword. If it was translated to `consejo`, like: ``` /// consejo Esto es un consejo. /// ``` it would change the style to the default one, it would look like:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 14.2K bytes - Viewed (0)