- Sort Score
- Num 10 results
- Language All
Results 231 - 240 of 275 for store2 (0.06 seconds)
-
.github/CODEOWNERS
testing/architecture-test/src/changes/accepted-changes/accepted-public-api-changes.json testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt # Core automation platform (core/configuration) platforms/core-configuration/ @gradle/bt-cortex testing/smoke-ide-test/ @gradle/bt-cortex
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 18:38:15 GMT 2026 - 10.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
} @Test public void test_parseJwtClaim_floatValue() throws IOException { final String jwtClaim = "{\"score\":95.5}"; final Map<String, Object> attributes = new HashMap<>(); authenticator.parseJwtClaim(jwtClaim, attributes); assertEquals(95.5, attributes.get("score")); } @Test public void test_parseJwtClaim_emptyObject() throws IOException {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/RoleQueryHelper.java
*/ protected String headerKey; /** * Whether the header value is encrypted. */ protected boolean encryptedHeaderValue = true; /** * The key for the cookie that stores role information. */ protected String cookieKey; /** * Whether the cookie value is encrypted. */ protected boolean encryptedCookieValue = true; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 15.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
}; } catch (Exception e) { throw new RuntimeException(e); } } @Override public void store(DictionaryFile<?> file, File tempFile) { // Copy tempFile to testFile try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
return asStream(id).contentTypeOctetStream().stream(out -> { try (final ByteArrayOutputStream baos = new ByteArrayOutputStream()) { ComponentUtil.getSystemProperties().store(baos, id); try (final InputStream in = new ByteArrayInputStream(baos.toByteArray())) { out.write(in); } } });
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 32.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java
for (int i = start; i < start + size && i < allRecordCount; i++) { Map<String, Object> doc = new HashMap<>(); doc.put(ID_FIELD, Integer.toString(i)); doc.put("score", 1.0f / (i + 1)); builder.addDocument(doc); } builder.allRecordCount(allRecordCount); builder.allRecordCountRelation(Relation.EQUAL_TO.toString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* @return The value of found property. (NotNull: if not found, exception but basically no way) * @throws NumberFormatException When the property is not integer. */ Integer getCookieSearchParameterMaxLengthAsInteger(); /** * Get the value for the key 'cookie.search.parameter.name'. <br> * The value is, e.g. fsrp <br>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
/** * Attempts to acquire a distributed lock for the specified operation with optional data. * * @param operationName the operation name used as the lock document ID. * @param data optional data to store with the operation document. * @return {@code true} if the lock was acquired. */ public boolean tryStartOperation(final String operationName, final String data) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/UserServiceTest.java
import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; /** * Unit tests for {@link UserService}. * Tests user service business logic including store, delete, and password operations. */ public class UserServiceTest extends UnitFessTestCase { private UserService userService; @Override protected void setUp(TestInfo testInfo) throws Exception {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 12.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
*/ protected static class InputStreamThread extends Thread { /** Buffered reader for input stream. */ private BufferedReader br; /** List to store captured output lines. */ private final List<String> list = new LinkedList<>(); /** Maximum number of lines to buffer. */ private final int maxLineBuffer; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.4K bytes - Click Count (0)