Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,001 for package_a (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssagen/abi.go

    		// ABIInternal, since they may be referenced from
    		// other packages.
    		fn.ABIRefs.Set(obj.ABIInternal, true)
    
    		// If a symbol is defined in this package (either in
    		// Go or assembly) and given a linkname, it may be
    		// referenced from another package, so make it
    		// callable via any ABI. It's important that we know
    		// it's defined in this package since other packages
    		// may "pull" symbols using linkname and we don't want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/go/types/issues_test.go

    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    func TestIssue34921(t *testing.T) {
    	defer func() {
    		if r := recover(); r != nil {
    			t.Error(r)
    		}
    	}()
    
    	var sources = []string{
    		`package a; type T int`,
    		`package b; import "a"; type T a.T`,
    	}
    
    	var pkg *Package
    	for _, src := range sources {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. src/internal/testenv/testenv.go

    	}
    }
    
    // WriteImportcfg writes an importcfg file used by the compiler or linker to
    // dstPath containing entries for the file mappings in packageFiles, as well
    // as for the packages transitively imported by the package(s) in pkgs.
    //
    // pkgs may include any package pattern that is valid to pass to 'go list',
    // so it may also be a list of Go source files all in the same directory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/ureader.go

    }
    
    func (r *reader) qualifiedIdent() (*types.Package, string) { return r.ident(pkgbits.SyncSym) }
    func (r *reader) localIdent() (*types.Package, string)     { return r.ident(pkgbits.SyncLocalIdent) }
    func (r *reader) selector() (*types.Package, string)       { return r.ident(pkgbits.SyncSelector) }
    
    func (r *reader) ident(marker pkgbits.SyncMarker) (*types.Package, string) {
    	r.Sync(marker)
    	return r.pkg(), r.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/issues_test.go

    // a race condition if package b is imported elsewhere, in a package that is
    // concurrently type-checked.
    func TestIssue34921(t *testing.T) {
    	defer func() {
    		if r := recover(); r != nil {
    			t.Error(r)
    		}
    	}()
    
    	var sources = []string{
    		`package a; type T int`,
    		`package b; import "a"; type T a.T`,
    	}
    
    	var pkg *Package
    	for _, src := range sources {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/runtime/mbarrier.go

    	// pass a type here.
    	//
    	// See the comment on bulkBarrierPreWrite.
    	bulkBarrierPreWrite(uintptr(dst), uintptr(src), typ.PtrBytes, typ)
    }
    
    // reflect_typedmemmove is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top