- Sort Score
- Num 10 results
- Language All
Results 1351 - 1360 of 2,336 for super (0.03 seconds)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
* @param expectInfoClass * the expected information class in the response */ public Smb2QueryInfoResponse(final Configuration config, final byte expectInfoType, final byte expectInfoClass) { super(config); this.expectInfoType = expectInfoType; this.expectInfoClass = expectInfoClass; } /** * Gets the information returned by the query * * @return the informationCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java
this.locator = locator; this.binder = binder; } @Override protected <U> Injector bind(Key<U> key, Binding<U> binding) { super.bind(key, binding); if (key.getQualifier() != null) { com.google.inject.Key<U> k = toGuiceKey(key); this.binder.bind(k).toProvider(new BridgeProvider<>(binding)); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 16:01:38 GMT 2025 - 11.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
import org.opensearch.search.SearchHit; /** * This class is a base class for score boosters. */ public abstract class ScoreBooster { /** * Constructor. */ public ScoreBooster() { super(); } private static final Logger logger = LogManager.getLogger(ScoreBooster.class); /** * The bulk request builder. */ protected BulkRequestBuilder bulkRequestBuilder = null;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
/** * Admin action for Search List. * */ public class AdminSearchlistAction extends FessAdminAction { /** * Default constructor. */ public AdminSearchlistAction() { super(); } /** Role name for admin search list operations */ public static final String ROLE = "admin-searchlist"; // ===================================================================================Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1) -
guava-tests/test/com/google/common/graph/NetworkMutationTest.java
} @Test public void undirectedNetwork() { testNetworkMutation(NetworkBuilder.undirected()); } private static void testNetworkMutation(NetworkBuilder<? super Integer, Object> networkBuilder) { Random gen = new Random(42); // Fixed seed so test results are deterministic. for (int trial = 0; trial < NUM_TRIALS; ++trial) { MutableNetwork<Integer, Object> network =
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 4.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
private static class TestFessSystemException extends FessSystemException { public TestFessSystemException(String message, boolean enableSuppression, boolean writableStackTrace) { super(message, enableSuppression, writableStackTrace); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingSortedSet.java
/** Constructor for use by subclasses. */ protected ForwardingSortedSet() {} @Override protected abstract SortedSet<E> delegate(); @Override public @Nullable Comparator<? super E> comparator() { return delegate().comparator(); } @Override @ParametricNullness public E first() { return delegate().first(); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 12 16:28:01 GMT 2025 - 5.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/SortedMultiset.java
/** * Returns the comparator that orders this multiset, or {@link Ordering#natural()} if the natural * ordering of the elements is used. */ @Override Comparator<? super E> comparator(); /** * Returns the entry of the first element in this multiset, or {@code null} if this multiset is * empty. */ @Nullable Entry<E> firstEntry(); /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 5.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ComparatorsTest.java
assertThat(max(2, 1, reverse)).isEqualTo(1); } /** * Fails compilation if the signature of min and max is changed to take {@code Comparator<T>} * instead of {@code Comparator<? super T>}. */ public void testMinMaxWithSupertypeComparator() { Comparator<Number> numberComparator = comparing(Number::intValue); Integer comparand1 = 1; Integer comparand2 = 2;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Apr 12 15:07:59 GMT 2025 - 6.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/SortedMultiset.java
/** * Returns the comparator that orders this multiset, or {@link Ordering#natural()} if the natural * ordering of the elements is used. */ @Override Comparator<? super E> comparator(); /** * Returns the entry of the first element in this multiset, or {@code null} if this multiset is * empty. */ @Nullable Entry<E> firstEntry(); /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 5.4K bytes - Click Count (0)