- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 2,019 for super (0.02 sec)
-
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
super.addFieldToSource(sourceMap, field, DateTimeFormatter.ISO_INSTANT.format(zdt)); } else { super.addFieldToSource(sourceMap, field, value); } } @Override public void setUserInfoId(final String value) { userInfo = null; super.setUserInfoId(value); } @Override
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/UnmodifiableSortedMultiset.java
implements SortedMultiset<E> { UnmodifiableSortedMultiset(SortedMultiset<E> delegate) { super(delegate); } @Override protected SortedMultiset<E> delegate() { return (SortedMultiset<E>) super.delegate(); } @Override public Comparator<? super E> comparator() { return delegate().comparator(); } @Override SortedSet<E> createElementSet() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularImmutableTable.java
@Override @J2ktIncompatible @GwtIncompatible Object writeReplace() { return super.writeReplace(); } } static <R, C, V> RegularImmutableTable<R, C, V> forCells( List<Cell<R, C, V>> cells, @Nullable Comparator<? super R> rowComparator, @Nullable Comparator<? super C> columnComparator) { checkNotNull(cells); if (rowComparator != null || columnComparator != null) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 21:07:18 UTC 2025 - 7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/CollectorTester.java
Collector<T, A, R> collector, BiPredicate<? super R, ? super R> equivalence) { return new CollectorTester<>(collector, equivalence); } private final Collector<T, A, R> collector; private final BiPredicate<? super R, ? super R> equivalence; private CollectorTester( Collector<T, A, R> collector, BiPredicate<? super R, ? super R> equivalence) { this.collector = checkNotNull(collector);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu May 15 21:47:56 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetShareEnumResponse.java
/** * Constructs a NetShareEnumResponse * @param config * the configuration to use */ public NetShareEnumResponse(final Configuration config) { super(config); } @Override protected int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
* @param maxReferralLevel the maximum referral level to request */ public Trans2GetDfsReferral(final Configuration config, final String filename, final int maxReferralLevel) { super(config, SMB_COM_TRANSACTION2, TRANS2_GET_DFS_REFERRAL); this.maxReferralLevel = maxReferralLevel; this.request = new DfsReferralRequestBuffer(filename, maxReferralLevel); this.totalDataCount = 0;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java
public void write(Buffer source, long byteCount) throws IOException { super.write(source, byteCount); totalBytesWritten += byteCount; progressListener.update(totalBytesWritten, contentLength(), completed); } @Override public void close() throws IOException { super.close(); if (!completed) { completed = true;
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 4.2K bytes - Viewed (1) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/VersionsMetadata.java
private final Artifact artifact; VersionsMetadata(Artifact artifact, Date timestamp) { super(createRepositoryMetadata(artifact), (Path) null, timestamp); this.artifact = artifact; } VersionsMetadata(Artifact artifact, Path path, Date timestamp) { super(createRepositoryMetadata(artifact), path, timestamp); this.artifact = artifact; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
SortedKeySet(SortedMap<K, Collection<V>> subMap) { super(subMap); } SortedMap<K, Collection<V>> sortedMap() { return (SortedMap<K, Collection<V>>) super.map(); } @Override public @Nullable Comparator<? super K> comparator() { return sortedMap().comparator(); } @Override @ParametricNullnessRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 48.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/InvalidPluginException.java
public InvalidPluginException(String message, ProjectBuildingException e) { super(message, e); } public InvalidPluginException(String message, InvalidDependencyVersionException e) { super(message, e); } public InvalidPluginException(String message) { super(message); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0)