- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,073 for different (0.15 sec)
-
guava-tests/test/com/google/common/hash/Fingerprint2011Test.java
char[] charsB = new char[128]; for (int i = 0; i < charsA.length; i++) { if (i < 100) { charsA[i] = 'a'; charsB[i] = 'a'; } else { // Both two-byte characters, but must be different charsA[i] = (char) (0x0180 + i); charsB[i] = (char) (0x0280 + i); } } String stringA = new String(charsA); String stringB = new String(charsB);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 7.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/PredicatesTest.java
} @J2ktIncompatible @GwtIncompatible // SerializableTester public void testNot_serialization() { checkSerialization(Predicates.not(isOdd())); } /* * Tests for all the different flavors of Predicates.and(). */ public void testAnd_applyNoArgs() { assertEvalsToTrue(Predicates.and()); } public void testAnd_equalityNoArgs() { new EqualsTester()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 32.4K bytes - Viewed (0) -
okhttp-tls/README.md
the identity of a server. The converse is also possible. Here we create a server that authenticates a client and a client that authenticates a server. ```java // Create the root for client and server to trust. We could also use different roots for each! HeldCertificate rootCertificate = new HeldCertificate.Builder() .certificateAuthority(0) .build(); // Create a server certificate and a server that uses it.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 17 15:34:10 UTC 2023 - 9.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java
* timeoutFuture can be set (and delegate cancelled) only once. (And "set only once" is * important for other reasons: run() can still be invoked concurrently in different threads, * even with the above null checks.) */ timeoutFutureRef = null; if (delegate.isDone()) { timeoutFuture.setFuture(delegate); } else { try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 8.1K bytes - Viewed (0) -
doc/go1.17_spec.html
<h3 id="Uniqueness_of_identifiers">Uniqueness of identifiers</h3> <p> Given a set of identifiers, an identifier is called <i>unique</i> if it is <i>different</i> from every other in the set. Two identifiers are different if they are spelled differently, or if they appear in different <a href="#Packages">packages</a> and are not <a href="#Exported_identifiers">exported</a>. Otherwise, they are the same. </p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
} @GwtIncompatible // different overflow behavior; could probably be made to work by using ~~ public void testConcat_overflow_negative() { int dim1 = 1 << 16; int dim2 = 1 << 15; assertThat(dim1 * dim2).isLessThan(0); testConcatOverflow(dim1, dim2); } @GwtIncompatible // different overflow behavior; could probably be made to work by using ~~
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.8K bytes - Viewed (0) -
docs/fr/docs/tutorial/path-params-numeric-validations.md
Si vous voulez : * déclarer le paramètre de requête `q` sans `Query` ni valeur par défaut * déclarer le paramètre de chemin `item_id` en utilisant `Path` * les avoir dans un ordre différent * ne pas utiliser `Annotated` ...Python a une petite syntaxe spéciale pour cela. Passez `*`, comme premier paramètre de la fonction.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:32:37 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
/// /// warning If you do this, you have to make sure each one of your *path operation functions* has a unique name. Even if they are in different modules (Python files). /// ## Exclude from OpenAPI
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.6K bytes - Viewed (0) -
cmd/erasure-heal_test.go
for i := range staleWriters { if staleWriters[i] == nil { continue } if !bytes.Equal(bitrotWriterSum(staleWriters[i]), bitrotWriterSum(writers[i])) { t.Errorf("Test %d: heal returned different bitrot checksums", i) } } } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jan 30 20:43:25 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/en/docs/tutorial/path-params-numeric-validations.md
If you want to: * declare the `q` query parameter without a `Query` nor any default value * declare the path parameter `item_id` using `Path` * have them in a different order * not use `Annotated` ...Python has a little special syntax for that. Pass `*`, as the first parameter of the function.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.8K bytes - Viewed (0)