Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for text_format (0.15 sec)

  1. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

    {
      "application_log_config": {
        "log_format": {
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
        }
      },
      "node": {
        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

    {
      "application_log_config": {
        "log_format": {
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
        }
      },
      "node": {
        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

    {
      "application_log_config": {
        "log_format": {
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
        }
      },
      "node": {
        "id": "sidecar~1.2.3.4~foo~bar",
        "cluster": "istio-proxy",
        "locality": {
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. tools/packaging/common/envoy_bootstrap.json

          "json_format": {
            "time": "%Y-%m-%dT%T.%fZ",
            "level": "%l",
            "scope": "envoy %n",
            "msg": "%j",
            "caller": "%g:%#",
            "thread": "%t"
          }
    {{- else }}
            "text_format": "%Y-%m-%dT%T.%fZ\t%l\tenvoy %n %g:%#\t%v\tthread=%t"
    {{- end }}
        }
      },
      "node": {
        "id": "{{ .nodeID }}",
        "cluster": "{{ .cluster }}",
        "locality": {
          {{- if .region }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

    import os
    import re
    from typing import Mapping, Optional, Sequence
    
    from absl.testing import parameterized
    import numpy as np
    
    from google.protobuf import text_format
    from tensorflow.compiler.mlir.quantization.common.python import testing
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as qc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/tests/module_test.cc

      const std::string pb_txt = R"pb(
        user_object {
          identifier: "trackable_list_wrapper"
          version { producer: 1 min_consumer: 1 }
        }
      )pb";
    
      ASSERT_TRUE(::tensorflow::protobuf::TextFormat::ParseFromString(
          pb_txt, &saved_object_proto));
      TF_ASSERT_OK_AND_ASSIGN(Handle result,
                              BuildSavedUserObject(saved_object_proto));
      EXPECT_EQ(Cast<tf::libtf::List>(result)->size(), 0);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def_test.cc

    namespace {
    
    using ::tensorflow::GraphDef;
    using ::tensorflow::NodeDef;
    using ::testing::SizeIs;
    using ::testing::StrEq;
    using ::tsl::protobuf::TextFormat;
    
    TEST(GraphDefTest, MutateNodeDefsMutatesTopLevelNodeDefs) {
      GraphDef graph_def;
      ASSERT_TRUE(TextFormat::ParseFromString(R"pb(
                                                node { name: "foo" }
                                              )pb",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 28 18:38:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

    using ::testing::HasSubstr;
    using ::testing::IsEmpty;
    using ::testing::SizeIs;
    using ::testing::StrEq;
    using ::tsl::protobuf::TextFormat;
    using ::tsl::testing::IsOk;
    using ::tsl::testing::StatusIs;
    
    TEST(CreateExportedModelTest, CreateExportedModelBasicFieldsSet) {
      GraphDef graph_def{};
      ASSERT_TRUE(
          TextFormat::ParseFromString(R"pb(node { name: "foo" })pb", &graph_def));
    
    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/cc/framework/cc_op_gen_test.cc

    TEST(CcOpGenTest, TestVisibilityChangedToHidden) {
      const string api_def = R"(
    op {
      graph_op_name: "Foo"
      visibility: HIDDEN
    }
    )";
      Env* env = Env::Default();
      OpList op_defs;
      protobuf::TextFormat::ParseFromString(kBaseOpDef, &op_defs);  // NOLINT
      ApiDefMap api_def_map(op_defs);
    
      string h_file_text, internal_h_file_text;
      // Without ApiDef
      GenerateCcOpFiles(env, op_defs, api_def_map, &h_file_text,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 20:04:30 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/test_lift_quantizable_spots_as_functions_with_quantization_specs.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/testing/passes.h.inc"
    
    namespace {
    
    using ::stablehlo::quantization::QuantizationSpecs;
    using ::tsl::protobuf::TextFormat;
    // NOLINTNEXTLINE(misc-include-cleaner) - Required for OSS.
    using ::tsl::protobuf::io::ArrayInputStream;
    
    // Empty (default) `QuantizationSpecs` proto.
    constexpr absl::string_view kSpecsEmpty = R"pb(specs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 23:21:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top