Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for inPackage (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    	nFuncDecl
    	nFuncLit
    	nFuncType
    	nGenDecl
    	nGoStmt
    	nIdent
    	nIfStmt
    	nImportSpec
    	nIncDecStmt
    	nIndexExpr
    	nIndexListExpr
    	nInterfaceType
    	nKeyValueExpr
    	nLabeledStmt
    	nMapType
    	nPackage
    	nParenExpr
    	nRangeStmt
    	nReturnStmt
    	nSelectStmt
    	nSelectorExpr
    	nSendStmt
    	nSliceExpr
    	nStarExpr
    	nStructType
    	nSwitchStmt
    	nTypeAssertExpr
    	nTypeSpec
    	nTypeSwitchStmt
    	nUnaryExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    					resolved++
    					continue
    				}
    
    				filtered, isPackage, m, unique := r.disambiguate(cs)
    				if !unique {
    					unresolved = append(unresolved, filtered)
    					continue
    				}
    
    				if m.Path == "" {
    					// The query is not viable. Choose an arbitrary candidate from
    					// before filtering and “resolve” it to report a conflict.
    					isPackage, m = r.chooseArbitrarily(cs)
    				}
    				if isPackage {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/cmd/cover/cover.go

    	// we have instrumented functions.
    	if counterStmt == nil && len(p.counterLengths) != 0 {
    		panic("internal error: seen functions with regonly/testmain")
    	}
    
    	// Emit package name.
    	fmt.Fprintf(w, "\npackage %s\n\n", pkgconfig.PkgName)
    
    	// Emit package ID var.
    	fmt.Fprintf(w, "\nvar %sP uint32\n", *varVar)
    
    	// Emit all of the counter variables.
    	for k := range p.counterLengths {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	case *File:
    		file := n
    		seenRewrite := make(map[[3]string]string)
    		fmt.Fprintf(w, "// Code generated from _gen/%s%s.rules using 'go generate'; DO NOT EDIT.\n", n.Arch.name, n.Suffix)
    		fmt.Fprintf(w, "\npackage ssa\n")
    		for _, path := range append([]string{
    			"fmt",
    			"internal/buildcfg",
    			"math",
    			"cmd/internal/obj",
    			"cmd/compile/internal/base",
    			"cmd/compile/internal/types",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	}
    	if action == "" {
    		t.Fatalf("execution recipe not found in GOROOT/test/%s", t.goFileName())
    	}
    
    	// Check for build constraints only up to the actual code.
    	header, _, ok := strings.Cut(src, "\npackage")
    	if !ok {
    		header = action // some files are intentionally malformed
    	}
    	if ok, why := shouldTest(header, goos, goarch); !ok {
    		t.Skip(why)
    	}
    
    	var args, flags, runenv []string
    	var tim int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top