Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,821 for Bundle (0.27 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

                                              import_options, &bundle);
      if (!module_op.status().ok()) {
        return absl::InternalError(absl::StrCat("Failed to import SavedModel: ",
                                                module_op.status().ToString()));
      }
    
      return std::make_pair(std::move(*module_op), std::move(bundle));
    }
    
    absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogIntegrationTest.groovy

            buildFile << """
                plugins {
                    id("version-catalog")
                }
    
                catalog {
                    versionCatalog {
                        bundle('my', ['foo', 'bar'])
                    }
                }
                dependencies {
                    versionCatalog 'org:foo:1.0'
                    versionCatalog('org:bar') {
                        version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 9.4K bytes
    - Viewed (1)
  4. 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)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle-task/kotlin/settings.gradle.kts

    rootProject.name = "cacheable-bundle-task"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43 bytes
    - Viewed (0)
  8. pilot/pkg/trustbundle/trustbundle_test.go

    	expectTbCount(t, tb, 2, 3*time.Second, "server1(running) trustAnchor not updated in bundle")
    
    	// Test3: Stop server1
    	server1.Close()
    	// Check server1's valid trustAnchor is no longer in the trustbundle within poll frequency window
    	expectTbCount(t, tb, 1, 6*time.Second, "server1(stopped) trustAnchor not removed from bundle")
    
    	// Test4: Update with server1, server2 and mesh pem ca
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/registry/certificates/clustertrustbundle/strategy.go

    }
    
    func (strategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {}
    
    func (strategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	bundle := obj.(*certificates.ClusterTrustBundle)
    	return certvalidation.ValidateClusterTrustBundle(bundle, certvalidation.ValidateClusterTrustBundleOptions{})
    }
    
    func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         * <a href="http://www.eclemma.org/jacoco/trunk/doc/api/org/jacoco/core/analysis/ICoverageNode.ElementType.html">org.jacoco.core.analysis.ICoverageNode.ElementType</a>.
         * Valid scope values are BUNDLE, PACKAGE, CLASS, SOURCEFILE and METHOD. Defaults to BUNDLE.
         */
        @Input
        String getElement();
    
        /**
         * Sets list of elements that should be included in check.
         *
         * @param includes Inclusions
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top