Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,145 for pkgh (0.05 sec)

  1. src/cmd/go/internal/modload/load.go

    		ld.pkgs = append(ld.pkgs, pkg)
    	}
    	for i := 0; i < len(ld.pkgs); i++ { // not range: appending to ld.pkgs in loop
    		pkg := ld.pkgs[i]
    		for _, next := range pkg.imports {
    			if next.stack == nil {
    				next.stack = pkg
    				ld.pkgs = append(ld.pkgs, next)
    			}
    		}
    		if next := pkg.test; next != nil && next.stack == nil {
    			next.stack = pkg
    			ld.pkgs = append(ld.pkgs, next)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. src/go/types/object.go

    	// setParent sets the parent scope of the object.
    	setParent(*Scope)
    
    	// sameId reports whether obj.Id() and Id(pkg, name) are the same.
    	// If foldCase is true, names are considered equal if they are equal with case folding
    	// and their packages are ignored (e.g., pkg1.m, pkg1.M, pkg2.m, and pkg2.M are all equal).
    	sameId(pkg *Package, name string, foldCase bool) bool
    
    	// scopePos returns the start position of the scope of this Object
    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/crypto/purego_test.go

    				Compiler:  build.Default.Compiler,
    				BuildTags: []string{"purego", "math_big_pure_go"},
    			}
    
    			pkg, err := context.Import(pkgName, "", 0)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(pkg.SFiles) == 0 {
    				continue
    			}
    			t.Errorf("package %s has purego assembly files on %s: %v", pkgName, GOARCH, pkg.SFiles)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/IncrementalScalaCompileIntegrationTest.groovy

                    implementation project(":lib")
                }
            """
    
            file("src/main/scala/Hello.scala") << """import pkg1.Other
    
                class Hello extends Other
            """
    
            file("lib/src/main/scala/pkg1/Other.scala") << """
                package pkg1
    
                class Other
            """
    
            when:
            run ':build'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/hack/update-codegen.sh

        --output-pkg "${THIS_PKG}/pkg/generated/openapi" \
        --report-filename "${report_filename:-"/dev/null"}" \
        ${update_report:+"${update_report}"} \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
        "${SCRIPT_ROOT}/pkg"
    
    kube::codegen::gen_client \
        --with-watch \
        --with-applyconfig \
        --output-dir "${SCRIPT_ROOT}/pkg/client" \
        --output-pkg "${THIS_PKG}/pkg/client" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    func oneMainPkg(pkgs []*load.Package) []*load.Package {
    	if len(pkgs) != 1 || pkgs[0].Name != "main" {
    		base.Fatalf("-buildmode=%s requires exactly one main package", cfg.BuildBuildmode)
    	}
    	return pkgs
    }
    
    var pkgsFilter = func(pkgs []*load.Package) []*load.Package { return pkgs }
    
    func runBuild(ctx context.Context, cmd *base.Command, args []string) {
    	modload.InitWorkfile()
    	BuildInit()
    	b := NewBuilder("")
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. src/internal/reflectlite/reflect_mirror_test.go

    	fset := token.NewFileSet()
    
    	filter := func(fi fs.FileInfo) bool {
    		return strings.HasSuffix(fi.Name(), ".go")
    	}
    	pkgs, err := parser.ParseDir(fset, path, filter, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	pkg := pkgs[pkgName]
    
    	for _, f := range pkg.Files {
    		ast.Walk(v, f)
    	}
    }
    
    func TestMirrorWithReflect(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 21:11:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/ureader.go

    	pr.pkgs[idx] = pkg
    	return pkg
    }
    
    func (r *reader) doPkg() *types.Package {
    	path := r.String()
    	switch path {
    	case "":
    		path = r.p.PkgPath()
    	case "builtin":
    		return nil // universe
    	case "unsafe":
    		return types.Unsafe
    	}
    
    	if pkg := r.p.imports[path]; pkg != nil {
    		return pkg
    	}
    
    	name := r.String()
    
    	pkg := types.NewPackage(path, name)
    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/go/doc/headscan.go

    		if !info.IsDir() {
    			return nil
    		}
    		pkgs, err := parser.ParseDir(fset, path, isGoFile, parser.ParseComments)
    		if err != nil {
    			if *verbose {
    				fmt.Fprintln(os.Stderr, err)
    			}
    			return nil
    		}
    		for _, pkg := range pkgs {
    			d := doc.New(pkg, path, doc.Mode(0))
    			list := appendHeadings(nil, d.Doc)
    			for _, d := range d.Consts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 21:50:52 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/vendor.go

    		case isExplicit[m]:
    			io.WriteString(w, "## explicit\n")
    		case goVersion != "":
    			fmt.Fprintf(w, "## go %s\n", goVersion)
    		}
    
    		pkgs := modpkgs[m]
    		sort.Strings(pkgs)
    		for _, pkg := range pkgs {
    			fmt.Fprintf(w, "%s\n", pkg)
    			vendorPkg(vdir, pkg)
    		}
    	}
    
    	if includeAllReplacements {
    		// Record unused and wildcard replacements at the end of the modules.txt file:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top