Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for organisation (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    Your plugin ID should combine components that reflect the namespace (a reasonable pointer to you or your organization) and the name of the plugin it provides.
    For example, if your Github account is named `foo` and your plugin is named `bar`, a suitable plugin ID might be `com.github.foo.bar`.
    Similarly, if the plugin was developed at the `baz` organization, the plugin ID might be `org.baz.bar`.
    
    Plugin IDs should adhere to the following guidelines:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	"name":                    "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
    	"clientConfig":            "ClientConfig defines how to communicate with the hook. Required",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  6. LICENSE

    
    Two classes (HashFunctions and PrimeFinder) included in Trove are licensed under the following terms:
    
        Copyright (c) 1999 CERN - European Organization for Nuclear Research. Permission to use, copy, modify, distribute and sell this software
        and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	"name":                    "The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.",
    	"clientConfig":            "ClientConfig defines how to communicate with the hook. Required",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Wrapper files, including the JAR file, are small.
    Adding the JAR file to version control is expected.
    Some organizations do not allow projects to submit binary files to version control, and there is no workaround available.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. cmd/sts-handlers.go

    	parentUser := "tls" + getKeySeparator() + certificate.Subject.CommonName
    
    	claims[expClaim] = UTCNow().Add(expiry).Unix()
    	claims[subClaim] = certificate.Subject.CommonName
    	claims[audClaim] = certificate.Subject.Organization
    	claims[issClaim] = certificate.Issuer.CommonName
    	claims[parentClaim] = parentUser
    	secretKey, err := getTokenSigningKey()
    	if err != nil {
    		writeSTSErrorResponse(ctx, w, ErrSTSInternalError, err)
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Task outputs can be reused between builds on one computer or even between builds running on different computers via a build cache.
    
    We have focused on the use case where users have an organization-wide remote build cache that is populated regularly by continuous integration builds.
    Developers and other continuous integration agents should load cache entries from the remote build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top