Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for organisation (0.26 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     *    root certificates that is distributed with the HTTP client or its platform. It may be
     *    augmented by certificates private to an organization or service.
     *
     * ### Client Authentication
     *
     * This is authentication of the client by the server during the TLS handshake. Client
     * authentication is optional.
     *
     * To perform client authentication:
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. 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)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

        }
    
        String getUrl() {
            pom?.url[0]?.text()
        }
    
        String getInceptionYear() {
            pom?.inceptionYear[0]?.text()
        }
    
        Node getOrganization() {
            return pom?.organization[0]
        }
    
        NodeList getLicenses() {
            return pom?.licenses?.license
        }
    
        NodeList getDevelopers() {
            return pom?.developers?.developer
        }
    
        NodeList getContributors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tests/integration/pilot/gateway_conformance_test.go

    					suite.GatewayTLSConformanceProfileName,
    					suite.GatewayGRPCConformanceProfileName,
    					suite.MeshHTTPConformanceProfileName,
    				),
    				Implementation: confv1.Implementation{
    					Organization: "istio",
    					Project:      "istio",
    					URL:          "https://istio.io/",
    					Version:      istioVersion,
    					Contact:      []string{"@istio/maintainers"},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. tests/integration/ambient/gateway_conformance_test.go

    					suite.GatewayTLSConformanceProfileName,
    					suite.GatewayGRPCConformanceProfileName,
    					suite.MeshHTTPConformanceProfileName,
    				),
    				Implementation: confv1.Implementation{
    					Organization: "istio",
    					Project:      "istio",
    					URL:          "https://istio.io/",
    					Version:      istioVersion,
    					Contact:      []string{"@istio/maintainers"},
    				},
    				NamespaceLabels: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. 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)
  10. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	}
    }
    
    func certToConfig(cert *x509.Certificate) certutil.Config {
    	return certutil.Config{
    		CommonName:   cert.Subject.CommonName,
    		Organization: cert.Subject.Organization,
    		AltNames: certutil.AltNames{
    			IPs:      cert.IPAddresses,
    			DNSNames: cert.DNSNames,
    		},
    		Usages: cert.ExtKeyUsage,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top