- Sort Score
- Result 10 results
- Languages All
Results 1491 - 1500 of 3,473 for final (0.02 sec)
-
guava/src/com/google/common/collect/StandardTable.java
Iterator<C> createColumnKeyIterator() { return new ColumnKeyIterator(); } private final class ColumnKeyIterator extends AbstractIterator<C> { // Use the same map type to support TreeMaps with comparators that aren't // consistent with equals(). final Map<C, V> seen = factory.get(); final Iterator<Map<C, V>> mapIterator = backingMap.values().iterator();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRelatedContentCQ.java
ScoreFunctionCall<ScoreFunctionCreator<RelatedContentCQ>> functionsLambda, final ConditionOptionCall<FunctionScoreQueryBuilder> opLambda) { RelatedContentCQ cq = new RelatedContentCQ(); queryLambda.callback(cq); final Collection<FilterFunctionBuilder> list = new ArrayList<>(); if (functionsLambda != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 63.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsDuplicateHostCQ.java
ScoreFunctionCall<ScoreFunctionCreator<DuplicateHostCQ>> functionsLambda, final ConditionOptionCall<FunctionScoreQueryBuilder> opLambda) { DuplicateHostCQ cq = new DuplicateHostCQ(); queryLambda.callback(cq); final Collection<FilterFunctionBuilder> list = new ArrayList<>(); if (functionsLambda != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 58.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFailureUrlCQ.java
public void functionScore(OperatorCall<FailureUrlCQ> queryLambda, ScoreFunctionCall<ScoreFunctionCreator<FailureUrlCQ>> functionsLambda, final ConditionOptionCall<FunctionScoreQueryBuilder> opLambda) { FailureUrlCQ cq = new FailureUrlCQ(); queryLambda.callback(cq); final Collection<FilterFunctionBuilder> list = new ArrayList<>(); if (functionsLambda != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 57.5K bytes - Viewed (0) -
src/main/java/jcifs/util/InputValidator.java
public static final int MAX_BUFFER_SIZE = 65536; // 64KB default max buffer public static final int MAX_SMB2_BUFFER_SIZE = 8388608; // 8MB for SMB2/3 public static final int MAX_CREDITS = 65535; // Patterns for validation private static final Pattern VALID_USERNAME = Pattern.compile("^[a-zA-Z0-9._\\-@]+$"); private static final Pattern VALID_DOMAIN = Pattern.compile("^[a-zA-Z0-9._\\-]+$");Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java
} private final int[] factorials = new int[ARRAY_SIZE]; private final int[][] binomials = new int[ARRAY_SIZE][2]; private final int[][] nonnegInt = new int[ARRAY_SIZE][2]; private final long[][] nonnegLong = new long[ARRAY_SIZE][2]; private final int[][] intsToAdd = new int[ARRAY_SIZE][2]; private final int[][] intsToMul = new int[ARRAY_SIZE][2]; private final long[][] longsToAdd = new long[ARRAY_SIZE][2];
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
implements ArtifactCoordinatesFactoryRequest { private final String groupId; private final String artifactId; private final String version; private final String classifier; private final String extension; private final String type; private final String coordinatesString; @SuppressWarnings("checkstyle:ParameterNumber")Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DiscreteDomain.java
} private static final class BigIntegerDomain extends DiscreteDomain<BigInteger> implements Serializable { private static final BigIntegerDomain INSTANCE = new BigIntegerDomain(); BigIntegerDomain() { super(true); } private static final BigInteger MIN_LONG = BigInteger.valueOf(Long.MIN_VALUE); private static final BigInteger MAX_LONG = BigInteger.valueOf(Long.MAX_VALUE);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
} private static final class PostOrderNode<T> { final T root; final Iterator<T> childIterator; PostOrderNode(T root, Iterator<T> childIterator) { this.root = checkNotNull(root); this.childIterator = checkNotNull(childIterator); } } private final class PostOrderIterator extends AbstractIterator<T> { private final ArrayDeque<PostOrderNode<T>> stack;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SearchQueryException.java
/** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /** * Constructs a new SearchQueryException with the specified detail message and cause. * * @param message The detail message explaining the exception * @param cause The cause of this exception */ public SearchQueryException(final String message, final Throwable cause) { super(message, cause); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)