Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for organisation (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  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. src/crypto/x509/x509.go

    //	  iso(1) identified-organization(3) certicom(132) curve(0) 33 }
    //
    //	secp256r1 OBJECT IDENTIFIER ::= {
    //	  iso(1) member-body(2) us(840) ansi-X9-62(10045) curves(3)
    //	  prime(1) 7 }
    //
    //	secp384r1 OBJECT IDENTIFIER ::= {
    //	  iso(1) identified-organization(3) certicom(132) curve(0) 34 }
    //
    //	secp521r1 OBJECT IDENTIFIER ::= {
    //	  iso(1) identified-organization(3) certicom(132) curve(0) 35 }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	       -out ca.crt \
    	       -subj "/C=US/ST=My State/L=My City/O=My Org/O=My Org 1/O=My Org 2/CN=ROOT CA WITH GROUPS"
    	   openssl x509 -in ca.crt -text
    	*/
    
    	// A certificate with multiple organizations.
    	caWithGroups = `Certificate:
        Data:
            Version: 3 (0x2)
            Serial Number:
                bc:57:6d:0b:7c:ff:cb:52
        Signature Algorithm: sha256WithRSAEncryption
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    			caCert := &x509.Certificate{}
    			config := &CertConfig{
    				Config: certutil.Config{
    					CommonName:   "test",
    					Organization: []string{"test"},
    					Usages:       []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    				},
    			}
    			_, _, err := NewCertAndKey(caCert, rt.key, config)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top