Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for organisation (0.95 sec)

  1. 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)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

            Organization src = source.getOrganization();
            if (src != null) {
                Organization tgt = target.getOrganization();
                if (tgt == null) {
                    builder.organization(src);
                    builder.location("organisation", source.getLocation("organisation"));
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                rootProject.name = 'test'
            """
            def main = ivyRepo.module("org", "foo")
                .configuration("bob")
                .configuration("alice")
                .dependsOn(organisation: "org", module: "bar", revision: "1.0", conf: 'alice->extra')
            main.configurations.remove('default')
            main.publish()
    
            def dep = ivyRepo.module("org", "bar", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/resolve/DependencyResolutionStressTest.groovy

                return "text/xml"
            }
    
            @Override
            void generateContent(OutputStream outputStream) {
                outputStream << '''
    <ivy-module version="1.0">
        <info organisation="org.gradle" module="changing" revision="1.0"/>
        <!--
    '''
                writeLongString(outputStream)
                outputStream << '''
    -->
    </ivy-module>
    '''
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginPublishingIntegrationTest.groovy

                        publications {
                            getByName("pluginIvy") {
                                configure {
                                    module = "foo-new"
                                    organisation = "com.example.foo.new"
                                    revision = "1.2.3"
                                }
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 13:07:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Traditional approaches work but they are not general enough.
    For example, an organisation wants to resolve the `google-collections` -&gt; `guava` conflict resolution problem in all projects.
    It is possible to declare that certain module was replaced by other.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            }
    
            private String pathOf(HttpModule module) {
                if (module instanceof IvyHttpModule) {
                    "${module.organisation}/${module.module}/${module.version}"
                } else if (module instanceof MavenHttpModule) {
                    "${module.group}/${module.module}/${module.version}"
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
            </field>
            <!-- TODO: should this just be a single Organization element -->
            <field>
              <name>organization</name>
              <alias>organisation</alias>
              <version>3.0.0+</version>
              <description>The organization to which the contributor belongs.</description>
              <type>String</type>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    			t.Errorf("%s: output subject common name and template subject common name don't match", test.name)
    		} else if len(out.Subject.Organization) != len(template.Subject.Organization) {
    			t.Errorf("%s: output subject organisation and template subject organisation don't match", test.name)
    		} else if len(out.DNSNames) != len(template.DNSNames) {
    			t.Errorf("%s: output DNS names and template DNS names don't match", test.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    
    [[migmvn:custom_plugins]]
    == Dealing with uncommon and custom plugins
    
    You may come across Maven plugins that have no counterpart in Gradle, particularly if you or someone in your organisation has written a custom plugin.
    Such cases rely on you understanding how Gradle (and potentially Maven) works, because you will usually have to write your own plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top