Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 6,254 for Packaged (0.21 sec)

  1. src/cmd/dist/buildtool.go

    // no other slashes, which are commands, and other paths, which are packages
    // supporting the commands. Packages in the standard library can be listed
    // if a newer copy needs to be substituted for the Go bootstrap copy when used
    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

        }
    
        def "deletes empty packages dirs"() {
            given:
            buildFile << """
                apply plugin: 'java'
            """
            def a = file('src/main/java/com/foo/internal/A.java') << """
                package com.foo.internal;
                public class A {}
            """
            file('src/main/java/com/bar/B.java') << """
                package com.bar;
                public class B {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/download.go

    			} else {
    				// As of Go 1.17, the go.mod file explicitly requires every module
    				// that provides any package imported by the main module.
    				// 'go mod download' is typically run before testing packages in the
    				// main module, so by default we shouldn't download the others
    				// (which are presumed irrelevant to the packages in the main module).
    				// See https://golang.org/issue/44435.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  4. src/cmd/covdata/dump.go

    	mm map[pkfunc]decodecounter.FuncPayload
    
    	// pkm maps package ID to the number of functions in the package
    	// with that ID. It is used to report inconsistencies in counter
    	// data (for example, a counter data entry with pkgid=N funcid=10
    	// where package N only has 3 functions).
    	pkm map[uint32]uint32
    
    	// pkgpaths records all package import paths encountered while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check_test.go

    	return (*bool)(v.FieldByName(name).Addr().UnsafePointer())
    }
    
    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/go/doc/comment/parse.go

    }
    
    // DefaultLookupPackage is the default package lookup
    // function, used when [Parser.LookupPackage] is nil.
    // It recognizes names of the packages from the standard
    // library with single-element import paths, such as math,
    // which would otherwise be impossible to name.
    //
    // Note that the go/doc package provides a more sophisticated
    // lookup based on the imports used in the current package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  7. doc/godebug.md

    The defaults that will be compiled into a main package
    are reported by the command:
    
    {{raw `
    	go list -f '{{.DefaultGODEBUG}}' my/main/package
    `}}
    
    Only differences from the base Go toolchain defaults are reported.
    
    When testing a package, `//go:debug` lines in the `*_test.go`
    files are treated as directives for the test's main package.
    In any other context, `//go:debug` lines are ignored by the toolchain;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/go/types/check_test.go

    	return (*string)(v.FieldByName(name).Addr().UnsafePointer())
    }
    
    // TestManual is for manual testing of a package - either provided
    // as a list of filenames belonging to the package, or a directory
    // name containing the package files - after the test arguments
    // (and a separating "--"). For instance, to test the package made
    // of the files foo.go and bar.go, use:
    //
    //	go test -run Manual -- foo.go bar.go
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/abi.go

    		// ABIInternal, since they may be referenced from
    		// other packages.
    		fn.ABIRefs.Set(obj.ABIInternal, true)
    
    		// If a symbol is defined in this package (either in
    		// Go or assembly) and given a linkname, it may be
    		// referenced from another package, so make it
    		// callable via any ABI. It's important that we know
    		// it's defined in this package since other packages
    		// may "pull" symbols using linkname and we don't want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/go/parser/parser_test.go

    func TestIssue9979(t *testing.T) {
    	for _, src := range []string{
    		"package p; func f() {;}",
    		"package p; func f() {L:}",
    		"package p; func f() {L:;}",
    		"package p; func f() {L:\n}",
    		"package p; func f() {L:\n;}",
    		"package p; func f() { ; }",
    		"package p; func f() { L: }",
    		"package p; func f() { L: ; }",
    		"package p; func f() { L: \n}",
    		"package p; func f() { L: \n; }",
    	} {
    		fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top