Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for organisation (0.4 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    [cols="10h,30,40,20"]
    |===
    | |Description | com.google.guava:guava:32.1.2-jre | org.junit.jupiter:junit-jupiter-api:5.9.1
    
    |Group
    |identifier of an organization
    |`com.google.guava`
    |`org.junit.jupiter`
    
    |Name
    |dependency identifier
    |`guava`
    |`junit-jupiter-api`
    
    |Version
    |version # to import
    |`32.1.2-jre`
    |`5.9.1`
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server_bootstrap_test.go

    	serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
    	if err != nil {
    		t.Fatal(err)
    	}
    	cert := &x509.Certificate{
    		SerialNumber: serialNumber,
    		Subject:      pkix.Name{Organization: []string{"Acme Co"}},
    		NotBefore:    from,
    		NotAfter:     to,
    
    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

    message MutatingWebhook {
      // 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.
      optional string name = 1;
    
      // ClientConfig defines how to communicate with the hook.
      // Required
      optional WebhookClientConfig clientConfig = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. .github/actions/people/app/main.py

    query Q($after: String) {
      user(login: "tiangolo") {
        sponsorshipsAsMaintainer(first: 100, after: $after) {
          edges {
            cursor
            node {
              sponsorEntity {
                ... on Organization {
                  login
                  avatarUrl
                  url
                }
                ... on User {
                  login
                  avatarUrl
                  url
                }
              }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 17:38:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top