Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for organisation (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds a resolver that looks into a number of directories for artifacts. The artifacts are expected to be located in the
         * root of the specified directories. The resolver ignores any group/organization information specified in the
         * dependency section of your build script. If you only use this kind of resolver you might specify your
         * dependencies like <code>":junit:4.4"</code> instead of <code>"junit:junit:4.4"</code>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/apis/certificates/v1beta1/defaults_test.go

    		u, err := url.ParseRequestURI(s)
    		if err != nil {
    			panic(err)
    		}
    		uris[i] = u
    	}
    	template := &x509.CertificateRequest{
    		Subject: pkix.Name{
    			CommonName:   opts.cn,
    			Organization: []string{opts.org},
    		},
    		IPAddresses:    opts.ipAddresses,
    		DNSNames:       opts.dnsNames,
    		EmailAddresses: opts.emailAddresses,
    		URIs:           uris,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/certlist.go

    		CAName:   "ca",
    		config: pkiutil.CertConfig{
    			Config: certutil.Config{
    				CommonName:   kubeadmconstants.APIServerKubeletClientCertCommonName,
    				Organization: []string{kubeadmconstants.ClusterAdminsGroupAndClusterRoleBinding},
    				Usages:       []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    In that case, it might be convenient to ignore some dependencies because you always want to use the latest version for those.
    An example is the internal dependencies in an organization which should always use the latest version as opposed to third party dependencies which have a different upgrade cycle.
    
    WARNING: This feature can break reproducibility and should be used with caution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    [[sec:sharing-catalogs]]
    == Sharing catalogs
    
    Version catalogs are used in a single build (possibly multi-project build) but may also be shared between builds.
    For example, an organization may want to create a catalog of dependencies that different projects, from different teams, may use.
    
    [[sec:importing-catalog-from-file]]
    === Importing a catalog from a TOML file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/crypto/tls/boring_test.go

    	parentOrg := ""
    	if i := strings.Index(org, "_"); i >= 0 {
    		org = org[:i]
    		parentOrg = name[i+1:]
    	}
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			Organization: []string{org},
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Unix(0, 0),
    
    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pom.xml

    			<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    			<distribution>repo</distribution>
    		</license>
    	</licenses>
    	<organization>
    		<name>CodeLibs</name>
    		<url>https://fess.codelibs.org/</url>
    	</organization>
    	<issueManagement>
    		<url>https://github.com/codelibs/fess/issues</url>
    	</issueManagement>
    	<scm>
    		<connection>scm:git:******@****.***:codelibs/fess.git</connection>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    	s := "x509: certificate signed by unknown authority"
    	if e.hintErr != nil {
    		certName := e.hintCert.Subject.CommonName
    		if len(certName) == 0 {
    			if len(e.hintCert.Subject.Organization) > 0 {
    				certName = e.hintCert.Subject.Organization[0]
    			} else {
    				certName = "serial:" + e.hintCert.SerialNumber.String()
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = businessCategory,
                        value = "Private Organization",
                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = serialNumber,
                        value = "4699855",
                      ),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    This plugin-based approach allows Gradle to be lightweight and modular.
    It also promotes code reuse and maintainability, as plugins can be shared across projects or within an organization.
    
    Before reading this chapter, it's recommended that you first read <<gradle_directories.adoc#gradle_directories,Learning The Basics>> and complete the <<partr1_gradle_init.adoc#partr1_gradle_init,Tutorial>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top