Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for toPlist (0.18 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            XcodeprojSerializer serializer = new XcodeprojSerializer(gidGenerator, project);
            final NSDictionary rootObject = serializer.toPlist();
    
            projectFile.transformAction(new Action<NSDictionary>() {
                @Override
                public void execute(NSDictionary dict) {
                    dict.clear();
                    dict.putAll(rootObject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            ComponentUtil.register(client, "searchEngineClient");
            final DocList docList = new DocList();
            assertEquals(0, indexingHelper.deleteOldDocuments(client, docList));
            assertEquals(0, docList.size());
            assertEquals(0, deletedDocIdList.size());
    
            docList.clear();
            deletedDocIdList.clear();
            docList.add(new HashMap<>(Map.of(//
                    "config_id", "W01", //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            final List<Map<String, Object>> docList =
                    indexingHelper.getChildDocumentList(searchEngineClient, id, new String[] { fessConfig.getIndexFieldUrl() });
            if (docList.isEmpty()) {
                return null;
            }
            if (logger.isDebugEnabled()) {
                logger.debug("Found documents: {}", docList);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final List<Map<String, Object>> docList = results[i].getDocumentList();
                if (logger.isDebugEnabled()) {
                    logger.debug("[{}] {} docs / {} docs.", i, docList.size(), results[i].getAllRecordCount());
                }
                for (int j = 0; j < docList.size(); j++) {
                    final Map<String, Object> doc = docList.get(j);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

        }
    
        def "composite containing one collection"() {
            expect:
            composite(collection("a", "b")).toList() == ["a", "b"]
        }
    
        def "composite containing two collections"() {
            expect:
            composite(collection("a", "b"), collection("c", "d")).toList() == ["a", "b", "c", "d"]
        }
    
        def "combined collection contains additions and removals"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectCollectionTest.groovy

            def testClosure = {
                return it != "b"
            }
    
            container.add("a")
            container.add("b")
            container.add("c")
    
            expect:
            toList(container.matching(spec)) == ["a", "c"]
            toList(container.matching(testClosure)) == ["a", "c"]
        }
    
        def filteredCollectionIsLive() {
            def spec = new Spec<CharSequence>() {
                boolean isSatisfiedBy(CharSequence element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ListsTest.java

        /* toList modifications reflected in fromList */
        toList.remove(0);
        assertEquals(asList(5, 9, 3), fromList);
        toList.add(7);
        assertEquals(asList(7, 5, 9, 3), fromList);
        toList.add(5);
        assertEquals(asList(5, 7, 5, 9, 3), fromList);
        toList.remove(Integer.valueOf(5));
        assertEquals(asList(5, 7, 9, 3), fromList);
        toList.set(1, 8);
        assertEquals(asList(5, 7, 8, 3), fromList);
        toList.clear();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ListsTest.java

        /* toList modifications reflected in fromList */
        toList.remove(0);
        assertEquals(asList(5, 9, 3), fromList);
        toList.add(7);
        assertEquals(asList(7, 5, 9, 3), fromList);
        toList.add(5);
        assertEquals(asList(5, 7, 5, 9, 3), fromList);
        toList.remove(Integer.valueOf(5));
        assertEquals(asList(5, 7, 9, 3), fromList);
        toList.set(1, 8);
        assertEquals(asList(5, 7, 8, 3), fromList);
        toList.clear();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                            .filter(trustedKey -> trustedKey.getKeyId().equals(e.getKey()))
                            .noneMatch(entry::checkAndMarkSatisfiedBy))
                        .collect(Collectors.toList());
                    if (pgpKeys.size() > 1) {
                        // if there's only one entry, we won't "normalize" into globally trusted keys
                        List<ModuleComponentIdentifier> moduleComponentIds = pgpKeys.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ConfigurationReportModelFactory.java

                .collect(Collectors.toList());
    
            final List<ReportCapability> explicitCapabilities = configuration.getOutgoing().getCapabilities().stream()
                .map(this::convertCapability)
                .sorted(Comparator.comparing(ReportCapability::toGAV))
                .collect(Collectors.toList());
            final List<ReportCapability> capabilities;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top