Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 177 for module_ (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            if (name.equals("MINIMUM_WORKER_RUNTIME")) {
                ClassPath classpath = ClassPath.EMPTY;
                for (String module : RUNTIME_MODULES) {
                    classpath = classpath.plus(moduleRegistry.getModule(module).getImplementationClasspath());
                }
                for (String externalModule : RUNTIME_EXTERNAL_MODULES) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r29/ToolingApiEclipseModelCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=3.0")
        def "multi-module build defines different natures for each modules"() {
            given:
            buildFile << """
                project(':java-project') { apply plugin: 'java' }
                project(':groovy-project') { apply plugin: 'groovy' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    listed in the GOPATH environment variable.
    (See 'go help gopath-get' and 'go help gopath'.)
    
    When using modules, downloaded packages are stored in the module cache.
    See https://golang.org/ref/mod#module-cache.
    
    When using modules, an additional variant of the go-import meta tag is
    recognized and is preferred over those listing version control systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. maven-slf4j-wrapper/pom.xml

        <artifactId>maven</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-slf4j-wrapper</artifactId>
    
      <name>Maven SLF4J Wrapper</name>
      <description>This modules provides an ILoggerFactory interface which avoids a cyclic dependency between maven-embedder and maven-slf4j-provider.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    import gradlebuild.integrationtests.extension.IntegrationTestExtension
    import gradlebuild.integrationtests.tasks.DistributionTest
    import gradlebuild.integrationtests.tasks.IntegrationTest
    import gradlebuild.modules.extension.ExternalModulesExtension
    import gradlebuild.testing.services.BuildBucketProvider
    import org.gradle.api.Action
    import org.gradle.api.Project
    import org.gradle.api.artifacts.Configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.md5.expectPut()
            module.pom.expectPut()
            module.pom.sha1.expectPut()
            module.pom.sha256.expectPutBroken()
            module.pom.sha512.expectPutBroken()
            module.pom.md5.expectPut()
            module.moduleMetadata.expectPut()
            module.moduleMetadata.sha1.expectPut()
            module.moduleMetadata.sha256.expectPutBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    The download cannot be verified.
    
    For more information, see 'go help module-auth'.
    
    `
    
    var HelpModuleAuth = &base.Command{
    	UsageLine: "module-auth",
    	Short:     "module authentication using go.sum",
    	Long: `
    When the go command downloads a module zip file or go.mod file into the
    module cache, it computes a cryptographic hash and compares it with a known
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/EclipseModelCompositeBuildIncludeCycleCrossVersionSpec.groovy

            settingsFile << """
                rootProject.name = 'module-root'
                includeBuild('module-a')
                includeBuild('module-c')
            """
            file('module-a').mkdir()
            file('module-b').mkdir()
            file('module-c').mkdir()
            file('module-a/settings.gradle') << """
                includeBuild('../module-b')
            """
            file('module-b/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            def lib1 = mavenHttpRepo.module("com.company", "a", "1.0").publish()
            def lib2 = mavenHttpRepo.module("com.companylibs", "b", "1.0").publish()
            def lib3 = mavenHttpRepo.module("com.companyLibs", "c", "1.0").publish()
    
            def lib4 = mavenHttpRepo.module("com.company", "d", "1.0").publish()
            def lib5 = mavenHttpRepo.module("com.company", "e", "1.0").publish()
    
            tomlFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top