Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for organisation (0.21 sec)

  1. src/database/sql/example_service_test.go

    		defer cancel()
    
    		id := 5
    		org := 10
    		var name string
    		err := db.QueryRowContext(ctx, `
    select
    	p.name
    from
    	people as p
    	join organization as o on p.organization = o.id
    where
    	p.id = :id
    	and o.id = :org
    ;`,
    			sql.Named("id", id),
    			sql.Named("org", org),
    		).Scan(&name)
    		if err != nil {
    			if err == sql.ErrNoRows {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:21:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.organization.name", "CodeLibs");
            defaultSettings.put("onelogin.saml2.organization.displayname", "Fess");
            defaultSettings.put("onelogin.saml2.organization.url", "https://fess.codelibs.org/");
            defaultSettings.put("onelogin.saml2.organization.lang", "");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    				}
    
    				// Assert Organizations
    				if spec.ClientCertAuth == nil || !reflect.DeepEqual(spec.ClientCertAuth.Organizations, assertion.organizations) {
    					t.Errorf("getKubeConfigSpecs for %s Organizations is %v, expected %v", assertion.kubeConfigFile, spec.ClientCertAuth.Organizations, assertion.organizations)
    				}
    
    				// Assert EncryptionAlgorithm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certs_test.go

    	}
    
    	csr, _, err := NewCSR(kubeadmCert, cfg)
    
    	if err != nil {
    		t.Errorf("invalid signature on CSR: %v", err)
    	}
    
    	assert.ElementsMatch(t, certConfig.Organization, csr.Subject.Organization, "organizations not equal")
    
    	if csr.Subject.CommonName != certConfig.CommonName {
    		t.Errorf("expected common name %q, got %q", certConfig.CommonName, csr.Subject.CommonName)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    func writeTestCertificate(t *testing.T, dir, name string, caCert *x509.Certificate, caKey crypto.Signer, organization []string, notBefore, notAfter time.Time) *x509.Certificate {
    	cert, key, err := pkiutil.NewCertAndKey(caCert, caKey, makeTestCertConfig(organization, notBefore, notAfter))
    	if err != nil {
    		t.Fatalf("couldn't generate certificate: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/test/kubeconfig/util.go

    // the given KubeConfig object contains a clientCert that refers to a specific client name, is signed by the expected CA, includes the expected organizations
    func AssertKubeConfigCurrentAuthInfoWithClientCert(t *testing.T, config *clientcmdapi.Config, signinCa *x509.Certificate, expectedNotAfter time.Time, expectedClientName string, expectedOrganizations ...string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    == 3. Local plugins
    
    Custom or local plugins are developed and used within a specific project or organization.
    These plugins are not shared publicly and are tailored to the specific needs of the project or organization.
    
    Local plugins can encapsulate common build logic, provide integrations with internal systems or tools, or abstract complex functionality into reusable components.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

                    }
                }
                developers {
                    developer {
                        name = "The Gradle team"
                        organization = "Gradle Inc."
                        organizationUrl = "https://gradle.org"
                    }
                }
                scm {
                    connection = "scm:git:git://github.com/gradle/gradle.git"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/metadata.md

    | `license_info` | `dict`...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. 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)
Back to top