Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 759 for moduleB (0.3 sec)

  1. 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)
  2. hack/update-internal-modules.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # These are "internal" modules.  For various reasons, we want them to be
    # decoupled from their parent modules.
    MODULES=()                                                                                                                                                                   
    kube::util::read-array MODULES < <(
        git ls-files -cmo --exclude-standard -- ':!:vendor/*' ':(glob)*/**/go.work' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_import_vendor.txt

    cp correct_modules.txt vendor/modules.txt
    go build ./vendor/foo.com/internal/bar/a
    
    # For go versions < 1.23, vendored packages that are missing in modules.txt should not result in an error.
    cp 122go.mod go.mod
    
    cp incorrect_modules.txt vendor/modules.txt
    
    # go version < 1.23 and incorrect_modules is missing foo.com/internal/bar/b so the build should not fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. architecture/platforms.md

    ## Structure
    
    Each platform and module has its own source directory under [platforms/](../platforms).
    In these source directories, you will find the Gradle projects that make up the platform or module.
    
    The platforms and modules are defined using a DSL in [settings.gradle.kts](../settings.gradle.kts)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    # Gradle Module Metadata 1.0 specification
    
    Consumption of Gradle Module Metadata is automatic. However, publication needs to be enabled explicitly for any Gradle version prior to Gradle 6.
    
    Publishing Gradle Module Metadata can be enabled in the Gradle settings file (`settings.gradle`):
    
    ```
    enableFeaturePreview("GRADLE_METADATA")
    ```
    
    ## Goal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * {@return the type of path detected}. The return value is {@link JavaPathType#MODULES}
         * if the dependency is a modular JAR file or a directory containing module descriptor(s),
         * or {@link JavaPathType#CLASSES} otherwise. A JAR file without module descriptor but with
         * an "Automatic-Module-Name" manifest attribute is considered modular.
         */
        public JavaPathType getPathType() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top