Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 727 for tolist (0.14 sec)

  1. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

            .addSubjectAlternativeName("1.1.1.1")
            .addSubjectAlternativeName("cash.app")
            .build()
        val certificate = heldCertificate.certificate
        assertThat(certificate.subjectAlternativeNames.toList()).containsExactly(
          listOf(GeneralName.iPAddress, "1.1.1.1"),
          listOf(GeneralName.dNSName, "cash.app"),
        )
      }
    
      @Test
      fun commonName() {
        val heldCertificate =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            expect:
            changes(strategy, emptyFingerprint, fingerprint).toList() == [
                DefaultFileChange.removed("file1.txt", "test", FileType.RegularFile, "file1.txt"),
                DefaultFileChange.removed("file2.txt", "test", FileType.RegularFile, "file2.txt")
            ]
            changes(strategy, fingerprint, emptyFingerprint).toList() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

                        .collect(Collectors.toList()));
            }
            return result;
        }
    
        public static List<Map<String, String>> getAllInstalledArtifacts() {
            final PluginHelper pluginHelper = ComponentUtil.getPluginHelper();
            final List<Map<String, String>> result = new ArrayList<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                        List<String> classpath;
                        if (isJava9) {
                            classpath = Arrays.stream(System.getProperty("java.class.path").split(Pattern.quote(File.pathSeparator)))
                                .map(path -> new File(path).getName())
                                .collect(Collectors.toList());
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            when:
            addToGraphAndPopulate(toList(b, c, a))
    
            then:
            executes(a, b, c)
        }
    
        def "schedules separately added tasks in order added"() {
            given:
            Task a = task("a")
            Task b = task("b")
            Task c = task("c")
            Task d = task("d")
    
            when:
            addToGraph(toList(c, b))
            addToGraph(toList(d, a))
            populateGraph()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilder.java

                    builder.withReason(reason);
                }
            }
    
            List<Checksum> buildChecksums() {
                return builder.values()
                    .stream()
                    .map(ChecksumBuilder::build)
                    .sorted(Comparator.comparing(Checksum::getKind))
                    .collect(Collectors.toList());
            }
    
            public void addTrustedKey(String key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/ClassInspectorTest.groovy

            ClassInspector.inspect(Serializable).superTypes.empty
            ClassInspector.inspect(Set).superTypes.toList() == [Collection, Iterable]
        }
    
        def "super types ordered by their distance"() {
            expect:
            ClassInspector.inspect(HashSet).superTypes.toList() == [AbstractSet, AbstractCollection, Object, Set, Cloneable, Serializable, Collection, Iterable]
        }
    
        @Issue("GRADLE-3317")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:06 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    final Map<String, List<String>> searchFieldMap = entity.getSearchFieldLogList().stream()
                            .collect(Collectors.groupingBy(Pair::getFirst, Collectors.mapping(Pair::getSecond, Collectors.toList())));
                    appendJson("search-field", searchFieldMap, buf).append(',');
                    final Map<String, List<String>> requestHeaderMap = entity.getRequestHeaderList().stream()
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            collector.afterTest(test2, result2)
    
            collector.afterSuite(root, new DefaultTestResult(FAILURE, 0, 500, 2, 1, 1, []))
    
            then:
            results.size() == 1
            def fooTest = results.values().toList().first()
            fooTest.className == 'FooTest'
            fooTest.startTime == 100
            fooTest.testsCount == 2
            fooTest.failuresCount == 1
            fooTest.duration == 200
            fooTest.results.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            final String virtualHostKey = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
            final List<LabelTypeItem> labelList;
            if (StringUtil.isBlank(virtualHostKey)) {
                labelList =
                        labelTypeItemList.stream().filter(item -> matchLocale(requestLocale, item.getLocale())).collect(Collectors.toList());
            } else {
                labelList = labelTypeItemList.stream()
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top