Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for anchors (0.12 sec)

  1. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    // that they have access to.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

    // that they have access to.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache.go

    	existingCerts := pkiutil.PemCertBytestoString(sc.configTrustBundle)
    	sc.configTrustBundleMutex.RUnlock()
    	anchors := sets.New[string]()
    	for _, cert := range existingCerts {
    		anchors.Insert(cert)
    	}
    	for _, cert := range rootCerts {
    		anchors.Insert(cert)
    	}
    	anchorBytes := []byte{}
    	for _, cert := range sets.SortedList(anchors) {
    		anchorBytes = pkiutil.AppendCertByte(anchorBytes, []byte(cert))
    	}
    	return anchorBytes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                }
            }
        }
    
        private void addAnchorsForHeadings(Document document) {
            // add anchors for all of the headings
            for (Element heading : document.body().select("h2,h3,h4")) {
                String anchorName = heading.text().toLowerCase().replaceAll(" ", "-");
                heading.attr("id", anchorName);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pilot/pkg/trustbundle/trustbundle.go

    		if err != nil {
    			trustBundleLog.Errorf("unable to fetch trust Anchors from endpoint %s: %s", endpoint, err)
    			continue
    		}
    		certs := trustDomainAnchorMap[currentTrustDomain]
    		for _, cert := range certs {
    			certStr := string(pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: cert.Raw}))
    			trustBundleLog.Debugf("from endpoint %v, fetched trust anchor cert: %v", endpoint, certStr)
    			remoteCerts = append(remoteCerts, certStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/main_test.go

    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	// Add alternate root certificate to list of trusted anchors
    	script := path.Join(env.IstioSrc, "samples/certs", "root-cert-alt.pem")
    	rootPEM, err := cert.LoadCert(script)
    	if err != nil {
    		return
    	}
    
    	cfgYaml := tmpl.MustEvaluate(`
    values:
      pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        "name: 'TFLite_Detection_PostProcess' input_arg: { name: "
        "'raw_outputs/box_encodings' type: DT_FLOAT } input_arg: { name: "
        "'raw_outputs/class_predictions' type: DT_FLOAT } input_arg: { name: "
        "'anchors' type: DT_FLOAT } output_arg: { name: "
        "'TFLite_Detection_PostProcess' type: DT_FLOAT } output_arg: { name: "
        "'TFLite_Detection_PostProcess:1' type: DT_FLOAT } output_arg: { name: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/base.css

        }
    
        /*
          Pushes the section headings to just below the top nav bar when a user
          navigates directly to section anchors. It doesn't work if you try
          to apply the padding and margin to the `h` elements directly.
         */
        .chapter a[name],
        .chapter .anchor {
            padding-top: 60px;
            margin-top: -60px;
            text-decoration: none;
            border: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    	WaitForCacheSync() error
    	// Returns hostutil.HostUtils
    	GetHostUtil() hostutil.HostUtils
    
    	// Returns trust anchors from the named ClusterTrustBundle.
    	GetTrustAnchorsByName(name string, allowMissing bool) ([]byte, error)
    
    	// Returns trust anchors from the ClusterTrustBundles selected by signer
    	// name and label selector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top