Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,707 for Packaged (0.24 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. src/cmd/go/internal/modindex/build.go

    }
    
    // MultiplePackageError describes a directory containing
    // multiple buildable Go source files for multiple packages.
    type MultiplePackageError struct {
    	Dir      string   // directory containing files
    	Packages []string // package names found
    	Files    []string // corresponding files: Files[i] declares package Packages[i]
    }
    
    func (e *MultiplePackageError) Error() string {
    	// Error string limited to two entries for compatibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/types/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. 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)
  9. src/go/doc/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package doc extracts source code documentation from a Go AST.
    package doc
    
    import (
    	"fmt"
    	"go/ast"
    	"go/doc/comment"
    	"go/token"
    	"strings"
    )
    
    // Package is the documentation for an entire package.
    type Package struct {
    	Doc        string
    	Name       string
    	ImportPath string
    	Imports    []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/query.go

    // satisfied because it matches one or more packages found in the main module.
    type QueryMatchesPackagesInMainModuleError struct {
    	Pattern  string
    	Query    string
    	Packages []string
    }
    
    func (e *QueryMatchesPackagesInMainModuleError) Error() string {
    	if len(e.Packages) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
Back to top