Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 666 for ximports (0.18 sec)

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

    			pmain.Internal.Imports = append(pmain.Internal.Imports, ptest)
    			pmain.Imports = append(pmain.Imports, ptest.ImportPath)
    			t.ImportTest = true
    		}
    		if pxtest != nil {
    			pmain.Internal.Imports = append(pmain.Internal.Imports, pxtest)
    			pmain.Imports = append(pmain.Imports, pxtest.ImportPath)
    			t.ImportXtest = true
    		}
    
    		// Sort and dedup pmain.Imports.
    		// Only matters for go list -test output.
    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. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    					fset.File(gen.Rparen).MergeLine(line)
    				}
    			}
    			j--
    		}
    	}
    
    	// Delete imports from f.Imports.
    	for i := 0; i < len(f.Imports); i++ {
    		imp := f.Imports[i]
    		for j, del := range delspecs {
    			if imp == del {
    				copy(f.Imports[i:], f.Imports[i+1:])
    				f.Imports = f.Imports[:len(f.Imports)-1]
    				copy(delspecs[j:], delspecs[j+1:])
    				delspecs = delspecs[:len(delspecs)-1]
    				i--
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/imports/testdata/star/want.txt

    import1
    import2
    import3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 23:36:30 UTC 2019
    - 32 bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/imports.gox

    v1;
    package imports;
    pkgpath imports;
    priority 7;
    import fmt fmt "fmt";
    init imports imports..import 7 math math..import 1 runtime runtime..import 1 strconv strconv..import 2 io io..import 3 reflect reflect..import 3 syscall syscall..import 3 time time..import 4 os os..import 5 fmt fmt..import 6;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 23:03:13 UTC 2015
    - 320 bytes
    - Viewed (0)
  5. src/cmd/dist/imports.go

    				r.readImport(&imports)
    			}
    			r.nextByte(false)
    		} else {
    			r.readImport(&imports)
    		}
    	}
    
    	for i := range imports {
    		unquoted, err := strconv.Unquote(imports[i])
    		if err != nil {
    			fatalf("reading imports from %s: %v", file, err)
    		}
    		imports[i] = unquoted
    	}
    
    	return imports
    }
    
    // resolveVendor returns a unique package path imported with the given import
    // path from srcDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 21:45:30 UTC 2019
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/imports.go

    // license that can be found in the LICENSE file.
    
    package typeutil
    
    import "go/types"
    
    // Dependencies returns all dependencies of the specified packages.
    //
    // Dependent packages appear in topological order: if package P imports
    // package Q, Q appears earlier than P in the result.
    // The algorithm follows import statements in the order they
    // appear in the source code, so the result is a total order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 883 bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/testdata/imports.go

    package imports
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 17 23:03:13 UTC 2015
    - 71 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/imports.txt

    public final class ImportsKt {
        // source: 'imports.kt'
        public final static method main(): void
        public synthetic static method main(p0: java.lang.String[]): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 175 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package facts
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // importMap computes the import map for a package by traversing the
    // entire exported API each of its imports.
    //
    // This is a workaround for the fact that we cannot access the map used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/iimport.go

    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    // iImportData imports a package from the serialized package data
    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top