Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for k8ssets (0.45 sec)

  1. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

                          absl::Span<const AssetFileDef> assets,
                          std::unique_ptr<Asset>* output) {
      int asset_index = asset.asset_file_def_index();
      if (asset_index >= assets.size()) {
        return errors::FailedPrecondition(
            "SavedAsset contained asset index ", asset_index,
            " but AssetFileDef only contains ", assets.size(), " # of assets");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	tests := []struct {
    		name                     string
    		gw                       k8sbeta.Gateway
    		objects                  []runtime.Object
    		pcs                      *model.ProxyConfigs
    		values                   string
    		discoveryNamespaceFilter kubetypes.DynamicObjectFilter
    		ignore                   bool
    	}{
    		{
    			name: "simple",
    			gw: k8sbeta.Gateway{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:        "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

          }
          *handle = constants_iter->second->handle();
          return Status();
        }
        case SavedObject::kAsset: {
          const auto& assets_iter = objects.assets.find(node_id);
          if (assets_iter == objects.assets.end()) {
            return absl::FailedPreconditionError(absl::StrCat(
                "Tried to convert node id ", node_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    from tensorflow.python.saved_model import loader_impl
    from tensorflow.python.trackable import autotrackable
    from tensorflow.python.types import core
    
    
    # Name of the saved model assets directory.
    _ASSETS_DIR = 'assets'
    _ASSETS_EXTRA_DIR = 'assets.extra'
    
    # Type variable for a type that is not `None`. This represents a return value of
    # methods in `PyFunctionLibrary` that should not be `None`, as `None` represents
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. fastapi/openapi/docs.py

        Read more about it in the
        [FastAPI docs for Configure Swagger UI](https://fastapi.tiangolo.com/how-to/configure-swagger-ui/)
        and the [FastAPI docs for Custom Docs UI Static Assets (Self-Hosting)](https://fastapi.tiangolo.com/how-to/custom-docs-ui-assets/).
        """
        current_swagger_ui_parameters = swagger_ui_default_parameters.copy()
        if swagger_ui_parameters:
            current_swagger_ui_parameters.update(swagger_ui_parameters)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/certs.go

    )
    
    // CreatePKIAssets will create and write to disk all PKI assets necessary to establish the control plane.
    // If the PKI assets already exists in the target folder, they are used only if evaluated equal; otherwise an error is returned.
    func CreatePKIAssets(cfg *kubeadmapi.InitConfiguration) error {
    	klog.V(1).Infoln("creating PKI assets")
    
    	// This structure cannot handle multilevel CA hierarchies.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    s.com webview-assets.cloud9.eu-central-1.amazonaws.com webview-assets.cloud9.eu-north-1.amazonaws.com webview-assets.cloud9.eu-south-1.amazonaws.com webview-assets.cloud9.eu-west-1.amazonaws.com webview-assets.cloud9.eu-west-2.amazonaws.com webview-assets.cloud9.eu-west-3.amazonaws.com webview-assets.cloud9.me-south-1.amazonaws.com webview-assets.cloud9.sa-east-1.amazonaws.com webview-assets.cloud9.us-east-1.amazonaws.com webview-assets.cloud9.us-east-2.amazonaws.com webview-assets.cloud9.us-west-1.amazonaws.com...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

        module attributes {tf_saved_model.semantics} {
          "tf_saved_model.session_initializer"() <{initializers = []}> : () -> ()
          "tf_saved_model.asset"() <{filename = "assets/vocab_file.txt", sym_name = "__tf_saved_model_asset0_vocab_file.txt"}> : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

      "tf_saved_model.asset"() {filename = "assets/mydata.txt", sym_name = "__tf_saved_model_asset0_mydata.txt"} : () -> ()
    // Session initializer ops and asset ops untouched.
    // CHECK: "tf_saved_model.session_initializer"() <{initializers = [@NoOp]}> : () -> ()
    // CHECK: "tf_saved_model.asset"() <{filename = "assets/mydata.txt", sym_name = "__tf_saved_model_asset0_mydata.txt"}> : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // Check that the initializers list is empty.
    // CHECK: "tf_saved_model.session_initializer"()
    // CHECK-SAME: initializers = []
    
      "tf_saved_model.asset"() {filename = "assets/file.txt", sym_name = "__tf_saved_model_asset0_file.txt"} : () -> ()
    
      func.func @NoOp(%arg: tensor<!tf_type.string> {tf_saved_model.bound_input = @__tf_saved_model_asset0_file.txt})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
Back to top