Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,760 for package_a (0.23 sec)

  1. src/cmd/compile/internal/types2/resolver.go

    }
    
    func (check *Checker) importPackage(pos syntax.Pos, path, dir string) *Package {
    	// If we already have a package for the given (path, dir)
    	// pair, use it instead of doing a full import.
    	// Checker.impMap only caches packages that are marked Complete
    	// or fake (dummy packages for failed imports). Incomplete but
    	// non-fake packages do require an import to complete them.
    	key := importKey{path, dir}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/go/types/resolver.go

    }
    
    func (check *Checker) importPackage(at positioner, path, dir string) *Package {
    	// If we already have a package for the given (path, dir)
    	// pair, use it instead of doing a full import.
    	// Checker.impMap only caches packages that are marked Complete
    	// or fake (dummy packages for failed imports). Incomplete but
    	// non-fake packages do require an import to complete them.
    	key := importKey{path, dir}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    Some driver implementations (such as those based on Bazel and Blaze) do
    not currently apply analyzers to packages of the standard library.
    Therefore, for best results, analyzer authors should not rely on
    analysis facts being available for standard packages.
    For example, although the printf checker is capable of deducing during
    analysis of the log package that log.Printf is a printf wrapper,
    this fact is built in to the analyzer so that it correctly checks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_outside.txt

    cd ..
    
    # 'go doc' of a non-module directory should also succeed.
    go doc ./needmod
    
    # 'go doc' should succeed for standard-library packages.
    go doc fmt
    
    # 'go doc' should fail for a package path outside a module.
    ! go doc example.com/version
    stderr 'doc: no required module provides package example.com/version: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. hack/golangci.yaml

          path-except: cmd/kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/vendor.go

    Vendor resets the main module's vendor directory to include all packages
    needed to build and test all the main module's packages.
    It does not include test code for vendored packages.
    
    The -v flag causes vendor to print the names of vendored
    modules and packages to standard error.
    
    The -e flag causes vendor to attempt to proceed despite errors
    encountered while loading packages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object.go

    // returns the name qualified with the package path.
    func Id(pkg *Package, name string) string {
    	if isExported(name) {
    		return name
    	}
    	// unexported names need the package path for differentiation
    	// (if there's no package, make sure we don't start with '.'
    	// as that may change the order of methods between a setup
    	// inside a package and outside a package - which breaks some
    	// tests)
    	path := "_"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/bigger-applications.md

    ```
    
    Das würde bedeuten:
    
    * Beginnend im selben Package, in dem sich dieses Modul (die Datei `app/routers/items.py`) befindet (das Verzeichnis `app/routers/`) ...
    * gehe zum übergeordneten Package (das Verzeichnis `app/`) ...
    * gehe dann zum übergeordneten Package dieses Packages (es gibt kein übergeordnetes Package, `app` ist die oberste Ebene 😱) ...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/runtime/extern.go

    	because it also disables the conservative stack scanning used
    	for asynchronously preempted goroutines.
    
    The [net] and [net/http] packages also refer to debugging variables in GODEBUG.
    See the documentation for those packages for details.
    
    The GOMAXPROCS variable limits the number of operating system threads that
    can execute user-level Go code simultaneously. There is no limit to the number of threads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/doc/doc_test.go

    		[]string{p},
    		[]string{`type ExportedType struct`},
    		nil,
    	},
    
    	// Package dump includes import, package statement.
    	{
    		"package clause",
    		[]string{p},
    		[]string{`package pkg.*cmd/doc/testdata`},
    		nil,
    	},
    
    	// Constants.
    	// Package dump
    	{
    		"full package",
    		[]string{p},
    		[]string{
    			`Package comment`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top