Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for cpp_config (0.18 sec)

  1. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.cc

    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.h"
    
    #include "absl/strings/str_split.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    CppConfig::CppConfig(const string &category, const string &name_space)
        : category(category),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/renderers/namespace_renderer.cc

        : Renderer(context) {}
    
    void NamespaceRenderer::Open() {
      for (const string& ns : context_.cpp_config.namespaces) {
        CodeLine("namespace " + ns + " {");
      }
    }
    
    void NamespaceRenderer::Close() {
      for (auto it = context_.cpp_config.namespaces.rbegin();
           it != context_.cpp_config.namespaces.rend(); ++it) {
        CodeLine("}  // namespace " + *it);
      }
    }
    
    }  // namespace cpp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_test.cc

    #include "tensorflow/c/experimental/ops/gen/common/path_config.h"
    #include "tensorflow/c/experimental/ops/gen/common/source_code.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.h"
    #include "tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_context.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/guard_renderer.cc

      string self_path = io::JoinPath(context_.path_config.tf_root_dir,
                                      context_.path_config.tf_output_dir,
                                      context_.cpp_config.unit + "_ops.h");
      string with_underscores(self_path);
      std::replace(with_underscores.begin(), with_underscores.end(), '/', '_');
      std::replace(with_underscores.begin(), with_underscores.end(), '.', '_');
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/renderers/include_renderer.cc

      BlankLine();
    }
    
    string IncludeRenderer::SelfHeaderPath() const {
      return io::JoinPath(context_.path_config.tf_root_dir,
                          context_.path_config.tf_output_dir,
                          context_.cpp_config.unit + "_ops.h");
    }
    
    void IncludeRenderer::Include(const string &tf_file_path) {
      CodeLine("#include \"$0\"",
               io::JoinPath(context_.path_config.tf_prefix_dir, tf_file_path));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tools/packaging/common/gcp_envoy_bootstrap.json

          {{ end }}
        },
        "metadata": {{ .meta_json_str }}
      },
      "dynamic_resources": {
        "lds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "cds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "transport_api_version": "V3",
          "grpc_services": [
            {
              "google_grpc": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/tracing_none_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/default_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_datadog_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_zipkin_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top