- Sort Score
- Num 10 results
- Language All
Results 1241 - 1250 of 2,336 for super (0.02 seconds)
-
android/guava/src/com/google/common/util/concurrent/Futures.java
private static final class CallbackListener<V extends @Nullable Object> implements Runnable { final Future<V> future; final FutureCallback<? super V> callback; CallbackListener(Future<V> future, FutureCallback<? super V> callback) { this.future = future; this.callback = callback; } @Override public void run() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 64.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java
* @param asyncId * The async ID for asynchronous operations (0 for synchronous) */ public Smb2CancelRequest(final Configuration config, final long mid, final long asyncId) { super(config, SMB2_CANCEL); setMid(mid); setAsyncId(asyncId); if (asyncId != 0) { addFlags(SMB2_FLAGS_ASYNC_COMMAND); } } /** * {@inheritDoc} *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
*/ public class BoostDocumentRuleService extends FessAppService { /** * Default constructor for BoostDocumentRuleService. */ public BoostDocumentRuleService() { super(); } /** Database behavior for boost document rule operations. */ @Resource protected BoostDocumentRuleBhv boostDocumentRuleBhv; /** Fess configuration. */ @ResourceCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
/** * Query command for phrase queries. */ public class PhraseQueryCommand extends QueryCommand { /** * Default constructor. */ public PhraseQueryCommand() { super(); } private static final Logger logger = LogManager.getLogger(PhraseQueryCommand.class); @Override protected String getQueryClassName() { return PhraseQuery.class.getSimpleName(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 4.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
* * @since 22.0 */ public static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset( Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) { return CollectCollectors.toImmutableMultiset(elementFunction, countFunction); } /** * Returns the empty immutable multiset. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 20.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/graph/GraphMutationTest.java
testGraphMutation(GraphBuilder.directed()); } @Test public void undirectedGraph() { testGraphMutation(GraphBuilder.undirected()); } private static void testGraphMutation(GraphBuilder<? super Integer> graphBuilder) { Random gen = new Random(42); // Fixed seed so test results are deterministic. for (int trial = 0; trial < NUM_TRIALS; ++trial) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 4.2K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
while (allTests.hasMoreElements()) { Object test = allTests.nextElement(); if (test instanceof AbstractTester) { @SuppressWarnings("unchecked") AbstractTester<? super G> tester = (AbstractTester<? super G>) test; tester.init(subjectGenerator, name, setUp, tearDown); } } return suite; } private TestSuite filterSuite(TestSuite suite) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 10.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java
@Nullable RequestTrace trace, @Nullable Source installationToolchainsSource, @Nullable Source userToolchainsSource) { super(session, trace); this.installationToolchainsSource = installationToolchainsSource; this.userToolchainsSource = userToolchainsSource; } @NonnullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 6.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakAcknowledgment.java
* @param leaseKey lease key * @param leaseState acknowledged lease state */ public Smb2LeaseBreakAcknowledgment(Configuration config, Smb2LeaseKey leaseKey, int leaseState) { super(config, SMB2_OPLOCK_BREAK); this.leaseKey = leaseKey; this.leaseState = leaseState; this.flags = 0; } /** * Create a lease break acknowledgment *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 4.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
@Nullable RequestTrace trace, @Nonnull Collection<? extends ArtifactCoordinates> coordinates, @Nonnull List<RemoteRepository> repositories) { super(session, trace); this.coordinates = List.copyOf(requireNonNull(coordinates, "coordinates cannot be null")); this.repositories = validate(repositories); } @NonnullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 5.5K bytes - Click Count (0)