Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 883 for module$ (0.33 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskIncrementalJavaCompilationIntegrationTest.groovy

            // We recompile all module-info.java also for unrelated modules, but we don't recompile unrelated classes
            impl.recompiledFqn("my.module.first.b.B", "my.module.second.c.C", "my.module.first.module-info", "my.module.second.module-info", "my.module.unrelated.module-info")
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "recompiles when upstream module-info changes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * {@return the type of path detected}. The return value is {@link JavaPathType#MODULES}
         * if the dependency is a modular JAR file or a directory containing module descriptor(s),
         * or {@link JavaPathType#CLASSES} otherwise. A JAR file without module descriptor but with
         * an "Automatic-Module-Name" manifest attribute is considered modular.
         */
        public JavaPathType getPathType() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/modload/modfile.go

    // It also returns the modroot of the module providing the replacement if
    // one was found.
    func resolveReplacement(m module.Version) module.Version {
    	if r := Replacement(m); r.Path != "" {
    		return r
    	}
    	return m
    }
    
    func toReplaceMap(replacements []*modfile.Replace) map[module.Version]module.Version {
    	replaceMap := make(map[module.Version]module.Version, len(replacements))
    	for _, r := range replacements {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K 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. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

        }
    
        @Override
        public Module getModule(String name) {
            Module module = modules.get(name);
            if (module == null) {
                module = loadModule(name);
                modules.put(name, module);
            }
            return module;
        }
    
        @Override
        @Nullable
        public Module findModule(String name) {
            Module module = modules.get(name);
            if (module == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

            """
            expectChainInteractions(modules, modules)
    
            then:
            succeeds 'checkDep'
            resolve.expectGraph {
                root(':', ':test:') {
                    module("org:mavenCompile1:1.0:compile") {
                        module "org:mavenCompile1-api-dependency:1.0"
                        module("org:mavenCompile2:1.0") {
                            module "org:mavenCompile2-api-dependency:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_outside.txt

    
    # 'go clean' should skip the current directory if it isn't in a module.
    go clean -n
    ! stdout .
    ! stderr .
    
    # 'go mod graph' should fail, since there's no module graph.
    ! go mod graph
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    # 'go mod why' should fail, since there is no main module to depend on anything.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

            given:
            mavenRepo.module("org", "child_dep", "1.7").publish()
            mavenRepo.module("org", "typed_dep", "1.8").artifact(type: 'bar').publish()
            mavenRepo.module("org", "classified_dep", "1.9").artifact(classifier: 'classy').publish()
            mavenRepo.module("org", "fq_dep", "2.1").artifact(type: 'bar', classifier: 'classy').publish()
    
            def parent = mavenRepo.module("org", "parent", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top