Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 643 for to_list (0.18 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileSelector.java

                ModelProblemCollector problems) {
            return getActiveProfiles(profiles.stream().map(Profile::new).collect(Collectors.toList()), context, problems)
                    .stream()
                    .map(Profile::getDelegate)
                    .collect(Collectors.toList());
        }
    
        @Override
        public List<Profile> getActiveProfiles(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

        }
    
        override fun getAllClassesByClassId(classId: ClassId): Collection<KtClassOrObject> {
            return getClassLikeDeclarationsByClassId(classId).filterIsInstance<KtClassOrObject>().toList()
        }
    
        private fun getClassLikeDeclarationsByClassId(classId: ClassId): Sequence<KtClassLikeDeclaration> {
            if (classId.isLocal) {
                return emptySequence()
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/ConnectionSpecTest.kt

            .tlsVersions(TlsVersion.TLS_1_2)
            .supportsTlsExtensions(true)
            .build()
        assertThat(tlsSpec.cipherSuites!!.toList())
          .containsExactly(CipherSuite.TLS_RSA_WITH_RC4_128_MD5)
        assertThat(tlsSpec.tlsVersions!!.toList())
          .containsExactly(TlsVersion.TLS_1_2)
        assertThat(tlsSpec.supportsTlsExtensions).isTrue()
      }
    
      @Test
      fun tlsBuilder_defaultCiphers() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationClasspathMerger.java

                // additional user's artifact transform can be injected in between and could produce multiple artifacts from one original artifact.
                .distinct()
                .collect(Collectors.toList());
    
            Ordering<OriginalArtifactIdentifier> ordering = Ordering.explicit(identifiers);
            return Stream.concat(externalDependencies.getArtifacts().stream(), projectDependencies.getArtifacts().stream())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                val classId = callableId.classId
    
                val symbols = if (classId == null) {
                    getTopLevelCallableSymbols(callableId.packageName, callableId.callableName).toList()
                } else {
                    val classSymbol = getClassOrObjectSymbolByClassId(classId) ?: error("Class $classId is not found")
                    findMatchingCallableSymbols(classSymbol)
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactTransformFailureDescriber.java

                () -> new TreeMap<>(Comparator.comparing(variant -> variant.asDescribable().getDisplayName())),
                Collectors.collectingAndThen(Collectors.toList(), list -> list.stream().sorted(variantComparator).collect(Collectors.toList()))));
    
            formatter.startChildren();
            for (Map.Entry<ResolvedVariant, List<TransformedVariant>> entry : variantToTransforms.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. 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)
  8. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileSelector.java

                ModelProblemCollector problems) {
            return getActiveProfiles(profiles.stream().map(Profile::new).collect(Collectors.toList()), context, problems)
                    .stream()
                    .map(Profile::getDelegate)
                    .collect(Collectors.toList());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/InstanceBackedModelRegistrationTest.groovy

            def barReference = ModelReference.of("bar", List)
    
            def descriptor = new SimpleModelRuleDescriptor("foo")
    
            def fooList = []
            def fooRegistration = ModelRegistrations.bridgedInstance(fooReference, fooList).descriptor(descriptor).build()
            registry.register(fooRegistration)
    
            def barList = []
            def factory = Mock(org.gradle.internal.Factory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/WrapUtil.java

        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> List<T> toList(T... items) {
            logDeprecation(7);
            ArrayList<T> coll = new ArrayList<T>();
            Collections.addAll(coll, items);
            return coll;
        }
    
        /**
         * Wraps the given items in a mutable list.
         */
        public static <T> List<T> toList(Iterable<? extends T> items) {
            logDeprecation(7);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 16:04:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top