Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for build_list (0.15 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    		mg.buildList = slices.Clip(mg.g.BuildList())
    	})
    	return mg.buildList
    }
    
    func (mg *ModuleGraph) findError() error {
    	errStack := mg.g.FindPath(func(m module.Version) bool {
    		_, err := mg.loadCache.Get(m)
    		return err != nil && err != par.ErrCacheEntryNotFound
    	})
    	if len(errStack) > 0 {
    		_, err := mg.loadCache.Get(errStack[len(errStack)-1])
    		var noUpgrade func(from, to module.Version) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

            # as attribute.
            val, ty = self._index_to_I64(val, ty)
          vals.append(val)
          tys.append(str(ty))
    
        list_val = self._ssa_name('list')
        self.emit('\n{} = "tfr.build_list"({})'.format(list_val, ', '.join(vals)))
        self._emit_with_loc(' : ({}) -> {}'.format(', '.join(tys), out_type), node)
        return (list_val, out_type)
    
      def visit_Tuple(self, node):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		toolchain.SwitchOrFatal(ctx, err)
    	}
    
    	buildList := mg.BuildList()
    	initialVersion := make(map[string]string, len(buildList))
    	for _, m := range buildList {
    		initialVersion[m.Path] = m.Version
    	}
    
    	r := &resolver{
    		work:             par.NewQueue(runtime.GOMAXPROCS(0)),
    		resolvedVersion:  map[string]versionReason{},
    		buildList:        buildList,
    		buildListVersion: initialVersion,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top