Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 515 for Packaged (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:creating_uber_jar_example]]
    == Creating "uber" or "fat" JARs
    
    In Java, applications and their dependencies were typically packaged as separate JARs within a single distribution archive.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/link/internal/loader/loader.go

    							assignedToUnit.Set(sym)
    						}
    						// Dupok symbols may be defined in multiple packages; the
    						// associated package for a dupok sym is chosen sort of
    						// arbitrarily (the first containing package that the linker
    						// loads). Canonicalizes its Pkg to the package with which
    						// it will be laid down in text.
    						if i == 1 /* DupTextSyms2 */ && l.SymPkg(sym) != lib.Pkg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K 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/modget/get.go

    						Query:       q.version,
    					})
    				}
    
    				packages, err := r.matchInModule(ctx, q.pattern, curM)
    				if err != nil {
    					return errSet(err)
    				}
    				if len(packages) > 0 {
    					return errSet(&modload.QueryMatchesPackagesInMainModuleError{
    						Pattern:  q.pattern,
    						Query:    q.version,
    						Packages: packages,
    					})
    				}
    
    				return r.tryWildcard(ctx, q, curM)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/go/build/build.go

    	IgnoreVendor
    )
    
    // A Package describes the Go package found in a directory.
    type Package struct {
    	Dir           string   // directory containing package sources
    	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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    		package p2
    		import "p1"
    		func F() { p1.F(true) }
    	`)
    	tg.runFail("install", "p2")
    	tg.grepStderr("no Go files", "did not complain about missing sources")
    
    	tg.tempFile("src/p1/missing.go", `//go:binary-only-package
    
    		package p1
    		import _ "fmt"
    		func G()
    	`)
    	tg.wantStale("p1", "binary-only package", "should NOT want to rebuild p1 (first)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    		}
    	}
    
    	return
    }
    
    // packages returns the full list of packages to be run by this goTest. This
    // will always include at least one package.
    func (opts *goTest) packages() []string {
    	pkgs := opts.pkgs
    	if opts.pkg != "" {
    		pkgs = append(pkgs[:len(pkgs):len(pkgs)], opts.pkg)
    	}
    	if len(pkgs) == 0 {
    		panic("no packages")
    	}
    	return pkgs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top