Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,627 for package_a (0.13 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * If you do not supply any -group option, all packages are placed in one group with the heading "Packages".
         * If the all groups do not include all documented packages,
         * any leftover packages appear in a separate group with the heading "Other Packages".
         * <p>
         * For example, the following option separates the four documented packages into core,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    	UsageLine: "go clean [clean flags] [build flags] [packages]",
    	Short:     "remove object files and cached files",
    	Long: `
    Clean removes object files from package source directories.
    The go command builds most objects in a temporary directory,
    so go clean is mainly concerned with object files left by other
    tools or by manual invocations of go build.
    
    If a package argument is given or the -i or -r flag is set,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            then:
            def index = results(indexFile)
            index.assertHasLinkTo('packages/default-package', 'default-package')
            index.assertHasLinkTo('classes/Test', 'Test')
    
            def packageFile = results(reportDir.file('packages/default-package.html'))
            packageFile.assertHasLinkTo('../classes/Test', 'Test')
        }
    
        def escapesHtmlContentInReport() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    //	foo.cfg         description of compilation unit (from the build tool)
    //
    // This package does not depend on go/packages.
    // If you need a standalone tool, use multichecker,
    // which supports this mode but can also load packages
    // from source using go/packages.
    package unitchecker
    
    // TODO(adonovan):
    // - with gccgo, go build does not build standard library,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/import.go

    // if a module contains a package, but we don't have a sum for its .zip file.
    // We might need sums for multiple modules to verify the package is unique.
    //
    // TODO(#43653): consolidate multiple errors of this type into a single error
    // that suggests a 'go get' command for root packages that transitively import
    // packages from modules with missing sums. load.CheckPackageErrors would be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  6. ci/official/utilities/code_check_full.bats

    # their dependencies. It's a rewritten version of the "smoke test", an older
    # Python script that was very difficult to understand. See
    # https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/pip_package/pip_smoke_test.py
    @test "Pip package includes all required //tensorflow dependencies" {
      # grep patterns for packages whose dependencies can be ignored
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    			a.Target = "DO NOT USE - " + a.Mode
    			return true
    		}
    		// Special case for building a main package: if the only thing we
    		// want the package for is to link a binary, and the binary is
    		// already up-to-date, then to avoid a rebuild, report the package
    		// as up-to-date as well. See "Build IDs" comment above.
    		// TODO(rsc): Rewrite this code to use a TryCache func on the link action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/resolver.go

    }
    
    func (check *Checker) importPackage(pos syntax.Pos, path, dir string) *Package {
    	// If we already have a package for the given (path, dir)
    	// pair, use it instead of doing a full import.
    	// Checker.impMap only caches packages that are marked Complete
    	// or fake (dummy packages for failed imports). Incomplete but
    	// non-fake packages do require an import to complete them.
    	key := importKey{path, dir}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/go/types/resolver.go

    }
    
    func (check *Checker) importPackage(at positioner, path, dir string) *Package {
    	// If we already have a package for the given (path, dir)
    	// pair, use it instead of doing a full import.
    	// Checker.impMap only caches packages that are marked Complete
    	// or fake (dummy packages for failed imports). Incomplete but
    	// non-fake packages do require an import to complete them.
    	key := importKey{path, dir}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    Some driver implementations (such as those based on Bazel and Blaze) do
    not currently apply analyzers to packages of the standard library.
    Therefore, for best results, analyzer authors should not rely on
    analysis facts being available for standard packages.
    For example, although the printf checker is capable of deducing during
    analysis of the log package that log.Printf is a printf wrapper,
    this fact is built in to the analyzer so that it correctly checks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top