Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for organisation (0.18 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

            }
    
            private ResolvedCoordinates convertDeclaredCoordinates(String organization, String module, @Nullable String version) {
                if (version == null) {
                    warnings.addUnsupported(String.format("%s:%s declared without version", organization, module));
                }
    
                return ResolvedCoordinates.create(organization, module, version);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	RemoveDuplicateAltNames(&cfg.AltNames)
    
    	template := &x509.CertificateRequest{
    		Subject: pkix.Name{
    			CommonName:   cfg.CommonName,
    			Organization: cfg.Organization,
    		},
    		DNSNames:    cfg.AltNames.DNSNames,
    		IPAddresses: cfg.AltNames.IPs,
    	}
    
    	csrBytes, err := x509.CreateCertificateRequest(cryptorand.Reader, template, key)
    
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/kubelet.go

    		if len(hostnames) == 0 && len(ips) == 0 {
    			return nil
    		}
    		return &x509.CertificateRequest{
    			Subject: pkix.Name{
    				CommonName:   fmt.Sprintf("system:node:%s", nodeName),
    				Organization: []string{"system:nodes"},
    			},
    			DNSNames:    hostnames,
    			IPAddresses: ips,
    		}
    	}
    
    	m, err := certificate.NewManager(&certificate.Config{
    		ClientsetFn:             clientsetFn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	if !connected {
    		return errors.New("timed out waiting to connect to apiserver")
    	}
    	return nil
    }
    
    // requestNodeCertificate will create a certificate signing request for a node
    // (Organization and CommonName for the CSR will be set as expected for node
    // certificates) and send it to API server, then it will watch the object's
    // status, once approved by API server, it will return the API server's issued
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  5. security/pkg/pki/util/generate_cert.go

    	TTL time.Duration
    
    	// Signer certificate.
    	SignerCert *x509.Certificate
    
    	// Signer private key.
    	SignerPriv crypto.PrivateKey
    
    	// Signer private key (PEM encoded).
    	SignerPrivPem []byte
    
    	// Organization for this certificate.
    	Org string
    
    	// The size of RSA private key to be generated.
    	RSAKeySize int
    
    	// Whether this certificate is used as signing cert for CA.
    	IsCA bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    Now, let's imagine your organization gave you the `app/internal/admin.py` file.
    
    It contains an `APIRouter` with some admin *path operations* that your organization shares between several projects.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pom.xml

        <contributor>
          <name>Mike Mol (MNG-6665)</name>
        </contributor>
        <contributor>
          <name>Martin Kanters</name>
          <organization>JPoint</organization>
        </contributor>
        <contributor>
          <name>Maarten Mulders</name>
          <organization>Info Support</organization>
        </contributor>
        <contributor>
          <name>Luc Klaassen (MNG-6065)</name>
        </contributor>
        <contributor>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. security/pkg/pki/ca/ca_test.go

    		t.Errorf("Unexpected CA certificate TTL (expecting %v, actual %v)", caCertTTL, ttl)
    	}
    
    	if certOrg := rootCert.Issuer.Organization[0]; certOrg != org {
    		t.Errorf("Unexpected CA certificate organization (expecting %v, actual %v)", org, certOrg)
    	}
    
    	if len(certChainBytes) != 0 {
    		t.Errorf("Cert chain should be empty")
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [[sec:custom_gradle_distribution]]
    == Standardizing builds with a custom Gradle distribution
    
    Often enterprises want to standardize the build platform for all projects in the organization by defining common conventions or rules.
    You can achieve that with the help of initialization scripts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    ====
    <1> Make sure your project has a `group` set which is used to identify the artifacts (jar and metadata) you publish for your plugins
    in the repository of the {portal} and which is descriptive of the plugin author or the organization the plugins belong too.
    <2> Set the version of your project, which will also be used as the version of your plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top