Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 384 for Imported (0.15 sec)

  1. src/cmd/go/internal/load/pkg.go

    	// for example, if the package doesn't exist or if the import path is malformed.
    	// On the other hand, don't include a position if the problem is with the imported package,
    	// for example there are no Go files (NoGoError), or there's a problem in the imported
    	// package's source files themselves (scanner errors).
    	//
    	// TODO(matloob): Perhaps make each of those the errors in the first group
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/time/zoneinfo_read.go

    // if it is imported.
    //
    //go:linkname registerLoadFromEmbeddedTZData
    func registerLoadFromEmbeddedTZData(f func(string) (string, error)) {
    	loadFromEmbeddedTZData = f
    }
    
    // loadFromEmbeddedTZData is used to load a specific tzdata file
    // from tzdata information embedded in the binary itself.
    // This is set when the time/tzdata package is imported,
    // via registerLoadFromEmbeddedTzdata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

        /**
         * Collects possible references to shorten. By default, it shortens a fully-qualified members to the outermost class and does not
         * shorten enum entries.  In case of KDoc shortens reference only if it is already imported.
         *
         * N.B. This API is not implemented for the FE10 implementation!
         * For a K1- and K2-compatible API, use [org.jetbrains.kotlin.idea.base.codeInsight.ShortenReferencesFacility].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/go/types/named.go

    	for n := range seen {
    		// We should never have to update the underlying type of an imported type;
    		// those underlying types should have been resolved during the import.
    		// Also, doing so would lead to a race condition (was go.dev/issue/31749).
    		// Do this check always, not just in debug mode (it's cheap).
    		if n.obj.pkg != check.pkg {
    			panic("imported type with unresolved underlying type")
    		}
    		n.underlying = u
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/call.go

    					}
    					goto Error
    				}
    				if !exp.Exported() {
    					check.errorf(e.Sel, UnexportedName, "name %s not exported by package %s", sel, pkg.name)
    					// ok to continue
    				}
    			}
    			check.recordUse(e.Sel, exp)
    
    			// Simplified version of the code for *syntax.Names:
    			// - imported objects are always fully initialized
    			switch exp := exp.(type) {
    			case *Const:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // facts enable "separate analysis".
    //
    // Each pass (a, p) starts with the set of facts produced by the
    // same analyzer a applied to the packages directly imported by p.
    // The analysis may add facts to the set, and they may be exported in turn.
    // An analysis's Run function may retrieve facts by calling
    // Pass.Import{Object,Package}Fact and update them using
    // Pass.Export{Object,Package}Fact.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/go/types/call.go

    					}
    					goto Error
    				}
    				if !exp.Exported() {
    					check.errorf(e.Sel, UnexportedName, "name %s not exported by package %s", sel, pkg.name)
    					// ok to continue
    				}
    			}
    			check.recordUse(e.Sel, exp)
    
    			// Simplified version of the code for *ast.Idents:
    			// - imported objects are always fully initialized
    			switch exp := exp.(type) {
    			case *Const:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    // The ODCLFUNC node (the Func itself) is used for its declaration code.
    // The OCLOSURE node (Func.OClosure) is used for a reference to a
    // function literal.
    //
    // An imported function will have an ONAME node which points to a Func
    // with an empty body.
    // A declared function or method has an ODCLFUNC (the Func itself) and an ONAME.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

            custom_legalization_passes = {},
        llvm::StringRef module_name = llvm::StringRef(),
        bool lower_to_xla_hlo = true);
    
    // Compiles a TensorFlow Graph (already converted to MLIR, imported with
    // tf_executor dialect still present) into XLA HLO, generates all accompanying
    // metadata and stores them in CompilationResult. This will rewrite arguments
    // and run the TensorFlow standard pipeline prior to invoking
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    	UsageLine: "vcs",
    	Short:     "controlling version control with GOVCS",
    	Long: `
    The 'go get' command can run version control commands like git
    to download imported code. This functionality is critical to the decentralized
    Go package ecosystem, in which code can be imported from any server,
    but it is also a potential security problem, if a malicious server finds a
    way to cause the invoked version control command to run unintended code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top