- Sort Score
- Result 10 results
- Languages All
Results 1651 - 1660 of 5,206 for RETURN (0.06 sec)
-
compat/maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java
return path.toFile(); } /** * Gets the file of this source. * * @return The underlying file, never {@code null}. * @since 4.0.0 */ public Path getPath() { return path; } @Override public String toString() { return getLocation(); } @Override public int hashCode() { return hashCode; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 18:51:29 UTC 2025 - 3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java
COPY_OF_COLLECTION { @Override public ImmutableMultiset<Object> create(List<?> keys) { return ImmutableMultiset.copyOf(keys); } }, COPY_OF_ITERATOR { @Override public ImmutableMultiset<Object> create(List<?> keys) { return ImmutableMultiset.copyOf(keys.iterator()); } }, BUILDER_ADD_ENTRY_BY_ENTRY { @OverrideRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/TreeConnectResponse.java
/** * Returns the tree identifier (TID) assigned to this tree connection. * * @return tree id */ int getTid(); /** * Returns the service type of the connected share (e.g., A: for disk, LPT1: for printer, IPC for named pipe). * * @return service */ String getService(); /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTargetName.java
} /** * Gets the target name from this AV pair * * @return the target name */ public String getTargetName() { return new String(getRaw(), UTF16LE); } /** * @param targetName * @return */ private static byte[] encode(final String targetName) { return targetName.getBytes(UTF16LE); }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicy.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableMap.java
@J2ktIncompatible @GwtIncompatible Object writeReplace() { return super.writeReplace(); } } return new EntrySetImpl(); } @Override ImmutableCollection<V> createValues() { return new ImmutableMapValues<>(this); } // redeclare to help optimizers with b/310253115 @SuppressWarnings("RedundantOverride")Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 41.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Equivalence.java
if (a == b) { return true; } if (a == null || b == null) { return false; } return doEquivalent(a, b); } /** * @since 10.0 (previously, subclasses would override equivalent()) */ @ForOverride protected abstract boolean doEquivalent(T a, T b); /** * <i>May</i> return {@code true} if {@code object} is a {@code Equivalence} that behaves
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 01:47:55 UTC 2025 - 14.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableMap.java
* lowerEntry} to forward to this implementation. */ protected @Nullable Entry<K, V> standardLowerEntry(@ParametricNullness K key) { return headMap(key, false).lastEntry(); } @Override public @Nullable K lowerKey(@ParametricNullness K key) { return delegate().lowerKey(key); } /** * A sensible definition of {@link #lowerKey} in terms of {@code lowerEntry}. If you override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingNavigableMap.java
* lowerEntry} to forward to this implementation. */ protected @Nullable Entry<K, V> standardLowerEntry(@ParametricNullness K key) { return headMap(key, false).lastEntry(); } @Override public @Nullable K lowerKey(@ParametricNullness K key) { return delegate().lowerKey(key); } /** * A sensible definition of {@link #lowerKey} in terms of {@code lowerEntry}. If you override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsUserInfoCB.java
@Override public UserInfoDbm asDBMeta() { return UserInfoDbm.getInstance(); } @Override public String asTableDbName() { return "user_info"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.5K bytes - Viewed (0)