Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 456 for moduleA (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    Such modules, that only have a name as module description, are called _automatic module_ that export **all** their packages and can read **all** modules on the module path.
    
    A third case are traditional libraries that provide no module information at all -- for example `commons-cli:commons-cli:1.4`.
    Gradle puts such libraries on the classpath instead of the module path.
    The classpath is then treated as one module (the so called _unnamed_ module) by Java.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

                file("libs/api-1.1.jar").assertIsDifferentFrom(ivyHttpRepo.module('org.utils', 'api', '1.1').jarFile)
                file("libs/api-1.1.jar").assertIsCopyOf(module2.jarFile)
            }
    
            where:
            selector << ["1.1", "1.+"]
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "can control selection of components by module rule #rule for #selector"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/idea/IdeaModelBuilderTest.groovy

            ideaProject.modules.find { it.name == 'test-project' }.javaLanguageSettings.jdk == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings.jdk == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings.jdk == null
        }
    
        def "synched module bytecode level marked as inherited"() {
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. 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)
  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. 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)
  9. 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)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

            //then
            def dependencies = parseIml("api/api.iml").dependencies
            assert dependencies.modules.size() == 1
            dependencies.assertHasModule(['COMPILE'], "root-project-1")
    
            dependencies = parseIml("root-project-1.iml").dependencies
            assert dependencies.modules.size() == 0
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void respectsApiOfJavaLibraries() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top