Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for Roots (0.08 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    //
    // Default config, for backward compat with Citadel:
    // - if "cacerts" secret exists in istio-system, will be mounted. It may contain an optional "root-cert.pem",
    // with additional roots and optional {ca-key, ca-cert, cert-chain}.pem user-provided root CA.
    // - if user-provided root CA is not found, the Secret "istio-ca-secret" is used, with ca-cert.pem and ca-key.pem files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pkg/spiffe/spiffe.go

    		return err
    	}
    	rootCertPool, ok := v.certPools[trustDomain]
    	if !ok {
    		return fmt.Errorf("no cert pool found for trust domain %s", trustDomain)
    	}
    
    	_, err = peerCert.Verify(x509.VerifyOptions{
    		Roots:         rootCertPool,
    		Intermediates: intCertPool,
    	})
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/BUILD

                # "-Wl,--undefined-version",
                # copybara:uncomment_end(google-only)
            ],
        }),
        linkstatic = 1,
        per_os_targets = True,
        roots = [
                    "//tensorflow/c/experimental/filesystem:filesystem_interface",
                    "//tensorflow/c/experimental/stream_executor:stream_executor",
                    "//tensorflow/c:env",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. 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)
  5. src/runtime/preempt.go

    //    for a preemption request.
    //
    // 3. Asynchronous safe-points occur at any instruction in user code
    //    where the goroutine can be safely paused and a conservative
    //    stack and register scan can find stack roots. The runtime can
    //    stop a goroutine at an async safe-point using a signal.
    //
    // At both blocked and synchronous safe-points, a goroutine's CPU
    // state is minimal and the garbage collector has complete information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/cmd/doc/main.go

    		}
    		if d.importPath == pkg || strings.HasSuffix(d.importPath, pkgSuffix) {
    			return d.dir, true
    		}
    	}
    }
    
    var buildCtx = build.Default
    
    // splitGopath splits $GOPATH into a list of roots.
    func splitGopath() []string {
    	return filepath.SplitList(buildCtx.GOPATH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/crypto/tls/boring_test.go

    	if runtime.GOOS == "nacl" || runtime.GOARCH == "arm" || runtime.GOOS == "js" {
    		t.Skipf("skipping on %s/%s because key generation takes too long", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Set up some roots, intermediate CAs, and leaf certs with various algorithms.
    	// X_Y is X signed by Y.
    	R1 := boringCert(t, "R1", boringRSAKey(t, 2048), nil, boringCertCA|boringCertFIPSOK)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    			if err := c.config.EncryptedClientHelloRejectionVerify(c.connectionStateLocked()); err != nil {
    				c.sendAlert(alertBadCertificate)
    				return err
    			}
    		} else {
    			opts := x509.VerifyOptions{
    				Roots:         c.config.RootCAs,
    				CurrentTime:   c.config.time(),
    				DNSName:       c.serverName,
    				Intermediates: x509.NewCertPool(),
    			}
    
    			for _, cert := range certs[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. src/runtime/heapdump.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Implementation of runtime/debug.WriteHeapDump. Writes all
    // objects in the heap plus additional info (roots, threads,
    // finalizers, etc.) to a file.
    
    // The format of the dumped file is described at
    // https://golang.org/s/go15heapdump.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. doc/godebug.md

    Go 1.20 introduced automatic seeding of the
    [`math/rand`](/pkg/math/rand) global random number generator,
    controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed).
    
    Go 1.20 introduced the concept of fallback roots for use during certificate verification,
    controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots).
    
    Go 1.20 removed the preinstalled `.a` files for the standard library
    from the Go distribution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top