Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 883 for module$ (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

            mavenRepo.module('org', 'bar', '1.0').publish()
            mavenRepo.module('org', 'bar', '1.0-SNAPSHOT').publish()
            mavenRepo.module('org', 'bar', '1.1').publish()
            mavenRepo.module('org', 'bar', '2.0').publish()
            mavenRepo.module('org', 'bar', '2.1-SNAPSHOT').publish()
            mavenRepo.module('org', 'bar', '2.1').publish()
            mavenRepo.module('org', 'bar', '2.2-SNAPSHOT').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

        }
    
        @Override
        public RootComponentState toRootComponent(String configurationName) {
            Module module = metadataProvider.getModule();
            ComponentIdentifier componentIdentifier = componentIdentifierFactory.createComponentIdentifier(module);
            LocalComponentGraphResolveState state = getComponentState(module, componentIdentifier);
            ConfigurationGraphResolveState configuration = state.getConfiguration(configurationName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/edit.go

    	// selectedRoot records the edited version (possibly "none") for each module
    	// path that would be a root in the edited requirements.
    	var selectedRoot map[string]string // module path → edited version
    	if rootPruning == pruned {
    		selectedRoot = maps.Clone(rs.maxRootVersion)
    	} else {
    		// In a module without graph pruning, modules that provide packages imported
    		// by the main module may either be explicit roots or implicit transitive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def a1 = mavenHttpRepo.module('org.foo', 'a')
            def b1 = mavenHttpRepo.module('org.foo', 'b')
            def b2 = mavenHttpRepo.module('org.foo', 'b', '2.0')
            def c1 = mavenHttpRepo.module('org.foo', 'c')
            def d1 = mavenHttpRepo.module('org.foo', 'd')
            def e1 = mavenHttpRepo.module('org.foo', 'e')
            def f1 = mavenHttpRepo.module('org.foo', 'f')
    
            a1.dependsOn(c1).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

            then:
            skipped(":signMainPublication")
    
            and:
            def module = repoFor(dsl).module('gradle', 'conditional', '1.0-SNAPSHOT')
            module.assertArtifactsPublished("maven-metadata.xml", "conditional-${module.publishArtifactVersion}.pom", "conditional-${module.publishArtifactVersion}.module", "conditional-${module.publishArtifactVersion}.jar")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerScope.kt

         *
         * @param group the group of the module to be added as a dependency.
         * @param name the name of the module to be added as a dependency.
         * @param version the optional version of the module to be added as a dependency.
         * @param configuration the optional configuration of the module to be added as a dependency.
         * @param classifier the optional classifier of the module artifact to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/IntersectionsTest.groovy

            anyOf(group("org.slf4j"), module("py4j"))                                                                      | anyOf(group("org.slf4j"), module("py4j"), moduleIdSet(["org.jboss.netty", "netty"], ["jline", "jline"]))              | anyOf(group("org.slf4j"), module("py4j"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            def lib1 = mavenHttpRepo.module("com.company", "a", "1.0").publish()
            def lib2 = mavenHttpRepo.module("com.companylibs", "b", "1.0").publish()
            def lib3 = mavenHttpRepo.module("com.companyLibs", "c", "1.0").publish()
    
            def lib4 = mavenHttpRepo.module("com.company", "d", "1.0").publish()
            def lib5 = mavenHttpRepo.module("com.company", "e", "1.0").publish()
    
            tomlFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	if f.Syntax == nil {
    		f.Syntax = new(FileSyntax)
    	}
    	if f.Module == nil {
    		f.Module = &Module{
    			Mod:    module.Version{Path: path},
    			Syntax: f.Syntax.addLine(nil, "module", AutoQuote(path)),
    		}
    	} else {
    		f.Module.Mod.Path = path
    		f.Syntax.updateLine(f.Module.Syntax, "module", AutoQuote(path))
    	}
    	return nil
    }
    
    func (f *File) AddComment(text string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    The download cannot be verified.
    
    For more information, see 'go help module-auth'.
    
    `
    
    var HelpModuleAuth = &base.Command{
    	UsageLine: "module-auth",
    	Short:     "module authentication using go.sum",
    	Long: `
    When the go command downloads a module zip file or go.mod file into the
    module cache, it computes a cryptographic hash and compares it with a known
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top