Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 735 for moduleB (0.7 sec)

  1. src/cmd/go/internal/modcmd/edit.go

    }
    
    type replaceJSON struct {
    	Old module.Version
    	New module.Version
    }
    
    type retractJSON struct {
    	Low       string `json:",omitempty"`
    	High      string `json:",omitempty"`
    	Rationale string `json:",omitempty"`
    }
    
    // editPrintJSON prints the -json output.
    func editPrintJSON(modFile *modfile.File) {
    	var f fileJSON
    	if modFile.Module != nil {
    		f.Module = editModuleJSON{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

      into 'libs'
    }
    """
            ivyRepo.module('org', 'projectA', '1.2')
                .dependsOn(organisation: 'org', module: 'projectB', revision: '1.5', revConstraint: '1.6')
                .dependsOn(organisation: 'org', module: 'projectC', revision: 'alpha-12')
                .publish()
    
            ivyRepo.module('org', 'projectB', '1.5')
                .publish()
    
            ivyRepo.module('org', 'projectB', '1.6')
                .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stderr '^\texample.com/unused: is replaced in go.mod, but not marked as replaced in vendor/modules.txt'
    stderr '^\texample.com/version@v1.2.0: is replaced in go.mod, but not marked as replaced in vendor/modules.txt'
    stderr '^\tTo ignore the vendor directory, use -mod=readonly or -mod=mod.\n\tTo sync the vendor directory, run:\n\t\tgo mod vendor$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

            allProjects.rootIdeaProject.name == 'module-main'
            allProjects.rootIdeaProject.modules.collect { it.name } == ['module-main', 'module-main-module-b']
    
            allProjects.getIdeaProject('module-main').modules.collect { it.name } == ['module-main', 'module-main-module-b']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        def "displays information about conflicting modules when failOnVersionConflict is used"() {
            given:
            mavenRepo.module("org", "leaf1").publish()
            mavenRepo.module("org", "leaf2").publish()
            mavenRepo.module("org", "leaf2", "1.5").publish()
            mavenRepo.module("org", "leaf2", "2.5").publish()
            mavenRepo.module("org", "leaf3").publish()
            mavenRepo.module("org", "leaf4").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    # that provide packages (or test dependencies of packages) imported by the
    # main module. However, in Go 1.16 it selects a higher version of a
    # transitive module dependency that is not otherwise relevant to the main module.
    # As a result, Go 1.16 needs an additional checksum for the go.mod file of
    # that irrelevant dependency.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- incompatible v1.0.0
    #         |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    # a best effort to parse flags relevant to downloading modules
    # (currently only -modcacherw) before actually downloading the module
    # to identify which toolchain version to use.
    #
    # However, the best-effort flag parsing should not interfere with
    # actual flag parsing if we don't switch toolchains. In particular,
    # unrecognized flags should still be diagnosed after the module for
    # the requested package has been downloaded and checked for toolchain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

                .java files in c.g.c.collect.Collect, a module that the c.g.c.base test module inherits,
                and .java files in c.g.c.collect.testModule, one that it doesn't[*]. Consequently,
                c.g.c.base.testModule transitively pulls in .java files from both modules while reading
                the module description of only the prod module. And the prod module doesn't inherit all
                the modules that the test module classes use, so we get errors.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            expect:
            succeeds "help"
        }
    
        def "does not watch files in #repositoryType file repositories"() {
            def repo = this."${repositoryType}"("repo")
            def moduleA = repo.module('group', 'projectA', '9.1')
            moduleA.publish()
    
            def projectDir = file("project")
            projectDir.file("build.gradle") << """
                configurations { implementation }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            assertEquals(project1.getScm().getUrl(), project0.getScm().getUrl() + "/modules/p1");
            assertEquals(project1.getScm().getConnection(), project0.getScm().getConnection() + "/modules/p1");
            assertEquals(
                    project1.getScm().getDeveloperConnection(), project0.getScm().getDeveloperConnection() + "/modules/p1");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top