Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,190 for moduleB (0.1 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webserviceWtpComponent.xml

    <project-modules id="moduleCoreId" project-version="1.5.0">
    	<wb-module deploy-name="webservice">
    		<property name="context-root" value="webservice"/>
    		<wb-resource deploy-path="/WEB-INF/classes" source-path="src/main/java"/>
    		<dependent-module archiveName="api-1.0.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/api/api">
    			<dependency-type>uses</dependency-type>
    		</dependent-module>
    	</wb-module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 19:33:30 UTC 2023
    - 472 bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    	sha256SchemePrefix = "sha256:"
    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    	Get(url string, opts GetOptions) (string, error)
    	Cleanup()
    }
    
    // LocalFileCache for downloaded Wasm modules. Currently it stores the Wasm module as local file.
    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    	// Map from tagged URL to checksum
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

        }
    
        private Set<Module> allRequiredModulesOf(String... names) {
            Set<Module> modules = new HashSet<>();
            for (String name : names) {
                modules.addAll(moduleRegistry.getModule(name).getAllRequiredModules());
            }
            return modules;
        }
    
        private Set<Module> allRequiredModulesOfOptional(String moduleName) {
            Module optionalModule = moduleRegistry.findModule(moduleName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_indirect.txt

    	_ "b"
    	_ "c"
    )
    
    func main() {}
    -- a/go.mod --
    module a
    go 1.13
    require x v0.1.0
    -- a/a.go --
    package a
    -- b/go.mod --
    module b
    go 1.13
    require x v0.2.0
    -- b/b.go --
    package b
    -- c/go.mod --
    module c
    go 1.13
    -- c/c.go --
    package c
    import _ "i"
    -- x1/go.mod --
    module x
    go1.13
    require i v0.1.0
    -- x2/go.mod --
    module x
    go1.13
    -- i/go.mod --
    -- i/i.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 13 20:13:25 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. architecture/standards/0004-use-a-platform-architecture.md

    ## Decision
    
    Organize the Gradle code base into a set of coarse-grained "architecture modules".
    An architecture module is responsible for providing a coherent set of features and:
    
    - Provides a set of APIs and services for use from outside the module.
    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/workcmd/sync.go

    specified in the workspace (with use directives).
    
    The syncing is done by sequentially upgrading each of the dependency
    modules specified in a workspace module to the version in the build list
    if the dependency module's version is not already the same as the build
    list's version. Note that Minimal Version Selection guarantees that the
    build list's version of each module is always the same or higher than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_patterns.txt

    # the packages in the main module, but no other packages from the standard
    # library or active modules.
    #
    # 'go list ...' should list packages in all active modules and the standard library.
    #
    # 'go list example.com/m/...' should list packages in all modules that begin with 'example.com/m/'.
    #
    # 'go list ./...' should list only packages in the current module, not other active modules.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 03:25:01 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/modelsource/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>test.readparent</groupId>
      <artifactId>local-parent</artifactId>
      <packaging>pom</packaging>
      <version>1.0</version>
    
      <modules>
        <module>module</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 442 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_vendor_main_module_replaced.txt

    # This is a test that if one of the main modules replaces the other
    # the vendor consistency checks still pass. The replacement is ignored
    # because it is of a main module, but it is still recorded in
    # vendor/modules.txt.
    
    go work vendor
    go list all # make sure the consistency checks pass
    ! stderr .
    
    # Removing the replace causes consistency checks to fail
    cp a_go_mod_no_replace a/go.mod
    ! go list all # consistency checks fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 895 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    _Gradle Module Metadata 1.1 is supported in Gradle 6._
    
    Gradle publishes Gradle Module Metadata along with traditional metadata. Gradle Module Metadata is automatically consumed when available.
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top