Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 82 for b0Bundle (0.23 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                    module('org.gradle.test:lib:1.0')
                    module('org.gradle.test:lib2:1.0')
                }
            }
        }
    
        void "overriding the version of a bundle overrides the version of all dependencies of the bundle"() {
            tomlFile << """[libraries]
    lib = {group = "org.gradle.test", name="lib", version.require="1.0"}
    lib2.module = "org.gradle.test:lib2"
    lib2.version = "1.0"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      });
    
      std::string result;
      std::optional<tensorflow::Session *> session = std::nullopt;
      if (bundle) session = bundle->GetSession();
      auto status = tensorflow::ConvertTFExecutorToTFLOrFlatbuffer(
          module.value().get(), output_mlir, toco_flags, pass_config, tags,
          /*saved_model_dir=*/"", bundle.get(), &result, serialize_stablehlo_ops);
      if (!status.ok()) {
        llvm::errs() << status.message() << '\n';
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/python/mlir.cc

        bool show_debug_info, TF_Status* status) {
      // Load the saved model into a SavedModelV2Bundle.
    
      tensorflow::SavedModelV2Bundle bundle;
      auto load_status =
          tensorflow::SavedModelV2Bundle::Load(saved_model_path, &bundle);
      if (!load_status.ok()) {
        tsl::Set_TF_Status_from_Status(status, load_status);
        return "// error";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      if (!found) {
        return tensorflow::errors::Aborted("Export type is not supported.");
      }
    
      auto bundle = std::make_unique<tensorflow::SavedModelBundle>();
      bundle = nullptr;
    
      TF_ASSIGN_OR_RETURN(
          auto module,
          ImportSavedModelOrMLIR(input_model, &context, &source_mgr, &bundle));
      if (verbose) {
        TF_RETURN_IF_ERROR(ExportModule(*module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Input properties can be overridden by specifying the same property name.
    
    .Make the bundle task cacheable
    ====
    include::sample[dir="snippets/buildCache/cacheable-bundle/kotlin",files="build.gradle.kts[tags=bundle-task]"]
    include::sample[dir="snippets/buildCache/cacheable-bundle/groovy",files="build.gradle[tags=bundle-task]"]
    ====
    
    [[sec:build_cache_configure]]
    == Configure the Build Cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

        }
    
        String versionCatalog(String group, String name) {
            return "libs.$group.$name"
        }
    
        String versionCatalogBundle(String bundle) {
            return "libs.bundles.$bundle"
        }
    
        String testFixtures(String expression) {
            return "testFixtures($expression)"
        }
    
        String platform(String expression) {
            return "platform($expression)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/controller.go

    var scope = log.RegisterScope("validationController", "validation webhook controller")
    
    type Options struct {
    	// Istio system namespace where istiod resides.
    	WatchedNamespace string
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	// Revision for control plane performing patching on the validating webhook.
    	Revision string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/python/saved_model_to_tfl_flatbuffer.cc

      auto bundle = std::make_unique<tensorflow::SavedModelBundle>();
      TF_ASSIGN_OR_RETURN(
          auto module,
          ImportSavedModel(
              model_flags.saved_model_dir(), model_flags.saved_model_version(),
              tags, absl::MakeSpan(custom_opdefs), exported_names, specs,
              !toco_flags.enable_tflite_resource_variables(), &context, &bundle));
    
      if (!model_flags.input_arrays().empty() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top