- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 2,308 for instants (0.04 seconds)
-
api/maven-api-core/src/test/java/org/apache/maven/api/MonotonicClockTest.java
void testRapidCalls() { Instant[] instants = new Instant[1000]; for (int i = 0; i < instants.length; i++) { instants[i] = MonotonicClock.now(); } // Verify monotonic behavior across all measurements for (int i = 1; i < instants.length; i++) { assertTrue( instants[i].compareTo(instants[i - 1]) >= 0,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 15 06:28:29 GMT 2025 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/Constants.java
* This class contains only static constants and should not be instantiated. */ private Constants() { // Utility class - no instantiation } // ============================================================ // System and UI Constants // ============================================================ /** System line separator character sequence. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 35.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java
import java.nio.charset.StandardCharsets; /** * Constants used in the fess-crawler. * This class provides a collection of constant values for HTTP methods, status codes, * transformer names, boolean values, character encodings, date/time formats, and XML features. * It is designed to avoid the instantiation. */ public final class Constants { /** * The GET method. */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 3.6K bytes - Click Count (0) -
cmd/build-constants.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import "runtime" // DO NOT EDIT THIS FILE DIRECTLY. These are build-time constants // set through ‘buildscripts/gen-ldflags.go’. var ( // GOPATH - GOPATH value at the time of build. GOPATH = "" // GOROOT - GOROOT value at the time of build. GOROOT = ""
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed May 01 17:57:52 GMT 2024 - 2.2K bytes - Click Count (0) -
internal/config/constants.go
Ramon de Klein <******@****.***> 1726881534 +0200
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Sep 21 01:18:54 GMT 2024 - 3.4K bytes - Click Count (1) -
fastapi/openapi/constants.py
Sebastián Ramírez <******@****.***> 1688749933 +0200
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Jul 07 17:12:13 GMT 2023 - 153 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_GENERAL_ENTITIES, false); factory.setFeature(org.codelibs.fess.crawler.Constants.FEATURE_EXTERNAL_PARAMETER_ENTITIES, false); factory.setFeature(Constants.XERCES_FEATURE_PREFIX + Constants.LOAD_EXTERNAL_DTD_FEATURE, false);
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
} /** * Creates a new RequestDataContext for building RequestData instances. * * @return a new RequestDataContext instance */ public static RequestDataContext newRequestData() { return new RequestDataContext(); } /** * Context class for building RequestData instances using a fluent API. */ public static class RequestDataContext {Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 4.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
* is used to construct the sample instances. In case of tie, the candidate constructors or * factories are tried one after another until one can be used to construct sample * instances. * <li>For the constructor or static factory method used to construct instances, it's checked * that when equal parameters are passed, the result instance should also be equal; and vice * versa.
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 32.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
logger.debug("Initializing {}", this.getClass().getSimpleName()); } load(); } /** * Returns a list of available KeyMatch instances. * * @return A list of KeyMatch instances. */ public List<KeyMatch> getAvailableKeyMatchList() { return ComponentUtil.getComponent(KeyMatchBhv.class).selectList(cb -> { cb.query().matchAll();
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.1K bytes - Click Count (0)