Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 883 for module$ (0.15 sec)

  1. cmd/dependencyverifier/dependencyverifier.go

    	}
    }
    
    func visit(visitor func(m module, via []module), main module, references map[module][]module, effectiveVersions map[string]module) {
    	doVisit(visitor, main, nil, map[module]bool{}, references, effectiveVersions)
    }
    
    func doVisit(visitor func(m module, via []module), from module, via []module, visited map[module]bool, references map[module][]module, effectiveVersions map[string]module) {
    	visitor(from, via)
    	via = append(via, from)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            }
    
            void addChecksum(HttpModule module, String algo, String type = "jar", String ext = "jar", String origin = null, String reason = null) {
                def checksum = getChecksum(module, algo, type)
                doAddChecksum(module.group, module.module, module.version, type, ext, algo, checksum, origin, reason)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            when:
            targetedRule("group", "module") { ComponentSelection cs -> closuresCalled << 0 }
            targetedRule("group", "module") { ComponentSelection cs, ComponentMetadata cm -> closuresCalled << 1 }
            targetedRule("group", "module") { ComponentSelection cs, IvyModuleDescriptor imd -> closuresCalled << 2 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

            Preconditions.checkNotNull(moduleManager);
            Node modules = findFirstChildNamed(moduleManager, "modules");
            if (modules == null) {
                modules = moduleManager.appendNode("modules");
            }
            return modules;
        }
    
        private Node findCompilerConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                        artifact(name: 'file4', version: '', legacyName: 'child/file4')
                    }
                }
            }
        }
    
        def "module with module metadata can depend on another module with module metadata"() {
            def c = mavenRepo.module("test", "c", "preview")
                .withModuleMetadata()
            c.artifact(classifier: 'debug')
            c.publish()
            c.moduleMetadata.file.text = """
    {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

                root(":", ":test:") {
                    module('org:foo:1.1') {
                        byConflictResolution('between versions 1.1 and 1.0')
                        module('org:bar:1.0')
                    }
                    edge('org:foo:[1.0,1.1]', 'org:foo:1.1')
                    edge('org:foo:1.0', 'org:foo:1.1')
                }
            }
        }
    
        def "clashing client modules fail the build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            then:
            def appXml = new XmlSlurper().parse(
                file('unzipped/META-INF/application.xml'))
            def modules = appXml.module
            modules[0].ejb.text() == 'moduleA.jar'
            modules[1].web.'web-uri'.text() == 'moduleB.war'
        }
    
        void "uses content from application xml located #location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    // This is a performance optimization. Most modules do not declare capabilities. So, instead of systematically registering
                    // an implicit capability for each module that we see, we only consider modules which _declare_ capabilities. If they do,
                    // then we try to find a module which provides the same capability. It that module has been found, then we register it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/query.go

    	// matches the query pattern.
    	//
    	// We track this module separately from pkgMods because, all else equal, we
    	// prefer to match a query to a package rather than just a module. Also,
    	// unlike the modules in pkgMods, this module does not inherently exclude
    	// any other module in pkgMods.
    	mod module.Version
    
    	err error
    }
    
    // errSet returns a pathSet containing the given error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top