- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 2,095 for getI (0.37 seconds)
-
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
final String[] values = entry.getValue().split(","); for (final String value : values) { putResultDataWithTemplate(dataMap, key, metaDataMap.get(value), scriptConfigMap.get(key), scriptType); } } final Map<String, String> valueConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.VALUE);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ProtocolTest.kt
import okhttp3.Protocol.Companion.get import org.junit.jupiter.api.Assertions.assertThrows import org.junit.jupiter.api.Test class ProtocolTest { @Test fun testGetKnown() { assertThat(get("http/1.0")).isEqualTo(Protocol.HTTP_1_0) assertThat(get("http/1.1")).isEqualTo(Protocol.HTTP_1_1) assertThat(get("spdy/3.1")).isEqualTo(Protocol.SPDY_3) assertThat(get("h2")).isEqualTo(Protocol.HTTP_2)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
return 2.5f; } }; indexUpdater.addDocBoostMatcher(matcher); indexUpdater.updateDocument(doc); assertEquals(2.5f, doc.get("boost")); assertNotNull(doc.get("doc_id")); } // Test updateDocument without boost @Test public void test_updateDocument_withoutBoost() { final Map<String, Object> doc = new HashMap<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
} } /** * Gets the status. * * @return the status */ public int getStatus() { return status; } /** * Gets the cluster name. * * @return the cluster name */ public String getClusterName() { return clusterName; } /** * Gets the cluster status. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.4K bytes - Click Count (2) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
} return null; } /** * Gets the configured SSO type from the system configuration. * * @return The SSO type string from configuration */ protected String getSsoType() { return ComponentUtil.getFessConfig().getSsoType(); } /** * Gets all registered SSO authenticators. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
assertEquals("filetype:pdf", queryMap.get("labels.facet_filetype_pdf")); } else { assertEquals("filetype:pdf", queryMap.get("PDF")); } if (queryMap.containsKey("DOC")) { assertEquals("filetype:doc", queryMap.get("DOC")); } else { assertEquals("filetype:doc", queryMap.get("labels.facet_filetype_doc")); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 17.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
callback.store(params, data); assertEquals(3L, callback.getDocumentSize()); assertEquals(0, commitCount.get()); // Commit callback.commit(); assertEquals(1, commitCount.get()); assertEquals(3L, documentsBeforeCommit.get()); // Store more and commit again callback.store(params, data); callback.store(params, data);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 12.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/DenseImmutableTable.java
for (int i = 0; i < cellList.size(); i++) { Cell<R, C, V> cell = cellList.get(i); R rowKey = cell.getRowKey(); C columnKey = cell.getColumnKey(); // The requireNonNull calls are safe because we construct the indexes with indexMap. int rowIndex = requireNonNull(rowKeyToIndex.get(rowKey)); int columnIndex = requireNonNull(columnKeyToIndex.get(columnKey)); V existingValue = values[rowIndex][columnIndex];
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 9.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value of property as {@link String}. * @param propertyKey The key of the property. (NotNull) * @return The value of found property. (NotNull: if not found, exception) * @throws ConfigPropertyNotFoundException When the property is not found. */ String get(String propertyKey); /** * Is the property true?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) -
guava-tests/test/com/google/common/collect/EnumHashBiMapTest.java
EnumHashBiMap<Currency, String> bimap2 = EnumHashBiMap.create(bimap1); assertThat(bimap2.get(Currency.DOLLAR)).isEqualTo("dollar"); assertEquals(bimap1, bimap2); bimap2.inverse().put("franc", Currency.FRANC); assertThat(bimap2.get(Currency.FRANC)).isEqualTo("franc"); assertThat(bimap1.get(Currency.FRANC)).isNull(); assertFalse(bimap2.equals(bimap1)); /* Test that it can be empty. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 8.4K bytes - Click Count (0)