Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,627 for package_a (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

        def "recompiles all classes in a package if the package-info file is removed"() {
            given:
            def packageFile = file("src/main/${languageName}/foo/package-info.${languageName}")
            packageFile.text = """@Deprecated package foo;"""
            source(
                "package foo; class A {}",
                "package foo; public class B {}",
                "package foo.bar; class C {}",
                "package baz; class D {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		a.apply(n, "Body", nil, n.Body)
    
    	// Files and packages
    	case *ast.File:
    		a.apply(n, "Doc", nil, n.Doc)
    		a.apply(n, "Name", nil, n.Name)
    		a.applyList(n, "Decls")
    		// Don't walk n.Comments; they have either been walked already if
    		// they are Doc comments, or they can be easily walked explicitly.
    
    	case *ast.Package:
    		// collect and sort names for reproducible behavior
    		var names []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top