Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 263 for organisation (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/DefaultIvyPatternRepositoryLayout.java

     * At least one artifact pattern must be specified. If no Ivy patterns are specified, then the artifact patterns will be used.
     * Optionally supports a Maven style layout for the 'organisation' part, replacing any dots with forward slashes.
     */
    public class DefaultIvyPatternRepositoryLayout extends AbstractRepositoryLayout implements IvyPatternRepositoryLayout {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    String rightOp = condition.substring(equalIndex + 1).trim();
    
                    // allow organisation synonyms, like 'org' or 'organization'
                    if (leftOp.equals("org") || leftOp.equals("organization")) {
                        leftOp = "organisation";
                    }
    
                    String attrValue = dd.getAttribute(leftOp);
                    if (!rightOp.equals(attrValue)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

        public static final String REVISION_KEY = "revision";
    
        public static final String MODULE_KEY = "module";
    
        public static final String ORGANISATION_KEY = "organisation";
    
        public static final String ORGANISATION_KEY2 = "organization";
    
        public static final String ORGANISATION_PATH_KEY = "orgPath";
    
        /**
         * Selective copy of {@link IvyPatternHelper#substituteTokens(String, Map)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishAndResolveIntegrationTest.groovy

                        }
                    }
                    publications {
                        jar(IvyPublication) {
                            from components.java
                            organisation group
                            module '${lib}'
                            revision '${version}'
                        }
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/bigger-applications.md

    Stellen wir uns nun vor, dass Ihre Organisation Ihnen die Datei `app/internal/admin.py` gegeben hat.
    
    Sie enthält einen `APIRouter` mit einigen administrativen *Pfadoperationen*, die Ihre Organisation zwischen mehreren Projekten teilt.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

            given:
            setupRepositories([target, 'ivy'])
            repository('ivy') {
                "org:ivy:1.0" {
                    withModule(IvyModule) {
                        dependsOn([organisation: 'org', module: target, revision: '1.0', conf: 'runtime->compile'])
                    }
                }
            }
    
            when:
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppCustomHeaderDependencyIntegrationTest.groovy

                        }
                    }
                }
            """
        }
    
        def group(String repoType) {
            if (repoType == "ivy") {
                return "organisation"
            } else if (repoType == "maven") {
                return "groupId"
            } else {
                throw new IllegalArgumentException()
            }
        }
    
        def version(String repoType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationIntegTest.groovy

            """
    
            buildFile << """
                apply plugin: 'java'
                apply plugin: 'ivy-publish'
    
                version = '${module.revision}'
                group = '${module.organisation}'
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                    }
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

                        ivy {
                            url "${ivyRepo.uri}"
                            patternLayout {
                                artifact "[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier])(.[ext])"
                                ivy "[organisation]/[module]/[revision]/[module]-[revision].ivy"
                            }
                        }
                    }
                    publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

        public String getOrganisation() {
            return descriptor.getCoordinates().getOrganisation().get();
        }
    
        @Override
        public void setOrganisation(String organisation) {
            descriptor.getCoordinates().getOrganisation().set(organisation);
        }
    
        @Override
        public String getModule() {
            return descriptor.getCoordinates().getModule().get();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
Back to top