Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 289 for organisation (0.42 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

                    withModule(MavenModule) {
                        parent('org', 'parent', '1.0')
                    }
                    withModule(IvyModule) {
                        extendsFrom(organisation: "org", module: "parent", revision: "1.0")
                    }
                }
            }
    
            buildFile << """
                configurations { conf }
    
                def fired = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ====
    
    Optionally, a repository with pattern layout can have its `'organisation'` part laid out in Maven style, with forward slashes replacing dots as separators. For example, the organisation `my.company` would then be represented as `my/company`.
    
    .Ivy repository with Maven compatible layout
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tests/associations_test.go

    	type Organization struct {
    		gorm.Model
    		Name string
    	}
    	type Region struct {
    		gorm.Model
    		Name          string
    		Organizations []Organization `gorm:"many2many:region_orgs;"`
    	}
    	type RegionOrg struct {
    		RegionId       uint
    		OrganizationId uint
    		Empty          myType
    	}
    	if err := DB.SetupJoinTable(&Region{}, "Organizations", &RegionOrg{}); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

          <organization>Apache Software Foundation</organization>
        </developer>
        <developer>
          <id>donaldp</id>
          <name>Peter Donald</name>
          <email>donaldp at apache dot org</email>
          <organization></organization>
        </developer>
        <developer>
          <id>costin</id>
          <name>Costin Manolache</name>
          <email>costin at apache dot org</email>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top