- Sort Score
- Num 10 results
- Language All
Results 921 - 930 of 3,322 for strana (0.53 seconds)
-
src/main/java/org/codelibs/fess/job/IndexExportJob.java
*/ protected void exportDocument(final Map<String, Object> source, final String exportPath, final Set<String> excludeFields, final IndexExportFormatter formatter) { final Object urlObj = source.get("url"); if (urlObj == null) { logger.debug("Skipping document without url field."); return; } final String url = urlObj.toString();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
docs/recipes.md
### Synchronous Get ([.kt][SynchronousGetKotlin], [.java][SynchronousGetJava]) Download a file, print its headers, and print its response body as a string. The `string()` method on response body is convenient and efficient for small documents. But if the response body is large (greater than 1 MiB), avoid `string()` because it will load the entire document into memory. In that case, prefer to process the body as a stream. === ":material-language-kotlin: Kotlin"
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 47.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/SourceSinkTester.java
} @Override public String getName() { return super.getName() + " [" + suiteName + " [" + caseDesc + "]]"; } protected static ImmutableList<String> getLines(String string) { try { return new CharSource() { @Override public Reader openStream() throws IOException { return new StringReader(string); } }.readLines();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 4.9K bytes - Click Count (0) -
src/test/java/org/codelibs/core/lang/ClassUtilTest.java
assertThat(ClassUtil.getSimpleClassName(int.class), is("int")); assertThat(ClassUtil.getSimpleClassName(String.class), is("java.lang.String")); assertThat(ClassUtil.getSimpleClassName(int[].class), is("int[]")); assertThat(ClassUtil.getSimpleClassName(String[][].class), is("java.lang.String[][]")); } /** * */ @Test public void testConcatName() {
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 6.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test with empty string message String message = ""; DataStoreException exception = new DataStoreException(message); assertNotNull(exception); assertEquals(message, exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/ForwardingCollectionTest.java
suite.addTest( CollectionTestSuiteBuilder.using( new TestStringCollectionGenerator() { @Override protected Collection<String> create(String[] elements) { return new StandardImplForwardingCollection<>( new LinkedList<>(asList(elements))); } })
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 20:34:52 GMT 2025 - 4.8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
} private List<Map<String, String>> getRagLlmNameItems() { final List<Map<String, String>> itemList = new ArrayList<>(); final LlmClientManager llmClientManager = ComponentUtil.getComponent("llmClientManager"); for (final LlmClient client : llmClientManager.getClients()) { final Map<String, String> map = new HashMap<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 05:54:31 GMT 2026 - 27.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsScheduledJobBhv.java
@Override public String asTableDbName() { return asEsIndexType(); } @Override protected String asEsIndex() { return "fess_config.scheduled_job"; } @Override public String asEsIndexType() { return "scheduled_job"; } @Override public String asEsSearchType() { return "scheduled_job"; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
* Name of the argument * @param messageCode * Message code * @param args * Array of arguments */ public EmptyArgumentException(final String argName, final String messageCode, final Object[] args) { this(argName, messageCode, args, null); } /** * Creates an {@link EmptyArgumentException}. * * @param argNameCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
* @return the existing or new session */ public ChatSession getOrCreateSession(final String sessionId, final String userId) { if (sessionId != null) { final ChatSession session = findSession(sessionId); if (session != null) { final String sessionUserId = session.getUserId(); // Validate userId matches - prevent cross-user session accessCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0)