- Sort Score
- Result 10 results
- Languages All
Results 741 - 750 of 1,078 for greatest (0.04 sec)
-
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
protected final Map<String, MethodDesc[]> methodDescsCache = newHashMap(); /** Set of invalid property names */ protected final Set<String> invalidPropertyNames = newHashSet(); /** * Creates a {@link BeanDescImpl}. * * @param beanClass * the class of the bean. Must not be {@literal null} */ public BeanDescImpl(final Class<?> beanClass) {
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
android/guava-tests/test/com/google/common/math/StatsTesting.java
} /** * Creates a {@link PairedStats} from with the given lists of {@code x} and {@code y} values, * which must be of the same size. */ static PairedStats createPairedStatsOf(List<Double> xValues, List<Double> yValues) { return createFilledPairedStatsAccumulator(xValues, yValues).snapshot(); } /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 23.8K bytes - Viewed (0) -
guava/src/com/google/common/graph/ValueGraph.java
* * <p>For undirected graphs, this is equal to {@code incidentEdges(node).size()} + (number of * self-loops incident to {@code node}). * * <p>If the count is greater than {@code Integer.MAX_VALUE}, returns {@code Integer.MAX_VALUE}. * * @throws IllegalArgumentException if {@code node} is not an element of this graph */ @Override int degree(N node); /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
/** * Fess configuration containing application settings. * Used to retrieve paging and other configuration parameters. */ @Resource protected FessConfig fessConfig; /** * Creates a new instance of DuplicateHostService. * This constructor initializes the service for managing duplicate host configuration operations * including CRUD operations and search functionality. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java
this.delegate = requireNonNull(delegate); if (queueSize < 1 || batchMaxSize < 1) { throw new IllegalArgumentException("Queue and batch sizes must be greater than 1"); } this.batchMaxSize = batchMaxSize; this.blockOnLastEvent = blockOnLastEvent; this.eventQueue = new ArrayBlockingQueue<>(queueSize);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 8.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectModelResolverTest.java
/** * Test cases for the project {@code ModelResolver} implementation. * * @since 3.5.0 */ class ProjectModelResolverTest extends AbstractMavenProjectTestCase { /** * Creates a new {@code ProjectModelResolverTest} instance. */ ProjectModelResolverTest() { super(); } @Test void testResolveParentThrowsUnresolvableModelExceptionWhenNotFound() throws Exception {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 8.7K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* * <p>Note that the cache <b>may evict an entry before this limit is exceeded</b>. For example, in * the current implementation, when {@code concurrencyLevel} is greater than {@code 1}, each * resulting segment inside the cache <i>independently</i> limits its own size to approximately * {@code maximumSize / concurrencyLevel}. *
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Oct 08 18:55:33 UTC 2025 - 51.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
*/ public class DcerpcPipeHandle extends DcerpcHandle { SmbNamedPipe pipe; SmbFileInputStream in = null; SmbFileOutputStream out = null; boolean isStart = true; /** * Creates a DCERPC pipe handle with the specified URL and authentication * @param url the DCERPC URL specifying the endpoint * @param auth the NTLM authentication credentialsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsProblem.java
private final int lineNumber; private final int columnNumber; private final String message; private final Exception exception; private final Severity severity; /** * Creates a new problem with the specified message and exception. * * @param message The message describing the problem, may be {@code null}. * @param severity The severity level of the problem, may be {@code null} to default toRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java
} // ----------------------------------------------------- // Actually Crud // ------------- /** * Creates a new related query item. * * @param form the create form containing the new item data * @return HTML response redirecting to the list page after creation */ @Execute @Secured({ ROLE })Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 16.3K bytes - Viewed (0)