Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 124 for moduleDir (0.2 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCoordinatesIntegTest.groovy

            and:
            module.assertPublishedAsJavaModule()
            module.moduleDir.file('custom-2.2.jar').assertIsCopyOf(file('build/libs/root-1.0.jar'))
    
            and:
            apiModule.assertPublishedAsJavaModule()
            apiModule.moduleDir.file('custom-api-2.jar').assertIsCopyOf(file('build/libs/root-api-1.0.jar'))
    
            and:
            resolveArtifacts(module) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/IvyGcsRepository.groovy

            return backingRepository.baseArtifactPattern
        }
    
        GcsDirectoryResource directoryList(String organisation, String module) {
            return new GcsDirectoryResource(server, bucket, backingRepository.moduleDir(organisation, module))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/IvyS3Repository.groovy

            return backingRepository.baseArtifactPattern
        }
    
        S3DirectoryResource directoryList(String organisation, String module) {
            return new S3DirectoryResource(server, bucket, backingRepository.moduleDir(organisation, module))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            failure.assertHasCause("Could not GET '${metaData.uri}'. Received status code 500 from server")
    
            when:
            metaData.expectGetMissing()
    
            def moduleDir = mavenHttpRepo.directory("group", "projectA")
            moduleDir.expectGetBroken()
    
            then:
            fails 'retrieve'
    
            and:
            failure.assertHasCause('Could not resolve group:projectA:1.+.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpModule.groovy

        MetaDataArtifact getRootMetaData() {
            return new MetaDataArtifact(server, moduleRootUriPath, backingModule)
        }
    
        MavenHttpModule allowAll() {
            server.allowGetOrHead(uriPath, backingModule.moduleDir)
            return this
        }
    
        void missing() {
            server.allowGetOrHeadMissing(pomPath)
            server.allowGetOrHeadMissing(metaDataPath)
            server.allowGetOrHeadMissing(artifactPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/MavenGcsRepository.groovy

        }
    
        GcsDirectoryResource directoryList(String organisation, String module) {
            return new GcsDirectoryResource(server, bucket, this.module(organisation, module).backingModule.moduleDir.parentFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/wasm/cache.go

    	sha := sha256.Sum256([]byte(mkey.name))
    	hashedName := hex.EncodeToString(sha[:])
    	moduleDir := filepath.Join(baseDir, hashedName)
    	if err := os.Mkdir(moduleDir, 0o755); err != nil && !os.IsExist(err) {
    		return "", err
    	}
    	return filepath.Join(moduleDir, fmt.Sprintf("%s.wasm", mkey.checksum)), nil
    }
    
    // Get returns path the local Wasm module file.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

            return backingRepository.baseArtifactPattern
        }
    
        @Override
        SftpDirectoryResource directoryList(String organisation, String module) {
            return new SftpDirectoryResource(server, backingRepository.moduleDir(organisation, module))
        }
    
        IvySftpModule module(String organisation, String module, String revision = "1.0") {
            return new IvySftpModule(this, server, backingRepository.module(organisation, module, revision))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/wasm/cache_test.go

    	t.Helper()
    	sha := sha256.Sum256([]byte(resourceName))
    	moduleDir := filepath.Join(baseDir, hex.EncodeToString(sha[:]))
    	if _, err := os.Stat(moduleDir); errors.Is(err, os.ErrNotExist) {
    		err := os.Mkdir(moduleDir, 0o755)
    		if err != nil {
    			t.Fatalf("failed to create module dir %s: %v", moduleDir, err)
    		}
    	}
    	return filepath.Join(moduleDir, filename)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpRepository.groovy

        }
    
        HttpDirectoryResource directoryList(String organisation, String module) {
            return new HttpDirectoryResource(server, "$contextPath/$organisation/$module/", backingRepository.moduleDir(organisation, module))
        }
    
        IvyHttpModule module(String organisation, String module, String revision = "1.0") {
            def path = backingRepository.getDirPath(organisation, module, revision as String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top