Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 164 for rootfs (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		}),
    		Namespace: cfg.Namespace,
    		Scope:     scope,
    		Action:    action,
    		Groups:    []*security.Group{{Rules: rules}},
    	}
    
    	return opol
    }
    
    func convertAuthorizationPolicy(rootns string, obj *securityclient.AuthorizationPolicy) *security.Authorization {
    	pol := &obj.Spec
    
    	polTargetRef := model.GetTargetRefs(pol)
    	if len(polTargetRef) > 0 {
    		// TargetRef is not intended for ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

    1. Any pointers from unmanaged memory to the heap must be garbage
       collection roots. More specifically, any pointer must either be
       accessible through a global variable or be added as an explicit
       garbage collection root in `runtime.markroot`.
    
    2. If the memory is reused, the heap pointers must be zero-initialized
       before they become visible as GC roots. Otherwise, the GC may
       observe stale heap pointers. See "Zero-initialization versus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/math/big/natdiv.go

    or adjusting the quotient range affects the overall bound.
    
    All that said, Knuth remains the canonical reference. It is dense but packed
    full of information and references, and the proofs are simpler than many other
    presentations. The proofs above are reworkings of Knuth's to remove the
    arguments by contradiction and add explanations or steps that Knuth omitted.
    But beware of errors in older printings. Take the published errata with you.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/instances_test.go

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. pkg/istio-agent/agent.go

    	// Node identifier used by Envoy
    	ServiceNode string
    
    	// XDSRootCerts is the location of the root CA for the XDS connection. Used for setting platform certs or
    	// using custom roots.
    	XDSRootCerts string
    
    	// CARootCerts of the location of the root CA for the CA connection. Used for setting platform certs or
    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. security/pkg/pki/util/keycertbundle.go

    	opts := x509.VerifyOptions{
    		Intermediates: icp,
    		Roots:         rcp,
    	}
    	cert, err := ParsePemEncodedCertificate(certBytes)
    	if err != nil {
    		return fmt.Errorf("failed to parse cert PEM: %v", err)
    	}
    	chains, err := cert.Verify(opts)
    
    	if len(chains) == 0 || err != nil {
    		return fmt.Errorf(
    			"cannot verify the cert with the provided root chain and cert "+
    				"pool with error: %v", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/query.go

    			return m
    		}
    	} else {
    		match = func(mod module.Version, roots []string, isLocal bool) *search.Match {
    			m := search.NewMatch(pattern)
    			prefix := mod.Path
    			if MainModules.Contains(mod.Path) {
    				prefix = MainModules.PathPrefix(module.Version{Path: mod.Path})
    			}
    			for _, root := range roots {
    				if _, ok, err := dirInModule(pattern, prefix, root, isLocal); err != nil {
    					m.AddError(err)
    				} else if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_test.go

    	if err != nil {
    		t.Errorf(
    			"failed configRootCAs:\n\texpected: has no error\n\tactual:%v",
    			err,
    		)
    	}
    	if config.RootCAs == nil {
    		t.Errorf(
    			"failed configRootCAs:\n\texpected: RootCAs not equal to nil\n\tactual:%v",
    			config.RootCAs,
    		)
    	}
    }
    func TestConfigCertAndKey(t *testing.T) {
    	certFile, err := os.CreateTemp(os.TempDir(), "kubeadm-external-etcd-test-certfile")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    //
    // Support for signing other root CA has been removed - too dangerous, no clear use case.
    //
    // 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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/token/token.go

    	}
    
    	klog.V(1).Infof("[discovery] Cluster info signature and contents are valid and TLS certificate validates against pinned roots, will use API Server %q", endpoint)
    
    	return secureKubeconfig, nil
    }
    
    // buildInsecureBootstrapKubeConfig makes a kubeconfig object that connects insecurely to the API Server for bootstrapping purposes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top