Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for organisation (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            return defaultValue
        }
    
        IvyFileModule dependsOn(String organisation, String module, String revision) {
            dependsOn([organisation: organisation, module: module, revision: revision])
            return this
        }
    
        @Override
        IvyFileModule dependsOn(Map<String, ?> attributes, Module target) {
            def allAttrs = [organisation: target.group, module: target.module, revision: target.version]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileRepository.groovy

        }
    
        String getDirPath(String organisation, String module, String revision) {
            M2CompatibleIvyPatternHelper.substitute(dirPattern, organisation, module, revision, m2Compatible)
        }
    
        TestFile moduleDir(String organisation, String module) {
            return this.module(organisation, module).moduleDir.parentFile
        }
    
        IvyFileModule module(String organisation, String module, String revision = '1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/M2CompatibleIvyPatternHelper.groovy

        }
    
        static String substitute(String pattern, boolean m2Compatible, Map<String, String> tokens) {
            if (tokens.containsKey('organisation')) {
                tokens.put('organisation', organisationToken(m2Compatible, tokens.get('organisation')))
            }
            IvyPatternHelper.substituteTokens(pattern, tokens)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/RemoteIvyRepository.groovy

    interface RemoteIvyRepository extends IvyRepository {
        @Override
        RemoteIvyModule module(String organisation, String module)
    
        @Override
        RemoteIvyModule module(String organisation, String module, String revision)
    
        String getBaseIvyPattern()
    
        String getBaseArtifactPattern()
    
        RemoteResource directoryList(String organisation, String module)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

        }
    
        @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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyRepository.groovy

    interface IvyRepository extends Repository {
        String getArtifactPattern()
    
        String getIvyPattern()
    
        @Override
        IvyModule module(String organisation, String module)
    
        @Override
        IvyModule module(String organisation, String module, String revision)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 970 bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/MavenSftpRepository.groovy

        }
    
        URI getUri() {
            new URI("sftp://${server.hostAddress}:${server.port}${contextPath}")
        }
    
        MavenSftpModule module(String organisation, String module, String revision = "1.0") {
            new MavenSftpModule(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
    - 1.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpRepository.groovy

            return module(groupId, artifactId).rootMetaData
        }
    
        @Override
        HttpDirectoryResource directoryList(String organisation, String module) {
            return directory(organisation, module)
        }
    
        HttpDirectoryResource directory(String groupId, String artifactId) {
            def path = "${groupId.replace('.', '/')}/$artifactId/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

        String organisation
        String module
        String revision
        String status
        Node description
        String branch
        String resolver
        NodeList licenses
        NodeList authors
        Map<QName, String> extraInfo
    
        IvyDescriptor(File ivyFile) {
            def ivy = new XmlParser().parse(ivyFile)
            organisation = ivy.info[0].@organisation
            module = ivy.info[0].@module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top