Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,190 for moduleB (0.11 sec)

  1. src/cmd/go/testdata/script/mod_get_extra.txt

    # missing packages when the newly-added module matches a wildcard.
    
    cp go.mod.orig go.mod
    
    go get -u example.net/a@v0.1.0 example.net/b/...@v0.1.0
    go list -m all
    stdout '^example.net/a v0.1.0 '
    stdout '^example.net/b v0.1.0 '
    stdout '^example.net/c '  # BUG, but a minor and rare one
    
    
    -- go.mod --
    module example
    
    go 1.15
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/b v0.1.0 => ./b1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-containers/1.0-alpha-32/plexus-containers-1.0-alpha-32.pom

      <artifactId>plexus-containers</artifactId>
      <packaging>pom</packaging>
      <name>Parent Plexus Container POM</name>
      <version>1.0-alpha-32</version>
      <modules>
        <module>plexus-component-api</module>
        <module>plexus-container-default</module>
      </modules>
      <scm>
        <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-32</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom

      <artifactId>plexus-containers</artifactId>
      <packaging>pom</packaging>
      <name>Parent Plexus Container POM</name>
      <version>1.0-alpha-16</version>
      <modules>
        <module>plexus-component-api</module>
        <module>plexus-container-default</module>
      </modules>
      <scm>
        <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-containers/tags/plexus-containers-1.0-alpha-16</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:34:51 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                        outstr.writeUTF(entry.toString());
                    }
                    // We do not serialize the module path. Instead, implementation modules are directly added to the application module path when
                    // starting the worker process. Implementation modules are hidden to the application modules by module visibility.
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/why.go

    The output is a sequence of stanzas, one for each package or module
    name on the command line, separated by blank lines. Each stanza begins
    with a comment line "# package" or "# module" giving the target
    package or module. Subsequent lines give a path through the import
    graph, one package per line. If the package or module is not
    referenced from the main module, the stanza will display a single
    parenthesized note indicating that fact.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 21:32:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/project-builder/MNG-6723/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>example.eclipse-548652</groupId>
      <artifactId>parent</artifactId>
      <version>0.0.1-SNAPSHOT</version>
      <packaging>pom</packaging>
      <modules>
        <module>child</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 19 15:28:46 UTC 2020
    - 488 bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/tidy.go

    	UsageLine: "go mod tidy [-e] [-v] [-x] [-diff] [-go=version] [-compat=version]",
    	Short:     "add missing and remove unused modules",
    	Long: `
    Tidy makes sure go.mod matches the source code in the module.
    It adds any missing modules necessary to build the current module's
    packages and dependencies, and it removes unused modules that
    don't provide any relevant packages. It also adds any missing entries
    to go.sum and removes any unnecessary ones.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaModulesIntegrationTest.groovy

            libraries[2].jarName == 'jlib-1.0.jar'
            libraries[2].assertHasNoAttribute('module', 'true')
        }
    
        @ToBeFixedForConfigurationCache
        def "Marks modules on classpath as such"() {
            setup:
            file("src/main/java/module-info.java") << """
                module my.module {
                    requires jmodule
                    requires jautomodule
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/gover/version.go

    	DefaultGoWorkVersion = "1.18"
    
    	// ExplicitIndirectVersion is the Go version at which a
    	// module's go.mod file is expected to list explicit requirements on every
    	// module that provides any package transitively imported by that module.
    	//
    	// Other indirect dependencies of such a module can be safely pruned out of
    	// the module graph; see https://golang.org/ref/mod#graph-pruning.
    	ExplicitIndirectVersion = "1.17"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top