Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,760 for package_a (0.13 sec)

  1. src/cmd/internal/obj/objfile.go

    //   - For referenced content-addressable symbol, its content hash
    //     is globally consistent.
    //   - For package symbol and builtin symbol, its local index is
    //     globally consistent.
    //   - For non-package symbol, its fully-expanded name is globally
    //     consistent. For now, we require we know the current package
    //     path so we can always expand symbol names. (Otherwise,
    //     symbols with relocations are not considered hashable.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. docs/en/docs/deployment/docker.md

    4. Install the package dependencies in the requirements file.
    
        The `--no-cache-dir` option tells `pip` to not save the downloaded packages locally, as that is only if `pip` was going to be run again to install the same packages, but that's not the case when working with containers.
    
        !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/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)
  10. src/go/ast/ast.go

    	}
    	return f.Name.End()
    }
    
    // A Package node represents a set of source files
    // collectively building a Go package.
    //
    // Deprecated: use the type checker [go/types] instead; see [Object].
    type Package struct {
    	Name    string             // package name
    	Scope   *Scope             // package scope across all files
    	Imports map[string]*Object // map of package id -> package object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top