- Sort Score
- Result 10 results
- Languages All
Results 1161 - 1170 of 1,686 for super (0.03 sec)
-
guava/src/com/google/common/collect/TransformedListIterator.java
abstract class TransformedListIterator<F extends @Nullable Object, T extends @Nullable Object> extends TransformedIterator<F, T> implements ListIterator<T> { TransformedListIterator(ListIterator<? extends F> backingIterator) { super(backingIterator); } private ListIterator<? extends F> backingIterator() { return (ListIterator<? extends F>) backingIterator; } @Override public final boolean hasPrevious() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Nov 21 21:43:01 UTC 2023 - 2.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java
boolean toArrayCalled = false; @Override public Object[] toArray() { toArrayCalled = true; return super.toArray(); } @Override public <T> T[] toArray(T[] a) { toArrayCalled = true; return super.toArray(a); } } // Test that toArray() is used to make a defensive copy in copyOf(), so concurrently modified
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 22.7K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Invokable.java
return specialized; } @SuppressWarnings("unchecked") // The declaring class is T's raw class, or one of its supertypes. @Override public final Class<? super T> getDeclaringClass() { return (Class<? super T>) member.getDeclaringClass(); } /** Returns the type of {@code T}. */ // Overridden in TypeToken#method() and TypeToken#constructor()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 19.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java
* 引数型の並び * @param cause * 原因となった例外 */ public NoSuchConstructorRuntimeException(final Class<?> targetClass, final Class<?>[] argTypes, final Throwable cause) { super("ECL0064", asArray(targetClass.getName(), MethodUtil.getSignature(targetClass.getSimpleName(), argTypes)), cause); this.targetClass = targetClass; this.argTypes = argTypes; } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextCredentialWrapper.java
/** * @param delegate * @param creds * Crendentials to use */ public CIFSContextCredentialWrapper ( AbstractCIFSContext delegate, Credentials creds ) { super(delegate); this.creds = creds; } /** * * {@inheritDoc} * * @see jcifs.context.CIFSContextWrapper#getCredentials() */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:32:29 UTC 2018 - 2.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptInvokerRequest.java
Path rootDirectory, InputStream in, OutputStream out, OutputStream err, List<CoreExtension> coreExtensions, Options options) { super( parserRequest, cwd, installationDirectory, userHomeDirectory, userProperties, systemProperties,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java
private double thresholdPermits; private double coldFactor; SmoothWarmingUp( SleepingStopwatch stopwatch, long warmupPeriod, TimeUnit timeUnit, double coldFactor) { super(stopwatch); this.warmupPeriodMicros = timeUnit.toMicros(warmupPeriod); this.coldFactor = coldFactor; } @Override void doSetRate(double permitsPerSecond, double stableIntervalMicros) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 19.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractBiMap.java
for (Entry<? extends K, ? extends V> entry : map.entrySet()) { put(entry.getKey(), entry.getValue()); } } @Override public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) { this.delegate.replaceAll(function); inverse.delegate.clear(); Entry<K, V> broken = null; Iterator<Entry<K, V>> itr = this.delegate.entrySet().iterator();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 24 01:40:03 UTC 2023 - 14.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
return 0; } int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) { return 0; } public String toString() { return new String( "Trans2FindFirst2[" + super.toString() + ",searchAttributes=0x" + Hexdump.toHexString( searchAttributes, 2 ) + ",searchCount=" + LIST_COUNT + ",flags=0x" + Hexdump.toHexString( flags, 2 ) +
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
import groovy.lang.GroovyClassLoader; import groovy.lang.GroovyShell; public class DocBoostMatcherTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); ScriptEngineFactory scriptEngineFactory = new ScriptEngineFactory(); ComponentUtil.register(scriptEngineFactory, "scriptEngineFactory"); new AbstractScriptEngine() { @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.6K bytes - Viewed (0)