Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,192 for tolist (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/VariantIdentityUniquenessVerifier.java

            public GradleException failureFor(ConfigurationInternal configuration, boolean withTaskAdvice) {
                List<ConfigurationInternal> collisions =
                    byIdentity.get(VariantIdentity.from(configuration)).stream()
                        .filter(it -> !it.getName().equals(configuration.getName()))
                        .collect(Collectors.toList());
    
                if (collisions.isEmpty()) {
                    return null;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            List<Exclusion> excl = Optional.ofNullable(exclusions).orElse(Collections.emptyList()).stream()
                    .map(RepositoryUtils::toExclusion)
                    .collect(Collectors.toList());
            return new Dependency(result, artifact.getScope(), artifact.isOptional(), excl);
        }
    
        public static List<RemoteRepository> toRepos(List<ArtifactRepository> repos) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10MultiplatformInfoProvider.kt

                .filter { it.key.isCompatibleOrWeaklyIncompatible }
                .flatMap { it.value }
                .map { it.toKtSymbol(analysisContext) as KaDeclarationSymbol }
                .toList()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassPathModeExceptionCollector.kt

    
    open class ClassPathModeExceptionCollector : Stoppable {
    
        private
        val collection: MutableList<Exception> = synchronizedList(mutableListOf<Exception>())
    
        val exceptions: List<Exception>
            get() = collection.toList()
    
        fun collect(error: Exception) {
            collection.add(error)
        }
    
        override fun stop() {
            collection.clear()
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:10:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        public static class ApiSystemInfoResponse extends ApiResponse {
            protected List<Map<String, String>> envProps;
            protected List<Map<String, String>> systemProps;
            protected List<Map<String, String>> fessProps;
            protected List<Map<String, String>> bugReportProps;
    
            public ApiSystemInfoResponse envProps(final List<Map<String, String>> envProps) {
                this.envProps = envProps;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/AbstractScopeTestBase.kt

            }
        }
    
        override fun KaSession.collectSymbols(ktFile: KtFile, testServices: TestServices): SymbolsData =
            SymbolsData(getSymbolsFromScope(getScope(ktFile, testServices)).toList())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginEntries.kt

                val implementationClass = pluginProperties.getProperty("implementation-class")
                PluginEntry(id, implementationClass)
            }.toList()
        }
    } catch (cause: IOException) {
        throw IllegalArgumentException(
            "Failed to extract plugin metadata from '" + jar.path + "'",
            cause
        )
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultChecksumAlgorithmService.java

            return checksumAlgorithmFactorySelector.getChecksumAlgorithmFactories().stream()
                    .map(ChecksumAlgorithmFactory::getName)
                    .collect(Collectors.toList());
        }
    
        @Override
        public ChecksumAlgorithm select(String algorithmName) {
            nonNull(algorithmName, "algorithmName");
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java

            this.sessionId = sessionId;
            if (!cachedIncludeSet.isEmpty()) {
                try {
                    getUrlFilterService().addIncludeUrlFilter(sessionId, cachedIncludeSet.stream().collect(Collectors.toList()));
                } catch (final Exception e) {
                    logger.warn("Failed to add include_urls on " + sessionId, e);
                }
                cachedIncludeSet.clear();
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                    })
                    .collect(toList());
        }
    
        static class ScenarioBuilder {
            private String description;
            private List<String> activeRequiredProjects = emptyList();
            private List<String> activeOptionalProjects = emptyList();
            private List<String> inactiveRequiredProjects = emptyList();
            private List<String> inactiveOptionalProjects = emptyList();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 27.8K bytes
    - Viewed (0)
Back to top