Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for organisation (0.34 sec)

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

        }
    
        @Override
        HttpModule module(String group, String module)
    
        @Override
        HttpModule module(String group, String module, String version)
    
        HttpDirectoryResource directoryList(String organisation, String module)
    
        MetadataType getProvidesMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/DelegatingIvyModule.java

        public IvyModule withBranch(String branch) {
            backingModule.withBranch(branch);
            return t();
        }
    
        @Override
        public T dependsOn(String organisation, String module, String revision) {
            backingModule.dependsOn(organisation, module, revision);
            return t();
        }
    
        @Override
        public T dependsOn(Map<String, ?> attributes) {
            backingModule.dependsOn(attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleMetadataAwarePublishingSpec.groovy

            if (notation instanceof CharSequence) {
                return notation
            }
            if (notation instanceof IvyModule) {
                return "group: '${sq(notation.organisation)}', name: '${sq(notation.module)}', version: '${sq(notation.revision)}'"
            }
            if (notation instanceof MavenModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/metadata.md

    | `license_info`...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

    publishing {
        repositories {
            ivy { url uri("ivy-repo") }
            maven { url uri("maven-repo") }
        }
        publications {
            mainIvy(IvyPublication) {
                from components.java
                organisation 'test.org'
                module 'test-module'
                revision '1.1'
            }
            mainMaven(MavenPublication) {
                from components.java
                groupId 'test.groupId'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/certs/util.go

    // and only has the expected Subject.Organization
    func AssertCertificateHasOrganizations(t *testing.T, cert *x509.Certificate, organizations ...string) {
    	if len(cert.Subject.Organization) != len(organizations) {
    		t.Fatalf("cert contains a different number of Subject.Organization, expected %v, got %v", organizations, cert.Subject.Organization)
    	}
    	for _, organization := range organizations {
    		found := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <name>Jason van Zyl</name>
          <email>******@****.***</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Chair</role>
          </roles>
          <timezone>-5</timezone>
        </developer>
        <developer>
          <id>brett</id>
          <name>Brett Porter</name>
          <email>******@****.***</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/kubeconfig.go

    	cmd.Flags().StringVar(&clientName, "client-name", clientName, "The name of user. It will be used as the CN if client certificates are created")
    	cmd.Flags().StringSliceVar(&organizations, "org", organizations, "The organizations of the client certificate. It will be used as the O if client certificates are created")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

          <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
      <organization>
        <name>Apache Software Foundation</name>
        <url>http://www.apache.org/</url>
      </organization>
      <url>http://www.apache.org/</url>
      <repositories>
        <repository>
          <id>apache.snapshots</id>
          <name>Apache Snapshot Repository</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. pom.xml

    			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    			<distribution>repo</distribution>
    		</license>
    	</licenses>
    	<organization>
    		<name>CodeLibs Project</name>
    		<url>https://www.codelibs.org/</url>
    	</organization>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/corelib.git</connection>
    		<url>scm:git:******@****.***:codelibs/corelib.git</url>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top