Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,060 for associateBy (0.26 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateContributorsInReleaseNotes.kt

        @TaskAction
        fun update() {
            val contributorsInReleaseNotes = getContributorsInReleaseNotes().associateBy { it.login }
            val contributorsFromPullRequests = getContributorsFromPullRequests().associateBy { it.login }
    
            val unrecognizedContributors = contributorsFromPullRequests.keys - contributorsInReleaseNotes.keys
            if (unrecognizedContributors.isNotEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 01 00:58:07 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/DataSchemaBuilder.kt

            val extObjects = externalObjects.map { (key, value) -> key to DefaultExternalObjectProviderKey(value.toDataTypeRef()) }.toMap()
    
            val topLevelReceiverName = topLevelReceiver.fqName
    
            return DefaultAnalysisSchema(
                dataTypes.single { it.name == topLevelReceiverName },
                dataTypes.associateBy { it.name },
                extFunctions,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

            val importContext = AnalysisContext(schema, emptyMap(), errorCollector, generationId)
            val importFqnBySimpleName = collectImports(imports, importContext) + schema.defaultImports.associateBy { it.simpleName }
    
            val topLevelReceiver = ObjectOrigin.TopLevelReceiver(schema.topLevelReceiverType, topLevelBlock)
            val topLevelScope = AnalysisScope(null, topLevelReceiver, topLevelBlock)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

                reference(baseType)
            }
        }
    
        private
        val unsupportedTypes: Map<Type, KClass<*>> =
            unsupportedFieldDeclaredTypes.associateBy { Type.getType(it.java) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        private val buckets: Map<TestCoverage, List<BuildTypeBucket>> by lazy {
            val uuidToTestCoverage = model.stages.flatMap { it.functionalTests }.associateBy { it.uuid }
            val testCoverageAndBuckets = JSON.parseArray(testBucketsJson.readText()) as JSONArray
            testCoverageAndBuckets.associate { testCoverageAndBucket ->
                testCoverageAndBucket as JSONObject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

                    val classReader = ClassReader(outputFile.content)
                    ClassNode(Opcodes.API_VERSION).also { classReader.accept(it, ClassReader.SKIP_CODE) }
                }
    
            val allClasses = classes.associateBy { Type.getObjectType(it.name) }
    
            return classes.joinToString("\n\n") { node ->
                val visitor = BytecodeListingTextCollectingVisitor(
                    BytecodeListingTextCollectingVisitor.Filter.EMPTY,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

        val intermediateModels = buildList {
            addAll(initScriptModels(rootProject))
            addNotNull(settingsScriptModel(rootProject))
        }
    
        return intermediateModels.associateBy({ it.scriptFile }) {
            val classPath = base.nonProjectScriptPaths.bin + it.classPath
            val gradleKotlinDslJar = classPath.filter(::isGradleKotlinDslJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                methodName = Name.identifier(configuration[CODE_FRAGMENT_METHOD_NAME] ?: "run"),
                injectedSymbols
            )
    
            val injectedSymbolMapping = injectedSymbols.associateBy {
                CodeFragmentCapturedId(it.symbol, it.contextReceiverNumber)
            }
            val injectedValueProvider = InjectedSymbolProvider(mainKtFile, injectedSymbolMapping)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            val scriptPluginsById = scriptPluginPluginsFor(projectScriptPlugins).associateBy {
                it.scriptPlugin.id
            }
    
            val pluginGraph = plugins.associate {
                it.id to pluginsAppliedBy(it, scriptPluginsById)
            }
    
            return reduceGraph(pluginGraph).asSequence().mapNotNull { (id, plugins) ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

        private fun ResolvedCall<*>.createArgumentMapping(signature: KaFunctionLikeSignature<*>): LinkedHashMap<KtExpression, KaVariableLikeSignature<KaValueParameterSymbol>> {
            val parameterSignatureByName = signature.valueParameters.associateBy {
                // ResolvedCall.valueArguments have their names affected by the `@ParameterName` annotations,
                // so we use `name` instead of `symbol.name`
                it.name
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top