- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 1,686 for super (0.05 sec)
-
android/guava/src/com/google/common/util/concurrent/SettableFuture.java
@Override public boolean set(@ParametricNullness V value) { return super.set(value); } @CanIgnoreReturnValue @Override public boolean setException(Throwable throwable) { return super.setException(throwable); } @CanIgnoreReturnValue @Override public boolean setFuture(ListenableFuture<? extends V> future) { return super.setFuture(future); } private SettableFuture() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 01 17:18:04 UTC 2021 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
} }); return viewHelper.getActionHook().godHandPrologue(runtime, super::godHandPrologue); } @Override public final ActionResponse godHandMonologue(final ActionRuntime runtime) { return viewHelper.getActionHook().godHandMonologue(runtime, super::godHandMonologue); } @Override public final void godHandEpilogue(final ActionRuntime runtime) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.3K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/MapRetrievalCache.java
@CheckForNull private transient volatile CacheEntry<K, V> cacheEntry1; @CheckForNull private transient volatile CacheEntry<K, V> cacheEntry2; MapRetrievalCache(Map<K, V> backingMap) { super(backingMap); } @SuppressWarnings("unchecked") // Safe because we only cast if key is found in map. @Override @CheckForNull V get(Object key) { checkNotNull(key); V value = getIfCached(key);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 3.2K bytes - Viewed (0) -
docs_src/dependencies/tutorial006.py
app = FastAPI() async def verify_token(x_token: str = Header()): if x_token != "fake-super-secret-token": raise HTTPException(status_code=400, detail="X-Token header invalid") async def verify_key(x_key: str = Header()): if x_key != "fake-super-secret-key": raise HTTPException(status_code=400, detail="X-Key header invalid") return x_key
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri May 13 23:38:22 UTC 2022 - 583 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java
withFeatures(KNOWN_ORDER); TestSuite suite = super.createTestSuite(); for (TestSuite subSuite : createDerivedSuites(this)) { suite.addTest(subSuite); } return suite; } @SuppressWarnings("rawtypes") // class literals @Override protected List<Class<? extends AbstractTester>> getTesters() { List<Class<? extends AbstractTester>> testers = copyToList(super.getTesters());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 12K bytes - Viewed (0) -
guava/src/com/google/common/collect/GeneralRange.java
return new GeneralRange<>(comparator, false, null, OPEN, false, null, OPEN); } /** * Returns everything above the endpoint relative to the specified comparator, with the specified * endpoint behavior. */ static <T extends @Nullable Object> GeneralRange<T> downTo(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 10.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeResolverTest.java
.resolveType(t)); assertEquals( String.class, new TypeResolver() .where( new TypeCapture<List<? super T>>() {}.capture(), new TypeCapture<List<? super String>>() {}.capture()) .resolveType(t)); } public <T> void testWhere_incompatibleGenericArrayMapping() { assertThrows( IllegalArgumentException.class,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 9.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java
return signature; } } private static class BlockLinkMetaData extends MethodLinkMetaData { private BlockLinkMetaData(String name, String signature) { super(name, signature, LinkMetaData.Style.Dsldoc); } @Override public String getDisplayName() { return String.format("%s{}", name); } }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java
flags = 0x00; maxParameterCount = 8; maxDataCount = Trans2FindFirst2.LIST_SIZE; maxSetupCount = 0; } void reset( int resumeKey, String lastName ) { super.reset(); this.resumeKey = resumeKey; this.filename = lastName; flags2 = 0; } int writeSetupWireFormat( byte[] dst, int dstIndex ) { dst[dstIndex++] = subCommand;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
private String[] dialects; /** * * @param config * @param signingEnforced */ public SmbComNegotiate ( Configuration config, boolean signingEnforced ) { super(config, SMB_COM_NEGOTIATE); this.signingEnforced = signingEnforced; setFlags2(config.getFlags2()); if ( config.getMinimumVersion().isSMB2() ) { this.dialects = new String[] {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0)