Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,190 for moduleB (0.37 sec)

  1. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    Java Modules are a feature of Java itself, available since Java 9, that allows for better encapsulation.
    
    In Gradle, each _source set_ containing Java sources can be turned into a module by adding a `module-info.java` file.
    Typically, in a project with Java Modules like this one, the _main_ source set of a subproject represents a module.
    
    ```
    src
    └── main
        └── java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/help.go

    var HelpModules = &base.Command{
    	UsageLine: "modules",
    	Short:     "modules, module versions, and more",
    	Long: `
    Modules are how Go manages dependencies.
    
    A module is a collection of packages that are released, versioned, and
    distributed together. Modules may be downloaded directly from version control
    repositories or from module proxy servers.
    
    For a series of tutorials on modules, see
    https://golang.org/doc/tutorial/create-module.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_module_not_in_go_work.txt

    stderr 'directory a[\\/]c is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use a'
    
    cd a/c
    ! go run .
    stderr 'current directory is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use \.\.'
    
    cd ../..
    ! go run .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_outside.txt

    
    # 'go clean' should skip the current directory if it isn't in a module.
    go clean -n
    ! stdout .
    ! stderr .
    
    # 'go mod graph' should fail, since there's no module graph.
    ! go mod graph
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    # 'go mod why' should fail, since there is no main module to depend on anything.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

    }
    
    private inline fun buildDependentsMap(
        modules: List<KtModule>,
        getDependencies: (KtModule) -> Sequence<KtModule>,
    ): Map<KtModule, MutableSet<KtModule>> = buildMap<KtModule, MutableSet<KtModule>> {
        for (module in modules) {
            for (dependency in getDependencies(module)) {
                // `module` should not be part of its own dependents, per the contract of `KotlinModuleDependentsProvider`.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    go work vendor
    cmp modules.txt.want vendor/modules.txt
    go list example.com/a example.com/b
    
    # Module required in go.mod but not marked explicit in modules.txt
    cp modules.txt.required_but_not_explicit vendor/modules.txt
    ! go list example.com/a example.com/b
    cmpenv stderr required_but_not_explicit_error.txt
    
    # Replacement in go.mod but no replacement in modules.txt
    cp modules.txt.missing_replacement vendor/modules.txt
    ! go list example.com/a example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenRepository.groovy

            def artifactDir = new File(rootDir, "${groupId.replace('.', '/')}/$artifactId/$version")
            def module = new MavenModule(artifactDir, groupId, artifactId, version as String)
            module.mavenJarCreator = mavenJarCreator
            modules << module
            return module
        }
    
        void publish() {
            modules.each {
                it.publish()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class LazyDownloadsIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def module = mavenHttpRepo.module("test", "test", "1.0").publish()
        def module2 = mavenHttpRepo.module("test", "test2", "1.0").publish()
    
        def setup() {
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top