Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for rootKey (0.66 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderTest.groovy

        }
    
        def "build command list independent from project hierarchy"() {
            setup:
            project.eclipse.project.buildCommands = [new BuildCommand('rootBuildCommand', ['rootKey': 'rootValue'])]
            child1.eclipse.project.buildCommands = [new BuildCommand('child1BuildCommand', ['child1Key': 'child1Value'])]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. src/crypto/x509/name_constraints_test.go

    			// sufficient to get the correct issuer name and authority
    			// key ID.
    			var parent *Certificate
    			parentKey := rootKey
    
    			for _, root := range test.roots {
    				rootCert, err := makeConstraintsCACert(root, rootName, rootKey, nil, rootKey)
    				if err != nil {
    					t.Fatalf("failed to create root: %s", err)
    				}
    
    				parent = rootCert
    				rootPool.AddCert(rootCert)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. security/pkg/pki/util/keycertbundle_test.go

    	}
    
    	rootCert, err := ParsePemEncodedCertificate(rootCertBytes)
    	if err != nil {
    		t.Errorf("failed to parsing pem for root cert %v", err)
    	}
    
    	rootKey, err := ParsePemEncodedKey(rootKeyBytes)
    	if err != nil {
    		t.Errorf("failed to parsing pem for root key cert %v", err)
    	}
    
    	caCertBytes, caCertKeyBytes, err := GenCertKeyFromOptions(CertOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/ca_test.go

    	if err != nil {
    		return nil, err
    	}
    
    	rootKey, err := util.ParsePemEncodedKey(rootKeyBytes)
    	if err != nil {
    		return nil, err
    	}
    
    	intermediateCAOpts := util.CertOptions{
    		IsCA:         true,
    		IsSelfSigned: false,
    		TTL:          time.Hour,
    		Org:          "Intermediate CA",
    		RSAKeySize:   2048,
    		SignerCert:   rootCert,
    		SignerPriv:   rootKey,
    		ECSigAlg:     ecSigAlg,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    // labels matching the supplied keys.
    //
    // rootKeys adds frames at the root of the callgraph (first key becomes new root).
    // leafKeys adds frames at the leaf of the callgraph (last key becomes new leaf).
    //
    // Returns whether there were matches found for the label keys.
    func addLabelNodes(p *profile.Profile, rootKeys, leafKeys []string, outputUnit string) (rootm, leafm bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    func PopulateRefs(schemaOf func(ref string) (*spec.Schema, bool), rootRef string) (*spec.Schema, error) {
    	visitedRefs := sets.New[string]()
    	rootSchema, ok := schemaOf(rootRef)
    	visitedRefs.Insert(rootRef)
    	if !ok {
    		return nil, fmt.Errorf("internal error: cannot resolve Ref for root schema %q: %w", rootRef, ErrSchemaNotFound)
    	}
    	return populateRefs(schemaOf, visitedRefs, rootSchema)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_main.txt

    stderr '^go: \.\. \('$WORK'[/\\]gopath\) is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get $WORK
    stderr '^go: '$WORK' is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get ../...
    stderr '^go: \.\./\.\.\. \('$WORK'[/\\]gopath([/\\]...)?\) is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    ! go get $WORK/...
    stderr '^go: '$WORK'[/\\]\.\.\. is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/filepathlite/path.go

    					out.w--
    				}
    			case !rooted:
    				// cannot backtrack, but not rooted, so append .. element.
    				if out.w > 0 {
    					out.append(Separator)
    				}
    				out.append('.')
    				out.append('.')
    				dotdot = out.w
    			}
    		default:
    			// real path element.
    			// add slash if needed
    			if rooted && out.w != 1 || !rooted && out.w != 0 {
    				out.append(Separator)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/path/path.go

    					out.w--
    				}
    			case !rooted:
    				// cannot backtrack, but not rooted, so append .. element.
    				if out.w > 0 {
    					out.append('/')
    				}
    				out.append('.')
    				out.append('.')
    				dotdot = out.w
    			}
    		default:
    			// real path element.
    			// add slash if needed
    			if rooted && out.w != 1 || !rooted && out.w != 0 {
    				out.append('/')
    			}
    			// copy element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. src/crypto/x509/example_test.go

    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/rsa"
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    )
    
    func ExampleCertificate_Verify() {
    	// Verifying with a custom list of root certificates.
    
    	const rootPEM = `
    -----BEGIN CERTIFICATE-----
    MIIEBDCCAuygAwIBAgIDAjppMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT
    MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
    YWwgQ0EwHhcNMTMwNDA1MTUxNTU1WhcNMTUwNDA0MTUxNTU1WjBJMQswCQYDVQQG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top