Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 221 for organisation (0.22 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/repositories-extensions.kt

    
    fun RepositoryHandler.googleApisJs() {
        ivy {
            name = "googleApisJs"
            setUrl("https://ajax.googleapis.com/ajax/libs")
            patternLayout {
                artifact("[organization]/[revision]/[module].[ext]")
                ivy("[organization]/[revision]/[module].xml")
            }
            metadataSources {
                artifact()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. pkg/apis/certificates/helpers.go

    	}
    	csr, err := x509.ParseCertificateRequest(block.Bytes)
    	if err != nil {
    		return nil, err
    	}
    	return csr, nil
    }
    
    var (
    	organizationNotSystemNodesErr = fmt.Errorf("subject organization is not system:nodes")
    	commonNameNotSystemNode       = fmt.Errorf("subject common name does not begin with system:node:")
    	dnsOrIPSANRequiredErr         = fmt.Errorf("DNS or IP subjectAltName is required")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml

      <parent>
        <groupId>org.apache.maven.its.mng3845</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child</artifactId>
    
      <organization>
        <name>child-org</name>
      </organization>
    
      <scm>
        <developerConnection>https://child.url/scm</developerConnection>
      </scm>
      <issueManagement>
        <url>https://child.url/issues</url>
      </issueManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. .github/dco.yml

    # Disable sign-off checking for members of the Gradle GitHub organization
    require:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Aug 11 00:03:28 UTC 2018
    - 100 bytes
    - Viewed (0)
  5. src/crypto/x509/pkix/pkix.go

    					n.Locality = append(n.Locality, value)
    				case 8:
    					n.Province = append(n.Province, value)
    				case 9:
    					n.StreetAddress = append(n.StreetAddress, value)
    				case 10:
    					n.Organization = append(n.Organization, value)
    				case 11:
    					n.OrganizationalUnit = append(n.OrganizationalUnit, value)
    				case 17:
    					n.PostalCode = append(n.PostalCode, value)
    				}
    			}
    		}
    	}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/kubeconfig.go

    	cmd.Flags().StringVar(&clientName, "client-name", clientName, "The name of user. It will be used as the CN if client certificates are created")
    	cmd.Flags().StringSliceVar(&organizations, "org", organizations, "The organizations of the client certificate. It will be used as the O if client certificates are created")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/util.go

    		servingString = fmt.Sprintf(" validServingFor=[%s]", strings.Join(validServingNames, ","))
    	}
    
    	groupString := ""
    	if len(certificate.Subject.Organization) > 0 {
    		groupString = fmt.Sprintf(" groups=[%s]", strings.Join(certificate.Subject.Organization, ","))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/limited-inheritance/pom.xml

      <name>Maven Integration Test :: MNG-3845</name>
      <description>
        Test that inheritance is all-or-nothing for certain subtrees of the POM.
      </description>
    
      <organization>
        <name>parent-org</name>
        <url>https://parent.url/org</url>
      </organization>
    
      <scm>
        <url>https://parent.url/viewvc</url>
        <connection>http://parent.url/scm</connection>
        <developerConnection>https://parent.url/scm</developerConnection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-artifactOnly/groovy/build.gradle

    // tag::artifact-only-dependency-declaration[]
    repositories {
        ivy {
            url 'https://ajax.googleapis.com/ajax/libs'
            patternLayout {
                artifact '[organization]/[revision]/[module].[ext]'
            }
            metadataSources {
                artifact()
            }
        }
    }
    
    configurations {
        js
    }
    
    dependencies {
        js 'jquery:jquery:3.2.1@js'
    }
    // end::artifact-only-dependency-declaration[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 521 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-artifactOnlyWithClassifier/kotlin/build.gradle.kts

    // tag::artifact-only-dependency-declaration[]
    repositories {
        ivy {
            url = uri("https://ajax.googleapis.com/ajax/libs")
            patternLayout {
                artifact("[organization]/[revision]/[module](.[classifier]).[ext]")
            }
            metadataSources {
                artifact()
            }
        }
    }
    
    configurations {
        create("js")
    }
    
    dependencies {
        "js"("jquery:jquery:3.2.1:min@js")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 566 bytes
    - Viewed (0)
Back to top