- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,025 for quals (0.17 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
this.value = value; } @Override public int compareTo(ClassWithTerribleHashCode that) { return Integer.compare(this.value, that.value); } @Override public boolean equals(@Nullable Object x) { return x instanceof ClassWithTerribleHashCode && ((ClassWithTerribleHashCode) x).value == value; } @Override public int hashCode() { return 23;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.7K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<![CDATA[ /** * @see java.lang.Object#equals(java.lang.Object) */ public boolean equals(Object o) { if (this == o) { return true; } else if (o instanceof Extension e) { return java.util.Objects.equals(e.getArtifactId(), getArtifactId()) && java.util.Objects.equals(e.getGroupId(), getGroupId())
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 07 14:32:16 UTC 2025 - 132.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
public Object load(Object key) { return new Object(); } @Override public int hashCode() { return 42; } @Override public boolean equals(@Nullable Object o) { return o instanceof SerializableCacheLoader; } } private static class SerializableRemovalListener<K, V> implements RemovalListener<K, V>, Serializable {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractService.java
* grab a lock. */ // @Immutable except that Throwable is mutable (initCause(), setStackTrace(), mutable subclasses). private static final class StateSnapshot { /** * The internal state, which equals external state unless shutdownWhenStartupFinishes is true. */ final State state; /** If true, the user requested a shutdown while the service was still starting up. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 20.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/handling-errors.md
E porque é uma exceção do Python, você não **retorna** (return) o `HTTPException`, você lança o (raise) no seu código.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/Iterables.java
public Spliterator<T> spliterator() { return (Spliterator<T>) iterable.spliterator(); } @Override public String toString() { return iterable.toString(); } // no equals and hashCode; it would break the contract! } /** Returns the number of elements in {@code iterable}. */ public static int size(Iterable<?> iterable) { return (iterable instanceof Collection)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
* @param thost * @return */ protected boolean matches(CIFSContext tf, String thost, String tdom) { return Objects.equals(this.getCredentials(), tf.getCredentials()) && Objects.equals(this.targetHost, thost) && Objects.equals(this.targetDomain, tdom); } <T extends CommonServerMessageBlockResponse> T send(CommonServerMessageBlockRequest request, T response) throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
break; } } } catch (final ErrorResponseException e) { final String code = e.errorResponse().code(); if ("NoSuchBucket".equals(code)) { final MinioClient minioClient = createClient(fessConfig); try { final MakeBucketArgs args = MakeBucketArgs.builder().bucket(fessConfig.getStorageBucket()).build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
for (final Map<String, Object> doc : docs) { final Object oldIdValue = doc.get(fessConfig.getIndexFieldId()); if (oldIdValue != null && !idValue.equals(oldIdValue)) { final Object oldDocIdValue = doc.get(fessConfig.getIndexFieldDocId()); if (oldDocIdValue != null) { docIdList.add(oldDocIdValue.toString());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ElevateWordService.java
for (final String id : labelTypeIds) { boolean exist = false; for (final ElevateWordToLabel mapping : list) { if (mapping.getLabelTypeId().equals(id)) { exist = true; matchedList.add(mapping); break; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.3K bytes - Viewed (0)