Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Package (0.73 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/cgo/gcc.go

    	}
    	return args, err
    }
    
    // Translate rewrites f.AST, the original Go input, to remove
    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		// Do not add generated file to clean list.
    		// In runtime, we want to be able to
    		// build the package with the go tool,
    		// and it assumes these generated files already
    		// exist (it does not know how to build them).
    		// The 'clean' command can remove
    		// the generated files.
    	}
    
    	// Resolve imported packages to actual package paths.
    	// Make sure they're installed.
    	importMap := make(map[string]string)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.tempFile("src/p1/p1.go", "package p1\nvar X =  1\n")
    	tg.tempFile("src/p2/p2.go", "package p2\nimport _ \"p1\"\nvar X = 1\n")
    	tg.tempFile("src/t/t1/t1_test.go", "package t\nimport \"testing\"\nfunc Test1(*testing.T) {}\n")
    	tg.tempFile("src/t/t2/t2_test.go", "package t\nimport _ \"p1\"\nimport \"testing\"\nfunc Test2(*testing.T) {}\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    // license that can be found in the LICENSE file.
    
    // Package modget implements the module-aware “go get” command.
    package modget
    
    // The arguments to 'go get' are patterns with optional version queries, with
    // the version queries defaulting to "upgrade".
    //
    // The patterns are normally interpreted as package patterns. However, if a
    // pattern cannot match a package, it is instead interpreted as a *module*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/link/internal/ld/xcoff.go

    			// It doesn't need to know it for each package, one is enough.
    			// currSymSrcFile.csectAux == nil means first package.
    			ldr.SetSymDynid(loader.Sym(sect.Sym), int32(f.symbolCount))
    
    			if sect.Name == ".debug_frame" && ctxt.LinkMode != LinkExternal {
    				// CIE size must be added to the first package.
    				dwsize += 48
    			}
    		}
    
    		f.addSymbol(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top