Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,190 for moduleB (0.09 sec)

  1. src/cmd/go/testdata/script/work_vendor_prune.txt

    # This test exercises that vendoring works properly using the workspace in the
    # the work_prune test case.
    
    go work vendor
    cmp vendor/modules.txt modules.txt.want
    cmp vendor/example.com/b/b.go b/b.go
    cmp vendor/example.com/q/q.go q1_1_0/q.go
    go list -m -f '{{.Version}}' example.com/q
    stdout '^v1.1.0$'
    
    go list -f '{{.Dir}}' example.com/q
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]q
    go list -f '{{.Dir}}' example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub::terminology_platform]]
    == Platform
    
    A platform is a set of modules aimed to be used together. There are different categories of platforms, corresponding to different use cases:
    
    - module set: often a set of modules published together as a whole. Using one module of the set often means we want to use the same version for all modules of the set. For example, if using `groovy` 1.2, also use `groovy-json` 1.2.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

        /**
         * Locates a module by name.
         *
         * @return the module. Does not return null.
         */
        Module getModule(String name) throws UnknownModuleException;
    
        /**
         * Tries to locate a module by name.
         *
         * @return the optional module, or {@literal null} if it cannot be found
         * @throws UnknownModuleException if the requested module is found but one of its dependencies is not
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_ambiguous_import.txt

    module example.net/m
    
    go 1.16
    -- m2/README.txt --
    Package p has been moved to module …/m/p.
    Module …/m/p does not require any version of module …/m.
    
    -- p0/go.mod --
    module example.net/m/p
    
    go 1.16
    -- p0/p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. api/pom.xml

      <modules>
        <module>maven-api-meta</module>
        <module>maven-api-di</module>
        <module>maven-api-xml</module>
        <module>maven-api-model</module>
        <module>maven-api-plugin</module>
        <module>maven-api-settings</module>
        <module>maven-api-toolchain</module>
        <module>maven-api-metadata</module>
        <module>maven-api-core</module>
        <module>maven-api-spi</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpComponentFixture.groovy

        }
    
        WbModule lib(String jarName) {
            def module = modules.find {
                def handle = it.node.@handle
                return handle.startsWith('module:/classpath/') && handle.endsWith(jarName)
            }
            assert module != null
            assert module.node."dependency-type"*.text() == ['uses']
            return module
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_go_version_missing.txt

    # go.mod file. Otherwise, we don't actually know whether the module was written
    # against Go 1.11 or 1.16. We would have to update the go.mod file to clarify,
    # and as of Go 1.16 we don't update the go.mod file by default.
    #
    # If we set -mod=vendor explicitly, we shouldn't apply the Go 1.14
    # consistency check, because — again — we don't know whether we're in a 1.11
    # module or a bad-script-edited 1.16 module.
    
    ! go list -mod=vendor all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/DelegatingExcludeFactory.java

        public GroupExclude group(String group) {
            return delegate.group(group);
        }
    
        @Override
        public ModuleExclude module(String module) {
            return delegate.module(module);
        }
    
        @Override
        public ModuleIdExclude moduleId(ModuleIdentifier id) {
            return delegate.moduleId(id);
        }
    
        @Override
        public ExcludeSpec anyOf(ExcludeSpec one, ExcludeSpec two) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/graph.go

    // the graph and ending at a module version m for which f(m) returns true, or
    // nil if no such path exists.
    func (g *Graph) FindPath(f func(module.Version) bool) []module.Version {
    	// firstRequires[a] = b means that in a breadth-first traversal of the
    	// requirement graph, the module version a was first required by b.
    	firstRequires := make(map[module.Version]module.Version)
    
    	queue := g.roots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/mod.go

    package gover
    
    import (
    	"sort"
    	"strings"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    )
    
    // IsToolchain reports whether the module path corresponds to the
    // virtual, non-downloadable module tracking go or toolchain directives in the go.mod file.
    //
    // Note that IsToolchain only matches "go" and "toolchain", not the
    // real, downloadable module "golang.org/toolchain" containing toolchain files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:18:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top