Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for anchors (0.4 sec)

  1. 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)
  2. 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)
  3. pkg/apis/certificates/validation/validation.go

    	return allErrors
    }
    
    // validateTrustBundle rejects intra-block headers, blocks
    // that don't parse as X.509 CA certificates, and duplicate trust anchors.  It
    // requires that at least one trust anchor is provided.
    func validateTrustBundle(path *field.Path, in string) field.ErrorList {
    	var allErrors field.ErrorList
    
    	if len(in) > certificates.MaxTrustBundleSize {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. 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)
  5. operator/pkg/validate/common.go

    // capture wraps the expression in a capturing group.
    func capture(res ...*regexp.Regexp) *regexp.Regexp {
    	return match(`(` + expression(res...).String() + `)`)
    }
    
    // anchored anchors the regular expression by adding start and end delimiters.
    func anchored(res ...*regexp.Regexp) *regexp.Regexp {
    	return match(`^` + expression(res...).String() + `$`)
    }
    
    // ValidatorFunc validates a value.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/certificates/validation/validation_test.go

    			},
    		}, {
    			description: "invalid, no signer name, no trust anchors",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: capi.ClusterTrustBundleSpec{},
    			},
    			wantErrors: field.ErrorList{
    				field.Invalid(field.NewPath("spec", "trustBundle"), "<value omitted>", "at least one trust anchor must be provided"),
    			},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
Back to top