Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for ackage (0.24 sec)

  1. src/cmd/go/testdata/script/list_err_stack.txt

    stdout '"Pos": "..(/|\\\\)bar(/|\\\\)bar.go:1:1"'
    stdout '"Err": "expected ''package'', found ackage"'
    
    env GO111MODULE=on
    go list -e -json .
    stdout '"sandbox/foo"'
    stdout '"sandbox/bar"'
    stdout '"Pos": "..(/|\\\\)bar(/|\\\\)bar.go:1:1"'
    stdout '"Err": "expected ''package'', found ackage"'
    
    -- sandbox/go.mod --
    module sandbox
    
    -- sandbox/foo/foo.go --
    package pkg
    
    import "sandbox/bar"
    -- sandbox/bar/bar.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 05 18:24:52 UTC 2020
    - 595 bytes
    - Viewed (0)
  2. src/go/types/package.go

    	scope := NewScope(Universe, nopos, nopos, fmt.Sprintf("package %q", path))
    	return &Package{path: path, name: name, scope: scope}
    }
    
    // Path returns the package path.
    func (pkg *Package) Path() string { return pkg.path }
    
    // Name returns the package name.
    func (pkg *Package) Name() string { return pkg.name }
    
    // SetName sets the package name.
    func (pkg *Package) SetName(name string) { pkg.name = name }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/package.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"fmt"
    )
    
    // A Package describes a Go package.
    type Package struct {
    	path      string
    	name      string
    	scope     *Scope
    	imports   []*Package
    	complete  bool
    	fake      bool   // scope lookup errors are silently dropped if package is fake (internal use only)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/swiftpm/Package.java

     * limitations under the License.
     */
    
    package org.gradle.swiftpm;
    
    import org.gradle.internal.HasInternalProtocol;
    
    import java.util.Set;
    
    /**
     * Represents a Swift Package Manager package.
     *
     * @since 4.6
     */
    @HasInternalProtocol
    public interface Package {
        /**
         * Returns the products of this package.
         */
        Set<? extends Product> getProducts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 943 bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/package.go

    package report
    
    import "regexp"
    
    // pkgRE extracts package name, It looks for the first "." or "::" that occurs
    // after the last "/". (Searching after the last / allows us to correctly handle
    // names that look like "some.url.com/foo.bar".)
    var pkgRE = regexp.MustCompile(`^((.*/)?[\w\d_]+)(\.|::)([^/]*)$`)
    
    // packageName returns the package name of the named symbol, or "" if not found.
    func packageName(name string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 512 bytes
    - Viewed (0)
  6. docs/en/docs/img/tutorial/bigger-applications/package.svg

    package.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  7. docs/en/docs/img/tutorial/bigger-applications/package.drawio

                        <mxGeometry x="110" y="280" width="1350" height="620" as="geometry"/>
                    </mxCell>
                    <mxCell id="3" value="&lt;font style=&quot;font-size: 24px&quot; face=&quot;Roboto&quot;&gt;Package app&lt;br&gt;app/__init__.py&lt;/font&gt;" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;strokeWidth=3;fontFamily=Roboto Mono, mono;FType=g;" parent="1" vertex="1">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. android/guava/javadoc-link/j2objc-annotations/package-list

    cpovirk <******@****.***> 1510351134 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 10 22:31:30 UTC 2017
    - 30 bytes
    - Viewed (0)
  9. guava/javadoc-link/checker-framework/package-list

    cpovirk <******@****.***> 1512668275 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
  10. guava/javadoc-link/jsr305/package-list

    cpovirk <******@****.***> 1509125686 -0700
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 17:43:17 UTC 2017
    - 67 bytes
    - Viewed (0)
Back to top