Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for build_list (0.15 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            printer.append(ktModuleClass.simpleName + " \"" + ktModule.moduleDescription + "\"")
        }
    
        private fun KClass<*>.allSealedSubClasses(): List<KClass<*>> = buildList {
            add(this@allSealedSubClasses)
            sealedSubclasses.flatMapTo(this) { it.allSealedSubClasses() }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

    load("@bazel_skylib//rules:build_test.bzl", "build_test")
    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_binary", "tf_cc_test", "tf_native_cc_binary")
    load("//tensorflow:tensorflow.default.bzl", "filegroup", "get_compatible_with_portable")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

            return when (typeElement) {
                is KtUserType -> {
                    val referenceName = typeElement.referencedName ?: return emptyList()
    
                    buildList {
                        add(referenceName)
    
                        val ktFile = typeElement.containingKtFile
                        if (!ktFile.isCompiled) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/BUILD

    # copybara:uncomment_begin(google-only)
    # load("//learning/brain/experimental/mlir/tensorflow/dialectgen:dialectgen.bzl", "dialectgen")
    #
    # copybara:uncomment_end(google-only)
    load("@bazel_skylib//rules:build_test.bzl", "build_test")
    load("@llvm-project//mlir:tblgen.bzl", "gentbl_cc_library", "td_library")
    load("//tensorflow:tensorflow.bzl", "tf_cc_test", "tf_gen_op_wrapper_py")
    load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                    }
                }
    
                private fun toImportableFqNames(symbol: KaSymbol, qualifiedNameAsFqName: FqName): List<FqName> =
                    buildList {
                        when (symbol) {
                            is KaCallableSymbol -> {
                                val callableId = symbol.callableId ?: return emptyList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            val graphIndex = ControlFlowGraphIndex {
                getControlFlowGraph(anchor = statements.first(), firStatements = firStatements)
            }
    
            val jumpExpressions = buildList {
                fun add(expressions: List<FirElement>) {
                    expressions.mapNotNullTo(this) { it.psi as? KtExpression }
                }
    
                add(collector.firReturnExpressions)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                collectingFailure(content ?: tree.parsingError(node, "Qualified expression without selector"))
    
                elementIfNoFailures {
                    fun PropertyAccess.flatten(): List<String> =
                        buildList {
                            if (receiver is PropertyAccess) {
                                addAll(receiver.flatten())
                            }
                            add(name)
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

        overriddenDescriptor: CallableMemberDescriptor
    ): Boolean {
        val containingClass = (descriptor.containingDeclaration as? ClassifierDescriptorWithTypeParameters)
        val typeParametersFromOuterClass = buildList { containingClass?.let { collectTypeParameters(it) } }
        val allowedTypeParameters = (overriddenDescriptor.typeParameters + typeParametersFromOuterClass).toSet()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        fun findFunctionsInScopes(scopes: List<FirScope>, name: Name): List<AvailableSymbol<FirFunctionSymbol<*>>> {
            return scopes.flatMap { scope ->
                val importKind = ImportKind.fromScope(scope)
                buildList {
                    // Collect constructors
                    findAvailableConstructors(scope, name).mapTo(this) { AvailableSymbol(it, importKind) }
    
                    // Collect functions
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // separate from the loading operation, such as during "go get"
    // upgrades/downgrades or in "go mod" operations.
    // TODO(#40775): It might be nice to make the loader take and return
    // a buildList rather than hard-coding use of the global.
    //
    // Loading is an iterative process. On each iteration, we try to load the
    // requested packages and their transitive imports, then try to resolve modules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top