Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 320 for package_a (0.38 sec)

  1. src/go/build/build.go

    	Name          string   // package name
    	ImportComment string   // path in import comment on package statement
    	Doc           string   // documentation synopsis
    	ImportPath    string   // import path of package ("" if unknown)
    	Root          string   // root of Go tree where this package lives
    	SrcRoot       string   // package source root directory ("" if unknown)
    	PkgRoot       string   // package install root directory ("" if unknown)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    		}
    	}
    	return filter, nil
    }
    
    var packageRE = regexp.MustCompile(`(?m)^package ([\p{Lu}\p{Ll}\w]+)`)
    
    func getPackageNameFromSource(fn string) (string, error) {
    	data, err := os.ReadFile(fn)
    	if err != nil {
    		return "", err
    	}
    	pkgname := packageRE.FindStringSubmatch(string(data))
    	if pkgname == nil {
    		return "", fmt.Errorf("cannot find package name in %s", fn)
    	}
    	return pkgname[1], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    requested benchmark results or verbose logging. After the package
    tests for all of the listed packages finish, and their output is
    printed, go test prints a final 'FAIL' status if any package test
    has failed.
    
    In package list mode only, go test caches successful package test
    results to avoid unnecessary repeated running of tests. When the
    result of a test can be recovered from the cache, go test will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    // imported by another package. When we have finished identifying the imports of
    // a package, we add the test for that package if it is needed. A test may be
    // needed if:
    // 	- the package matches a root pattern and tests of the roots were requested, or
    // 	- the package is in the main module and the "all" pattern is requested
    // 	  (because the "all" pattern includes the dependencies of tests in the main
    // 	  module), or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // packages:
    //
    //  1. For each package marked with pkgInAll, the module path that provided that
    //     package is included as a root.
    //  2. For all packages, the module that provided that package either remains
    //     selected at the same version or is upgraded by the dependencies of a
    //     root.
    //
    // If any module that provided a package has been upgraded above its previous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    Kotlin extension functions are package-level functions and you can learn how to locate the name of the type declaring a given Kotlin extension in the link:{kotlin-reference}java-to-kotlin-interop.html#package-level-functions[Package-Level Functions] section of the Kotlin reference documentation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    	// dir = full path to pkg.
    	dir := pathf("%s/src/%s", goroot, pkg)
    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    	ispkg := !strings.HasPrefix(pkg, "cmd/") || strings.Contains(pkg, "/internal/") || strings.Contains(pkg, "/vendor/")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    				// modules, the packages in the "std" module have no import-path prefix.
    				//
    				// Modules named "std" outside of GOROOT/src do not receive this special
    				// treatment, so it is possible to run 'go test .' in other GOROOTs to
    				// test individual packages using a combination of the modified package
    				// and the ordinary standard library.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    		{`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
    		{`package b3; var _ = 0.`, `0.`, `float64`, `0`},
    		{`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
    		{`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`},
    
    		{`package c0a; var _ = bool(false)`, `false`, `bool`, `false`},
    		{`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		{`package b1; var _ = 0`, `0`, `int`, `0`},
    		{`package b2; var _ = 'A'`, `'A'`, `rune`, `65`},
    		{`package b3; var _ = 0.`, `0.`, `float64`, `0`},
    		{`package b4; var _ = 0i`, `0i`, `complex128`, `(0 + 0i)`},
    		{`package b5; var _ = "foo"`, `"foo"`, `string`, `"foo"`},
    
    		{`package c0a; var _ = bool(false)`, `false`, `bool`, `false`},
    		{`package c0b; var _ = bool(false)`, `bool(false)`, `bool`, `false`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top