Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for organisation (0.17 sec)

  1. platforms/documentation/docs/build.gradle

                description = "Organize your build logic into a Gradle plugin written in Java."
                category = "Build organization"
                common {
                    from(templates.gradlePluginInJava)
                }
            }
    
            conventionPlugins {
                sampleDirectory = samplesRoot.dir("build-organization/multi-project-with-convention-plugins")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		t.Errorf("expected common name %q, got %q", expectedConfig.CommonName, cfg.CommonName)
    	}
    
    	if len(cfg.Organization) != 1 || cfg.Organization[0] != expectedConfig.Organization[0] {
    		t.Errorf("expected organization %v, got %v", expectedConfig.Organization, cfg.Organization)
    
    	}
    
    	if len(cfg.Usages) != 1 || cfg.Usages[0] != expectedConfig.Usages[0] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

        public void shouldInterpolateOrganizationNameCorrectly() throws Exception {
            String orgName = "MyCo";
    
            Model model = Model.newBuilder()
                    .name("${project.organization.name} Tools")
                    .organization(Organization.newBuilder().name(orgName).build())
                    .build();
    
            ModelInterpolator interpolator = createInterpolator();
    
            Model out = interpolator.interpolateModel(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            }
    
            return new MavenPomSpec(model, xmlTransformer);
        }
    
        private static Organization convertOrganization(MavenPomOrganization source) {
            Organization target = new Organization();
            target.setName(source.getName().getOrNull());
            target.setUrl(source.getUrl().getOrNull());
            return target;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.organization.name", "CodeLibs");
            defaultSettings.put("onelogin.saml2.organization.displayname", "Fess");
            defaultSettings.put("onelogin.saml2.organization.url", "https://fess.codelibs.org/");
            defaultSettings.put("onelogin.saml2.organization.lang", "");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				}
    
    				// Assert Organizations
    				if spec.ClientCertAuth == nil || !reflect.DeepEqual(spec.ClientCertAuth.Organizations, assertion.organizations) {
    					t.Errorf("getKubeConfigSpecs for %s Organizations is %v, expected %v", assertion.kubeConfigFile, spec.ClientCertAuth.Organizations, assertion.organizations)
    				}
    
    				// Assert EncryptionAlgorithm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

        <url>http://junit.org</url>
        <inceptionYear>2002</inceptionYear>
        <organization>
            <name>JUnit</name>
            <url>http://www.junit.org</url>
        </organization>
        <licenses>
            <license>
                <name>Eclipse Public License 1.0</name>
                <url>http://www.eclipse.org/legal/epl-v10.html</url>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs_test.go

    	}
    
    	csr, _, err := NewCSR(kubeadmCert, cfg)
    
    	if err != nil {
    		t.Errorf("invalid signature on CSR: %v", err)
    	}
    
    	assert.ElementsMatch(t, certConfig.Organization, csr.Subject.Organization, "organizations not equal")
    
    	if csr.Subject.CommonName != certConfig.CommonName {
    		t.Errorf("expected common name %q, got %q", certConfig.CommonName, csr.Subject.CommonName)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

        <url>http://junit.org</url>
        <inceptionYear>2002</inceptionYear>
        <organization>
            <name>JUnit</name>
            <url>http://www.junit.org</url>
        </organization>
        <licenses>
            <license>
                <name>Eclipse Public License 1.0</name>
                <url>http://www.eclipse.org/legal/epl-v10.html</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                licenses {
                    license {
                        name.set("GPL")
                        url.set("http://www.gnu.org/licenses/gpl.html")
                    }
                }
                organization {
                    name.set("Some Org")
                }
                developers {
                    developer {
                        name.set("Alice")
                    }
                }
                contributors {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top