Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 456 for moduleA (0.13 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    ** Once a repository returns a _metadata_ result, following repositories are ignored.
    * Metadata for the dependency is retrieved and parsed, if found
    ** If the module metadata is a POM file that has a parent POM declared, Gradle will recursively attempt to resolve each of the parent modules for the POM.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/list/list.go

    module and then dependencies sorted by module path.
    A pattern containing "..." specifies the active modules whose
    module paths match the pattern.
    A query of the form path@version specifies the result of that query,
    which is not limited to active modules.
    See 'go help modules' for more about module queries.
    
    The template function "module" takes a single string argument
    that must be a module path or query and returns the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            void expectGetMetadata(String group, String module) {
                String id = "$group:$module"
                server.expectGet("/repo/${group.replace('.', '/')}/$module/metadata.json", files[id])
            }
    
            @Override
            void expectRefresh(String group, String module) {
                String id = "$group:$module"
                server.expectHead("/repo/${group.replace('.', '/')}/$module/metadata.json", files[id])
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

            dep.getArtifact(name: 'test-extra').expectGet()
            module2.ivy.expectGet()
            module2.jar.expectGet()
    
            then:
            succeeds "checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org.gradle:test:1.45") {
                        artifact(name: "test-extra")
                        module("org.gradle:other:preview-1")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
         * @param moduleName name of the module on which to apply the path
         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. hack/update-vendor.sh

    # Phase 4: copy root go.mod to staging dirs and rewrite
    
    kube::log::status "go.mod: propagate to staging modules" >&11
    for repo in $(kube::util::list_staging_repos); do
      (
        cd "staging/src/k8s.io/${repo}"
    
        echo "=== propagating to ${repo}"
        # copy root go.mod, changing module name
        sed "s#module k8s.io/kubernetes#module k8s.io/${repo}#" \
            < "${KUBE_ROOT}/go.mod" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/build.go

    }
    
    // findModule searches for the module that contains the package at path.
    // If the package was loaded, its containing module and true are returned.
    // Otherwise, module.Version{} and false are returned.
    func findModule(ld *loader, path string) (module.Version, bool) {
    	if pkg, ok := ld.pkgCache.Get(path); ok {
    		return pkg.mod, pkg.mod != module.Version{}
    	}
    	return module.Version{}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            return IdeaFixtures.parseIml(imlFile)
        }
    
        private void iprHasModules(TestFile projectDir = buildA, String... expected) {
            def modules = ipr(projectDir).modules
            assert modules.modules.size() == expected.length
            expected.each {
                modules.assertHasModule(it)
            }
        }
    
        private void imlHasDependencies(TestFile projectDir = buildA, String... expectedModules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

            publication.module = "module2"
            publication.revision = "revision2"
    
            then:
            coordinates.organisation.get() == "organisation2"
            coordinates.module.get() == "module2"
            coordinates.revision.get() == "revision2"
    
            and:
            publication.organisation== "organisation2"
            publication.module == "module2"
            publication.revision == "revision2"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top