Search Options

Results per page
Sort
Preferred Languages
Advance

Results 401 - 410 of 451 for SetValue (0.05 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

    1. expectAdded(nullKeyValueEntry);
    2. }
    3.  
    4. @CanIgnoreReturnValue
    5. private V put(Entry<K, V> entry) {
    6. return getMap().put(entry.getKey(), entry.getValue());
    7. }
    8.  
    9. /**
    10. * Returns the {@link Method} instance for {@link #testPut_nullKeyUnsupported()} so that tests of
    11. * {@link java.util.TreeMap} can suppress it with {@code
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

    1. return;
    2. }
    3.  
    4. for (final Map.Entry<String, PDComplexFileSpecification> ent : embeddedFileNames.entrySet()) {
    5. final PDComplexFileSpecification spec = ent.getValue();
    6. if (spec != null) {
    7. final PDEmbeddedFile embeddedFile = getEmbeddedFile(spec);
    8. extractFile(ent.getKey(), embeddedFile, writer);
    9. }
    10. }
    11. }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/CrudTestBase.java

    1. for (Map.Entry<String, Object> entry : updateMap.entrySet()) {
    2. List<String> updatedList = getPropList(searchBody, entry.getKey());
    3. for (String val : updatedList) {
    4. assertEquals(entry.getValue().toString(), val);
    5. }
    6. }
    7. }
    8.  
    9. protected void testDelete() {
    10. logger.info("[BEGIN] testDelete");
    11. final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

    1. for (Entry<? extends Class<? extends T>, ? extends T> entry : map.entrySet()) {
    2. Class<? extends T> type = entry.getKey();
    3. T value = entry.getValue();
    4. mapBuilder.put(type, cast(type, value));
    5. }
    6. return this;
    7. }
    8.  
    9. private static <T> T cast(Class<T> type, Object value) {
    10. return Primitives.wrap(type).cast(value);
    11. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableRangeMapTest.java

    1. if (entry.getKey().isConnected(subRange)
    2. && !entry.getKey().intersection(subRange).isEmpty()) {
    3. expectedBuilder.put(entry.getKey().intersection(subRange), entry.getValue());
    4. }
    5. }
    6.  
    7. ImmutableRangeMap<Integer, Integer> expected = expectedBuilder.build();
    8. assertEquals(expected, rangeMap.subRangeMap(subRange));
    9. }
    10. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/xml/DomUtil.java

    1. assertArgumentNotNull("attr", attr);
    2. assertArgumentNotNull("buf", buf);
    3.  
    4. buf.append(attr.getName());
    5. buf.append("=\"");
    6. buf.append(encodeAttrQuot(attr.getValue()));
    7. buf.append('\"');
    8. }
    9.  
    10. /**
    11. * {@link Text}の文字列表現を追加します。
    12. *
    13. * @param text
    14. * テキストノード。{@literal null}であってはいけません
    15. * @param buf
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/AllTests.java

    1. * @throws CIFSException
    2. */
    3. @AfterClass
    4. public static void closeContexts () throws CIFSException {
    5. for ( Entry<String, CIFSContext> ctx : CONTEXT_CACHE.entrySet() ) {
    6. if ( ctx.getValue().close() ) {
    7. log.error("Context was still in use " + ctx.getKey());
    8. }
    9. }
    10. }
    11.  
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

    1. map.put(KEY, e.getKeyAsString());
    2. final Cardinality value = e.getAggregations().get(USER_INFO_ID);
    3. map.put(COUNT, value.getValue());
    4. return map;
    5. }).collect(Collectors.toList());
    6. } else if (SearchLogPager.LOG_TYPE_SEARCH_USER_DAY.equalsIgnoreCase(pager.logType)) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

    1. return Crc32cHashFunction.CRC_32_C;
    2. }
    3.  
    4. /**
    5. * Returns a hash function implementing the CRC-32 checksum algorithm (32 hash bits).
    6. *
    7. * <p>To get the {@code long} value equivalent to {@link Checksum#getValue()} for a {@code
    8. * HashCode} produced by this function, use {@link HashCode#padToLong()}.
    9. *
    10. * <p>This function is best understood as a <a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

    1. }
    2.  
    3. public static class ValueHolder {
    4. private final Object value;
    5.  
    6. public ValueHolder(Object value) {
    7. this.value = value;
    8. }
    9.  
    10. public Object getValue() {
    11. return value;
    12. }
    13. }
    14.  
    15. /**
    16. * <p>testRootPropertyRegression.</p>
    17. *
    18. * @throws Exception if any.
    19. */
    20. @Test
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top