Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 545 for Imported (0.13 sec)

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

    			// The stack is supposed to be in the order x imports y imports z.
    			// We collect in the reverse order: z is imported by y is imported
    			// by x, and then we reverse it.
    			var stk []string
    			for p != nil {
    				stk = append(stk, p.ImportPath)
    				p = importerOf[p]
    			}
    			// complete the cycle: we set importer[p] = nil to break the cycle
    			// in importerOf, it's an implicit importerOf[p] == pTest. Add it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                 * the original `Base.bar` callable symbol instead of `MyObject.bar`, because there are
                 * no separate symbol for that case.
                 *
                 * Java statics present a similar case - they can be imported not only from the declaring class,
                 * but also from any subclass.
                 */
                private fun FirQualifiedAccessExpression.importableNameForImplicitlyDispatchedCallable(): FqName? {
    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. src/cmd/link/internal/wasm/asm.go

    		// 1 if the stack needs to be unwound.
    		{Params: []byte{I32}, Results: []byte{I32}},
    	}
    
    	// collect host imports (functions that get imported from the WebAssembly host, usually JavaScript)
    	// we store the import index of each imported function, so the R_WASMIMPORT relocation
    	// can write the correct index after a "call" instruction
    	// these are added as import statements to the top of the WebAssembly binary
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/parser.go

    	lit      string                    // literal string; only valid for Ident, Int, String tokens
    	pkgpath  string                    // package path of imported package
    	pkgname  string                    // name of imported package
    	pkg      *types.Package            // reference to imported package
    	imports  map[string]*types.Package // package path -> package object
    	typeList []types.Type              // type number -> type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/issues_test.go

    }
    
    // TestIssue34921 verifies that we don't update an imported type's underlying
    // type when resolving an underlying type. Specifically, when determining the
    // underlying type of b.T (which is the underlying type of a.T, which is int)
    // we must not set the underlying type of a.T again since that would lead to
    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/scope.go

    //
    // Note that obj.Parent() may be different from the returned scope if the
    // object was inserted into the scope and already had a parent at that
    // time (see Insert). This can only happen for dot-imported objects
    // whose scope is the scope of the package that exported them.
    func (s *Scope) LookupParent(name string, pos syntax.Pos) (*Scope, Object) {
    	for ; s != nil; s = s.parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/scope.go

    //
    // Note that obj.Parent() may be different from the returned scope if the
    // object was inserted into the scope and already had a parent at that
    // time (see Insert). This can only happen for dot-imported objects
    // whose scope is the scope of the package that exported them.
    func (s *Scope) LookupParent(name string, pos token.Pos) (*Scope, Object) {
    	for ; s != nil; s = s.parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/import.go

    	found                     bool
    	mods                      []module.Version
    	importer, importerVersion string // optional, but used for additional context
    	importerIsTest            bool
    }
    
    func (e *ImportMissingSumError) Error() string {
    	var importParen string
    	if e.importer != "" {
    		importParen = fmt.Sprintf(" (imported by %s)", e.importer)
    	}
    	var message string
    	if e.found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpComponent.java

         * For examples see docs for {@link EclipseWtp}
         * <p>
         * Only source dirs that exist will be added to the wtp component file.
         * Non-existing resource directory declarations lead to errors when project is imported into Eclipse.
         */
        public Set<File> getSourceDirs() {
            return sourceDirs;
        }
    
        public void setSourceDirs(Set<File> sourceDirs) {
            this.sourceDirs = sourceDirs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

    """
            }
    
            @Override
            String build() {
                """${intro}  - Problem: In version catalog ${catalog}, no files are resolved to be imported.
    
        Reason: The imported dependency doesn't resolve into any file.
    
        Possible solution: Check the import statement, it should resolve into a single file.
    
        ${documentation}"""
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top