Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 221 for organisation (0.28 sec)

  1. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/fixtures/IvyGcsRepository.groovy

        }
    
        @Override
        IvyGcsModule module(String organisation, String module) {
            return new IvyGcsModule(server, backingRepository.module(organisation, module), repositoryPath, bucket)
        }
    
        @Override
        IvyGcsModule module(String organisation, String module, String version) {
            return new IvyGcsModule(server, backingRepository.module(organisation, module, version), repositoryPath, bucket)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K 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. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/local/ivy/LocallyAvailableResourceFinderFactory.java

            addForPattern(finders, "artifacts-26/filestore/[organisation]/[module](/[branch])/[revision]/[type]/*/[artifact]-[revision](-[classifier])(.[ext])");
    
            // 1.5
            addForPattern(finders, "artifacts-24/filestore/[organisation]/[module](/[branch])/[revision]/[type]/*/[artifact]-[revision](-[classifier])(.[ext])");
    
            // 1.4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/DefaultIvyDependency.java

        public DefaultIvyDependency(
            String organisation,
            String module,
            String revision,
            String confMapping,
            boolean transitive,
            @Nullable String revConstraint,
            Set<DependencyArtifact> artifacts,
            Set<ExcludeRule> excludeRules
        ) {
            this.organisation = organisation;
            this.module = module;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/IvyS3Repository.groovy

        }
    
        @Override
        IvyS3Module module(String organisation, String module) {
            return new IvyS3Module(server, backingRepository.module(organisation, module), repositoryPath, bucket)
        }
    
        @Override
        IvyS3Module module(String organisation, String module, String revision) {
            return new IvyS3Module(server, backingRepository.module(organisation, module, revision), repositoryPath, bucket)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionListerTest.groovy

            inputPattern                                  | repoPath
            "/[organisation]/[revision]"                  | "/org.acme/"
            "/[organization]/[revision]"                  | "/org.acme/"
            "/[module]/[revision]"                        | "/proj1/"
            "/[module]/[revision]-lib.[ext]"              | "/proj1/"
            "/[organisation]/[module]/[revision]"         | "/org.acme/proj1/"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePatternTest.groovy

            'org.gradle' | 'test' | '1.0'   | 'prefix/[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])' | 'prefix/org.gradle/test/1.0'
            'org.gradle' | 'test' | '1.1'   | 'prefix/[organisation]/[module]/[revision]/[artifact]-[revision]-artifact.bin'           | 'prefix/org.gradle/test/1.1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishValidationIntegTest.groovy

            def status = identifier.safeForFileName().decorate("status")
            def module = ivyRepo.module(organisation, moduleName, version)
    
            settingsFile << "rootProject.name = '${sq(moduleName)}'"
            buildFile.text = """
                apply plugin: 'ivy-publish'
                apply plugin: 'java'
    
                group = '${sq(organisation)}'
                version = '${sq(version)}'
    
                println project.version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top