Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 326 for entrySet (0.13 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

        private void periodicMaintenance() {
            if (shutdown) {
                return;
            }
    
            lock.writeLock().lock();
            try {
                // Clean up expired handles
                handles.entrySet().removeIf(entry -> {
                    HandleInfo info = entry.getValue();
                    if (info.isExpired() && !info.isReconnecting()) {
                        guidToHandle.remove(info.getCreateGuid());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

            final Properties props = new Properties(mailProperties);
            if (params != null) {
                for (final Map.Entry<String, String> entry : params.entrySet()) {
                    props.put(entry.getKey(), entry.getValue());
                }
            }
            try {
                final Session mailSession = Session.getDefaultInstance(props, null);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/ResourceManager.java

            if (!autoCleanupEnabled) {
                return;
            }
    
            int cleaned = 0;
            long now = System.currentTimeMillis();
    
            for (Map.Entry<String, ResourceHolder> entry : activeResources.entrySet()) {
                ResourceHolder holder = entry.getValue();
    
                // Check if resource is abandoned
                if (!holder.closed && !holder.isAlive()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            final Map<TypeVariable<?>, Type> map = GenericsUtil.getTypeVariableMap(Hoge.class);
            assertThat(map.size(), is(4));
            final Iterator<Entry<TypeVariable<?>, Type>> it = map.entrySet().iterator();
            Entry<TypeVariable<?>, Type> entry = it.next();
            assertThat(entry.getKey().getName(), is("T1"));
            assertThat(entry.getValue(), is(sameClass(Integer.class)));
            entry = it.next();
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java

            Equivalence.equals()
                .onResultOf(
                    (ImmutableSetMultimap<?, ?> mm) ->
                        ImmutableListMultimap.copyOf(mm).asMap().entrySet().asList())
                .and(Equivalence.equals());
        CollectorTester.of(collector, equivalence)
            .expectCollects(ImmutableSetMultimap.of())
            .expectCollects(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 28.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                RenderDataUtil.register(data, "path", path);
                RenderDataUtil.register(data, "name", name);
                final Map<String, String> tags = new HashMap<>();
                getObjectTags(getObjectName(path, name)).entrySet().forEach(e -> {
                    final int index = tags.size() / 2 + 1;
                    tags.put("name" + index, e.getKey());
                    tags.put("value" + index, e.getValue());
                });
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                }
            }
    
            if (infoMap != null) {
                final List<CrawlingInfoParam> crawlingInfoParamList = new ArrayList<>();
                for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
                    final CrawlingInfoParam crawlingInfoParam = new CrawlingInfoParam();
                    crawlingInfoParam.setCrawlingInfoId(crawlingInfo.getId());
                    crawlingInfoParam.setKey(entry.getKey());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            final Map<String, Object> newDataMap = new LinkedHashMap<>();
            for (final Map.Entry<String, Object> e : dataMap.entrySet()) {
                if (fieldConfigs.getConfig(e.getKey()).map(FieldConfigs.Config::isOverwrite).orElse(false)
                        && e.getValue() instanceof final Object[] values && values.length > 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

            if (embeddedFileNames == null || embeddedFileNames.isEmpty()) {
                return;
            }
    
            for (final Map.Entry<String, PDComplexFileSpecification> ent : embeddedFileNames.entrySet()) {
                final PDComplexFileSpecification spec = ent.getValue();
                if (spec != null) {
                    final PDEmbeddedFile embeddedFile = getEmbeddedFile(spec);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MultisetsTest.java

        Multiset<String> multiset = HashMultiset.create(asList("a", "a", "a", "b", "c", "c"));
        ImmutableMultiset<String> sortedMultiset = Multisets.copyHighestCountFirst(multiset);
    
        assertThat(sortedMultiset.entrySet())
            .containsExactly(
                Multisets.immutableEntry("a", 3),
                Multisets.immutableEntry("c", 2),
                Multisets.immutableEntry("b", 1))
            .inOrder();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top