Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,190 for moduleB (0.08 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

                check(Directives.WITH_RESOLVE_EXTENSION in moduleStructure.allDirectives) {
                    "configureResolveExtensions() was called, but no modules specify WITH_RESOLVE_EXTENSION."
                }
    
                return TestModuleStructureImpl(
                    moduleStructure.modules.map { it.transformAndRegisterResolveExtension() },
                    moduleStructure.originalTestDataFiles,
                )
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml

      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child directory path + child directory path != child-artifact-id</description>
    
      <modules>
        <module>../inheritance</module><!-- current directory == inheritance -->
      </modules>
    
      <!-- 5 urls in the pom will be inherited with path added -->
      <url>http://www.apache.org/path/to/parent/</url>
      <scm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_require_exclude.txt

    cp go.mod3 go.mod
    go list -mod=mod -f '{{with .Module}}{{.Path}} {{.Version}}{{end}}' all
    ! stderr '^go: dropping requirement'
    stdout 'rsc.io/quote v1.5.1'
    
    -- x.go --
    package x
    import _ "rsc.io/quote"
    
    -- go.mod --
    module x
    
    go 1.13
    
    exclude rsc.io/sampler v1.99.99
    
    require rsc.io/sampler v1.99.99
    -- vendor/modules.txt --
    # rsc.io/sampler v1.99.99
    ## explicit
    -- go.moddrop --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_nopkgs.txt

    cd subdir
    
    # 'go get' on empty patterns that are necessarily local to the module
    # should warn that the patterns are empty, exactly once.
    
    go get ./...
    stderr -count=1 'matched no packages'
    
    go get ./...
    stderr -count=1 'matched no packages'
    
    # 'go get' on patterns that could conceivably match nested modules
    # should report a module resolution error.
    
    go get example.net/emptysubdir/... # control case
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_lazy_new_import.txt

    #
    # Where a/x and a/y are disjoint packages, but both contained in module a.
    #
    # The module dependency graph initially looks like:
    #
    # lazy ---- a.1 ---- b.1
    #              \
    #               c.1
    
    
    cp go.mod go.mod.old
    cp lazy.go lazy.go.old
    go mod tidy
    cmp go.mod go.mod.old
    
    # Before adding a new import, the go.mod file should
    # enumerate modules for all packages already imported.
    go list all
    cmp go.mod go.mod.old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 27 23:27:52 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.8/plexus-1.0.8.pom

      </organization>
      <modules>
        <!--
    
        Until the bug is fixed in Maven which is pulling in the trunk to the
        appserver build.
        <module>plexus-appserver</module>
        -->
        <module>plexus-archetypes</module>
        <module>plexus-examples</module>
        <module>plexus-components</module>
        <module>plexus-component-factories</module>
        <module>plexus-containers</module>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/managed-profile-dependency/pom.xml

      <name>Maven Integration Test :: MNG-4034</name>
      <description>
        Verify that dependencies defined in profiles are subject to the dependency management of the parent.
      </description>
    
      <modules>
        <module>sub</module>
      </modules>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <groupId>org.apache.maven.its</groupId>
            <artifactId>maven-core-it-support</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/build.go

    }
    
    // findModule searches for the module that contains the package at path.
    // If the package was loaded, its containing module and true are returned.
    // Otherwise, module.Version{} and false are returned.
    func findModule(ld *loader, path string) (module.Version, bool) {
    	if pkg, ok := ld.pkgCache.Get(path); ok {
    		return pkg.mod, pkg.mod != module.Version{}
    	}
    	return module.Version{}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_dot.txt

    cd subdir
    ! go list
    ! stderr 'cannot find module providing package'
    stderr '^no Go files in '$WORK'[/\\]gopath[/\\]src[/\\]dir[/\\]subdir$'
    cd ..
    
    # golang.org/issue/30590: if a package is found in the filesystem
    # but is not in the main module, the error message should not say
    # "cannot find module providing package", and we shouldn't try
    # to find a module providing the package.
    ! go list ./othermodule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 22:30:03 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            return IdeaFixtures.parseIml(imlFile)
        }
    
        private void iprHasModules(TestFile projectDir = buildA, String... expected) {
            def modules = ipr(projectDir).modules
            assert modules.modules.size() == expected.length
            expected.each {
                modules.assertHasModule(it)
            }
        }
    
        private void imlHasDependencies(TestFile projectDir = buildA, String... expectedModules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top