Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,346 for module$ (0.14 sec)

  1. 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)
  2. 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)
  3. src/cmd/go/testdata/script/mod_verify_work.txt

    # main modules from the build list incorrectly, leading to the workspace
    # modules being checked for correct sums. Specifically this would happen when
    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/text8.txt

    If module-aware mode is enabled, "go install" runs in the context of the main
    module.
    -- text --
    If the arguments have version suffixes
    (like @latest or @v1.0.0), "go install"
    builds packages in module-aware mode,
    ignoring the go.mod file in the current
    directory or any parent directory,
    if there is one. This is useful for
    installing executables without affecting
    the dependencies of the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/profile-module/pom.xml

      <version>1.0</version>
      <packaging>pom</packaging>
      <modules>
        <module>module-2</module>
        <module>module-1</module>
        <module>module-3</module>
      </modules>
      <profiles>
        <profile>
          <id>a</id>
          <properties>
            <b>test-prop</b>
          </properties>
          <modules>
            <module>module-1</module>
            <module>module-4</module>
          </modules>
        </profile>
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 521 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

            def mod1 = mavenHttpRepo.module("group1", "module1", "1.0").publish()
            def mod2 = mavenHttpRepo.module("group1", "module2", "0.99").dependsOn(mod1).publish()
    
            buildFile << """
    repositories {
        maven { url "${mavenHttpRepo.uri}" }
    }
    configurations {
        a
        b
    }
    dependencies {
        a "group1:module1:1.0"
        b "group1:module2:0.99"
    }
    task a {
        def files = configurations.a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/mvs/errors.go

    	return &BuildListError{
    		Err:   err,
    		stack: stack,
    	}
    }
    
    // Module returns the module where the error occurred. If the module stack
    // is empty, this returns a zero value.
    func (e *BuildListError) Module() module.Version {
    	if len(e.stack) == 0 {
    		return module.Version{}
    	}
    	return e.stack[len(e.stack)-1].m
    }
    
    func (e *BuildListError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_e.txt

    go mod vendor -e
    stderr -count=2 'no required module provides package'
    stderr '^go: example.com/untidy imports\n\texample.net/m: module example.net/m provides package example.net/m and is replaced but not required; to add it:\n\tgo get example.net/m@v0.1.0$'
    exists vendor/modules.txt
    ! exists vendor/example.net
    
    go mod edit -require example.net/m@v0.1.0
    go mod vendor -e
    stderr -count=3 'no required module provides package'
    exists vendor/modules.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppJava6WtpComponent.xml

    		</dependent-module>
    		<dependent-module archiveName="api-1.0.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/api/api">
    			<dependency-type>uses</dependency-type>
    		</dependent-module>
    	</wb-module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 19:33:30 UTC 2023
    - 719 bytes
    - Viewed (0)
Back to top