Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 463 for b0Bundle (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    	// This is a noop on static providers.
    	AddListener(listener Listener)
    }
    
    // CAContentProvider provides ca bundle byte content
    type CAContentProvider interface {
    	Notifier
    
    	// Name is just an identifier.
    	Name() string
    	// CurrentCABundleContent provides ca bundle byte content. Errors can be
    	// contained to the controllers initializing the value. By the time you get
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pkg/spiffe/spiffe_test.go

    			errContains: `unexpected status: 503, fetching bundle: {"error": "system down"}`,
    		},
    		{
    			name:        "Bundle contains no certificate",
    			in:          input1,
    			extraCerts:  serverCerts,
    			statusCode:  http.StatusOK,
    			body:        invalidSpiffeX509Bundle,
    			errContains: "expected 1 certificate in x509-svid entry 0; got 0",
    		},
    		{
    			name:        "Bundle cannot be decoded",
    			in:          input1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    	//
    	// +optional
    	SignerName string `json:"signerName,omitempty" protobuf:"bytes,1,opt,name=signerName"`
    
    	// trustBundle contains the individual X.509 trust anchors for this
    	// bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.
    	//
    	// The data must consist only of PEM certificate blocks that parse as valid
    	// X.509 certificates.  Each certificate must include a basic constraints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/groovy/settings.gradle

    rootProject.name = 'cacheable-bundle'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/settings.gradle.kts

    rootProject.name = "cacheable-bundle"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 38 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/tests/cacheableBundle-caching.out

    > Task :bundle FROM-CACHE...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 26 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

      // using a `spec.signerName=NAME` field selector.
      //
      // +optional
      optional string signerName = 1;
    
      // trustBundle contains the individual X.509 trust anchors for this
      // bundle, as PEM bundle of PEM-wrapped, DER-formatted X.509 certificates.
      //
      // The data must consist only of PEM certificate blocks that parse as valid
      // X.509 certificates.  Each certificate must include a basic constraints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization_test.cc

      ASSERT_THAT(tmp_saved_model_dir, IsOk());
    
      // Dummy SavedModelBundle to pass a non-nullptr argument.
      SavedModelBundle bundle{};
      QuantizationConfig config;
      const absl::StatusOr<mlir::ModuleOp> quantized_module_op = RunQuantization(
          /*saved_model_bundle=*/&bundle, *tmp_saved_model_dir,
          /*saved_model_tags=*/{}, config,
          /*quantization_py_function_lib=*/nullptr, /*module_op=*/{});
      EXPECT_THAT(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/tests/cacheableBundleTask.out

    > Task :bundle FROM-CACHE
    
    > Task :printBundle
    console.log('a');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 83 bytes
    - Viewed (0)
  10. tests/fuzz/pki_fuzzer.go

    	if err != nil {
    		return 0
    	}
    	_, err = rootCertFile.Write(rootCertFileBytes)
    	if err != nil {
    		return 0
    	}
    	bundle, err := util.NewVerifiedKeyCertBundleFromFile("certfile", "privKeyFile", []string{"certChainFile"}, "rootCertFile")
    	if err != nil {
    		return 0
    	}
    	_, err = bundle.CertOptions()
    	if err == nil {
    		panic("Ran successfully")
    	}
    
    	newCertFile, err := os.Create("newCertfile")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 14:00:25 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top