Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,760 for package_a (0.12 sec)

  1. src/cmd/compile/internal/types2/stdlib_test.go

    		// imports. TestStdlib will collect errors once for each package.
    		return pkg, nil
    	}
    	return nil, err
    }
    
    // getDirPackage gets the package defined in dir from the future cache.
    //
    // If this is the first goroutine requesting the package, getDirPackage
    // type-checks.
    func (c *stdlibChecker) getDirPackage(dir string) (*Package, error) {
    	c.mu.Lock()
    	fut, ok := c.pkgs[dir]
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	}
    	return append(ldflags, "-extld="+joined), nil
    }
    
    // pluginPath computes the package path for a plugin main package.
    //
    // This is typically the import path of the main package p, unless the
    // plugin is being built directly from source files. In that case we
    // combine the package build ID with the contents of the main package
    // source files. This allows us to identify two different plugins
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/go/build/deps_test.go

    // Existing packages should not have their constraints relaxed
    // without prior discussion.
    // Negative assertions should almost never be removed.
    //
    // "a < b" means package b can import package a.
    //
    // See `go doc internal/dag' for the full syntax.
    //
    // All-caps names are pseudo-names for specific points
    // in the dependency lattice.
    var depsRules = `
    	# No dependencies allowed for any of these packages.
    	NONE
    	< unsafe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top