Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 735 for moduleB (0.19 sec)

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

    [short] skip
    
    # 'go run pkg@version' works outside a module.
    env GO111MODULE=auto
    go run example.com/cmd/a@v1.0.0
    stdout '^a@v1.0.0$'
    
    
    # 'go run pkg@version' reports an error if modules are disabled.
    env GO111MODULE=off
    ! go run example.com/cmd/a@v1.0.0
    stderr '^go: modules disabled by GO111MODULE=off; see ''go help modules''$'
    env GO111MODULE=on
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

        /**
         * Locates a module by name.
         *
         * @return the module. Does not return null.
         */
        Module getModule(String name) throws UnknownModuleException;
    
        /**
         * Tries to locate a module by name.
         *
         * @return the optional module, or {@literal null} if it cannot be found
         * @throws UnknownModuleException if the requested module is found but one of its dependencies is not
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. api/pom.xml

      <modules>
        <module>maven-api-meta</module>
        <module>maven-api-di</module>
        <module>maven-api-xml</module>
        <module>maven-api-model</module>
        <module>maven-api-plugin</module>
        <module>maven-api-settings</module>
        <module>maven-api-toolchain</module>
        <module>maven-api-metadata</module>
        <module>maven-api-core</module>
        <module>maven-api-spi</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K 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/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)
  6. 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)
  7. src/cmd/go/testdata/script/work.txt

    # Test that we don't run into "newRequirements called with unsorted roots"
    # panic with unsorted main modules.
    cp go.work.backwards go.work
    go work use # update go version
    go run example.com/d
    
    # Test that command-line-arguments work inside and outside modules.
    # This exercises the code that determines which module command-line-arguments
    # belongs to.
    go list ./b/main.go
    env GOWORK=off
    go build -n -o foo foo.go
    env GOWORK=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.javaLanguageSettings.languageLevel.isJava5()
            // modules
            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings == null
        }
    
        def "can retrieve project and module language level for multi project build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/list/list.go

    module and then dependencies sorted by module path.
    A pattern containing "..." specifies the active modules whose
    module paths match the pattern.
    A query of the form path@version specifies the result of that query,
    which is not limited to active modules.
    See 'go help modules' for more about module queries.
    
    The template function "module" takes a single string argument
    that must be a module path or query and returns the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. 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)
Back to top