Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 5,745 for Packaged (0.17 sec)

  1. 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)
  2. ci/official/containers/linux_arm64/devel.usertools/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: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/generate/generate.go

    specifies that the command "foo" represents the generator
    "go tool foo".
    
    Generate processes packages in the order given on the command line,
    one at a time. If the command line lists .go files from a single directory,
    they are treated as a single package. Within a package, generate processes the
    source files in a package in file name order, one at a time. Within
    a source file, generate runs generators in the order they appear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K 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/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)
  8. 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)
  9. src/cmd/go/testdata/script/mod_outside.txt

    cd ..
    
    # 'go doc' of a non-module directory should also succeed.
    go doc ./needmod
    
    # 'go doc' should succeed for standard-library packages.
    go doc fmt
    
    # 'go doc' should fail for a package path outside a module.
    ! go doc example.com/version
    stderr 'doc: no required module provides package example.com/version: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K 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