- Sort Score
- Num 10 results
- Language All
Results 361 - 370 of 3,731 for get2 (0.02 seconds)
-
src/main/java/org/codelibs/fess/entity/FessUser.java
*/ public interface FessUser extends Serializable { /** * Gets the user's display name. * @return The user's name. */ String getName(); /** * Gets the user's assigned role names. * @return Array of role names. */ String[] getRoleNames(); /** * Gets the user's assigned group names. * @return Array of group names. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java
localLogMsg.remove(); } @Test public void test_beginWithRecordOnDestroy() { String key = "test"; crawlerStatsHelper.begin(key); crawlerStatsHelper.record(key, "aaa"); logger.info(localLogMsg.get()); assertNull(localLogMsg.get()); crawlerStatsHelper.destroy(); logger.info(localLogMsg.get());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
createdTime = null; versionNo = null; } /** * Gets the default current page number. * * @return the default current page number */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records in the result set. * * @return the total record count */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
assertTrue(boolOpt.isPresent()); assertTrue(dateOpt.isPresent()); assertEquals("string", stringOpt.get()); assertEquals(Integer.valueOf(42), intOpt.get()); assertEquals(Boolean.TRUE, boolOpt.get()); assertNotNull(dateOpt.get()); } @Test public void test_ofNullable_chainedOperations() { // Test chaining operations on the returned OptionalEntity
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java
this.execTime = execTime; this.wallTime = wallTime; } /** * Gets the project being summarized. * * @return The project being summarized, never {@code null}. */ public MavenProject getProject() { return project; } /** * Gets the wall time of the project in milliseconds. * * @return The wall time of the project in milliseconds.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
assertEquals("******@****.***", attributes.get("sub")); assertEquals("client-123", attributes.get("aud")); assertEquals(1700000000L, attributes.get("exp")); assertEquals(1699999900L, attributes.get("iat")); assertEquals("abc123", attributes.get("nonce")); assertEquals("hashvalue", attributes.get("at_hash"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
jobRuntimeLocal.set(runtime); } /** * Gets the job runtime for the current thread. * * @return the job runtime for the current thread */ public LaJobRuntime getJobRuntime() { return jobRuntimeLocal.get(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/EncodingFilterTest.java
assertEquals("222", paramMap.get("b")[0]); assertEquals("333", paramMap.get("c")[0]); paramMap = filter.parseQueryString("a=1&b=2&c=3&a=2", "UTF-8"); assertEquals(3, paramMap.size()); assertEquals("1", paramMap.get("a")[0]); assertEquals("2", paramMap.get("a")[1]); assertEquals("2", paramMap.get("b")[0]); assertEquals("3", paramMap.get("c")[0]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 3.4K bytes - Click Count (0) -
tests/test_dependency_overrides.py
return {"q": q, "skip": skip, "limit": limit} @app.get("/main-depends/") async def main_depends(commons: dict = Depends(common_parameters)): return {"in": "main-depends", "params": commons} @app.get("/decorator-depends/", dependencies=[Depends(common_parameters)]) async def decorator_depends(): return {"in": "decorator-depends"} @router.get("/router-depends/")Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 11.2K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
val Project.isBuildCommitDistribution: Boolean get() = gradleProperty(BUILD_COMMIT_DISTRIBUTION).map { it.toBoolean() }.orElse(false).get() val Project.buildFinalRelease: Provider<String> get() = gradleProperty(BUILD_FINAL_RELEASE) val Project.buildId: Provider<String> get() = environmentVariable(BUILD_ID) val Project.buildRcNumber: Provider<String> get() = gradleProperty(BUILD_RC_NUMBER)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 05:13:29 GMT 2026 - 18K bytes - Click Count (0)