Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Roots (0.06 sec)

  1. src/crypto/x509/verify_test.go

    			}
    			root, err := ParseCertificate(rootDER)
    			if err != nil {
    				t.Fatalf("failed to parse certificate: %s", err)
    			}
    			roots := NewCertPool()
    			roots.AddCert(root)
    
    			_, err = root.Verify(VerifyOptions{Roots: roots, KeyUsages: tc.verifyEKUs})
    			if err == nil && !tc.succeed {
    				t.Error("verification succeed")
    			} else if err != nil && tc.succeed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		all = append(all, p)
    	}
    	for _, root := range roots {
    		walk(root)
    	}
    	return all
    }
    
    // TestPackageList returns the list of packages in the dag rooted at roots
    // as visited in a depth-first post-order traversal, including the test
    // imports of the roots. This ignores errors in test packages.
    func TestPackageList(ctx context.Context, opts PackageOpts, roots []*Package) []*Package {
    	seen := map[*Package]bool{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. okhttp-android/src/main/baseline-prof.txt

    HSPLokio/_UtilKt;->arrayRangeEquals([BI[BII)Z
    HSPLokio/_UtilKt;->checkOffsetAndCount(JJJ)V
    HSPLokio/internal/ResourceFileSystem$Companion;-><init>(Landroidx/lifecycle/viewmodel/R$id;)V
    HSPLokio/internal/ResourceFileSystem$roots$2;-><init>(Ljava/lang/ClassLoader;)V
    HSPLokio/internal/ResourceFileSystem;-><clinit>()V
    HSPLokio/internal/ResourceFileSystem;-><init>(Ljava/lang/ClassLoader;Z)V
    HSPLokio/internal/_BufferKt;-><clinit>()V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            map = new HashMap();
    
            if (dfs.isTrustedDomain(getServer(), auth)) {
                /* The server name is actually the name of a trusted
                 * domain. Add DFS roots to the list.
                 */
                try {
                    entries = doDfsRootEnum();
                    for (int ei = 0; ei < entries.length; ei++) {
                        e = entries[ei];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

            "properties": {
              "caBundle": {
                "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.",
                "format": "byte",
                "type": "string",
                "x-kubernetes-list-type": "atomic"
              },
              "group": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

            "properties": {
              "caBundle": {
                "description": "caBundle is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.",
                "format": "byte",
                "type": "string"
              },
              "service": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    function log-init {
      # Used by log-* functions.
      LOG_CLUSTER_ID=$(get-metadata-value 'instance/attributes/cluster-uid' 'get-metadata-value-error')
      LOG_INSTANCE_NAME=$(hostname)
      LOG_BOOT_ID=$(journalctl --list-boots | grep -E '^ *0' | awk '{print $2}')
      declare -Ag LOG_START_TIMES
      declare -ag LOG_TRAP_STACK
    
      LOG_STATUS_STARTED='STARTED'
      LOG_STATUS_COMPLETED='COMPLETED'
      LOG_STATUS_ERROR='ERROR'
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top