Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for build_list (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modload/edit.go

    		if err != nil {
    			// If we couldn't load the graph, we don't know what its requirements were
    			// to begin with, so we can't edit those requirements in a coherent way.
    			return orig, false, err
    		}
    		bl := mg.BuildList()[MainModules.Len():]
    		selectedRoot = make(map[string]string, len(bl))
    		for _, m := range bl {
    			selectedRoot[m.Path] = m.Version
    		}
    	}
    
    	for _, r := range tryUpgrade {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    				// actually selected.
    				r := resolveReplacement(m)
    				keep[modkey(r)] = true
    			}
    		})
    
    		if which == addBuildListZipSums {
    			for _, m := range mg.BuildList() {
    				r := resolveReplacement(m)
    				if keepModSumsForZipSums {
    					keep[modkey(r)] = true // we need the go version from the go.mod file to do anything useful with the zipfile
    				}
    				keep[r] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-53639`](https://youtrack.jetbrains.com/issue/KT-53639) TYPE_MISMATCH: compiler can't infer the list's type when using `buildList {}` builder or `Collection#isNotEmpty`
    - [`KT-60291`](https://youtrack.jetbrains.com/issue/KT-60291) K2: "IllegalStateException: Cannot serialize error type: ERROR CLASS: Cannot infer argument for type parameter T" during FIR serialization
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top