Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,103 for pkgh (0.05 sec)

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

    -- go.mod --
    module m
    
    go 1.16
    -- pkg1/a.go --
    package pkg1
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg1")
    }
    -- pkg2/a.go --
    package pkg2
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg2")
    }
    -- pkg2/a_test.go --
    package pkg2
    -- pkg3/a.go --
    package pkg3
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg3")
    }
    -- pkg3/a_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/doc/testdata/pkg.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package comment.
    package pkg
    
    import "io"
    
    // Constants
    
    // Comment about exported constant.
    const ExportedConstant = 1
    
    // Comment about internal constant.
    const internalConstant = 2
    
    // Comment about block of constants.
    const (
    	// Comment before ConstOne.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. hack/verify-pkg-names.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies whether codes follow golang convention.
    # Usage: `hack/verify-pkg-names.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 21:06:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    go test -c -o $devnull ./...
    
    rm pkg1.test$GOEXE
    rm pkg2.test$GOEXE
    go test -o . ./pkg/...
    exists -exec pkg1.test$GOEXE
    exists -exec pkg2.test$GOEXE
    
    -- go.mod --
    module example
    
    -- pkg/pkg1/pkg1_test.go --
    package pkg1
    
    -- pkg/pkg2/pkg2_test.go --
    package pkg2
    
    -- anotherpkg/pkg1/pkg1_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/instantiate_test.go

    func TestInstantiateNonEquality(t *testing.T) {
    	const src = "package p; type T[P any] int"
    	pkg1 := mustTypecheck(src, nil, nil)
    	pkg2 := mustTypecheck(src, nil, nil)
    	// We consider T1 and T2 to be distinct types, so their instances should not
    	// be deduplicated by the context.
    	T1 := pkg1.Scope().Lookup("T").Type().(*Named)
    	T2 := pkg2.Scope().Lookup("T").Type().(*Named)
    	ctxt := NewContext()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/go/types/instantiate_test.go

    func TestInstantiateNonEquality(t *testing.T) {
    	const src = "package p; type T[P any] int"
    	pkg1 := mustTypecheck(src, nil, nil)
    	pkg2 := mustTypecheck(src, nil, nil)
    	// We consider T1 and T2 to be distinct types, so their instances should not
    	// be deduplicated by the context.
    	T1 := pkg1.Scope().Lookup("T").Type().(*Named)
    	T2 := pkg2.Scope().Lookup("T").Type().(*Named)
    	ctxt := NewContext()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue4590.dir/prog.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"./pkg1"
    	"./pkg2"
    )
    
    func main() {
    	if pkg1.T != pkg2.T {
    		panic("pkg1.T != pkg2.T")
    	}
    	if pkg1.U != pkg2.U {
    		panic("pkg1.U != pkg2.U")
    	}
    	if pkg1.V != pkg2.V {
    		panic("pkg1.V != pkg2.V")
    	}
    	if pkg1.W != pkg2.W {
    		panic("pkg1.W != pkg2.W")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_multi_main.txt

    module exmod
    
    -- cmd/c1/main.go --
    package main
    
    func main() {}
    
    -- cmd/c2/main.go --
    package main
    
    func main() {}
    
    -- pkg1/pkg1.go --
    package pkg1
    
    -- pkg2/pkg2.go --
    package pkg2
    
    -- exec.go --
    package main
    
    func main() {}
    
    -- c1$GOEXE/keep.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 17:30:40 UTC 2019
    - 699 bytes
    - Viewed (0)
  9. src/cmd/go/internal/fix/fix.go

    	pkgs := load.PackagesAndErrors(ctx, load.PackageOpts{}, args)
    	w := 0
    	for _, pkg := range pkgs {
    		if pkg.Error != nil {
    			base.Errorf("%v", pkg.Error)
    			continue
    		}
    		pkgs[w] = pkg
    		w++
    	}
    	pkgs = pkgs[:w]
    
    	printed := false
    	for _, pkg := range pkgs {
    		if modload.Enabled() && pkg.Module != nil && !pkg.Module.Main {
    			if !printed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. cmd/import-boss/main_test.go

    }
    
    func TestInverse(t *testing.T) {
    	pkgs, err := loadPkgs("./testdata/inverse/...")
    	if err != nil {
    		t.Fatalf("unexpected failure: %v", err)
    	}
    	if len(pkgs) != 10 {
    		t.Fatalf("expected 10 pkg results, got %d", len(pkgs))
    	}
    
    	boss := newBoss(pkgs)
    
    	var errs []error
    	for _, pkg := range pkgs {
    		errs = append(errs, boss.Verify(pkg)...)
    	}
    
    	expect := []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top