Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,370 for context0 (0.17 sec)

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

    CppFileRenderer::CppFileRenderer(RendererContext context,
                                     const std::vector<OpView> &ops)
        : Renderer(context),
          guard_(context),
          name_space_(context),
          includes_(context),
          ops_(ops) {}
    
    void CppFileRenderer::Render() {
      CodeLines(copyright);
      BlankLine();
      CodeLine(machine_generated);
      BlankLine();
    
      if (context_.mode == RendererContext::kHeader) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.cc

    Renderer& Renderer::CommentLine(const string& text) {
      context_.code.AddLineWithIndent(absl::StrCat("// ", text));
      return *this;
    }
    
    Renderer& Renderer::BlockOpen(const string& text) {
      context_.code.AddLineWithIndent(absl::StrCat(text, " {"));
      context_.code.IncreaseIndent();
      return *this;
    }
    
    Renderer& Renderer::BlockClose(const string& text) {
      context_.code.DecreaseIndent();
      context_.code.AddLineWithIndent(absl::StrCat("}", text));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/CIFSContext.java

     */
    package jcifs;
    
    
    import java.net.URLStreamHandler;
    
    
    /**
     * Encapsulation of client context
     * 
     * 
     * A context holds the client configuration, shared services as well as the active credentials.
     * 
     * Usually you will want to create one context per client configuration and then
     * multiple sub-contexts using different credentials (if necessary).
     * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/include_renderer.cc

    namespace cpp {
    
    IncludeRenderer::IncludeRenderer(RendererContext context) : Renderer(context) {}
    
    void IncludeRenderer::SelfHeader() {
      Include(SelfHeaderPath());
      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");
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-empty-tensor-content.pbtxt

    Jacques Pienaar <******@****.***> 1587687343 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 587 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

    }
    
    OpRenderer::OpRenderer(RendererContext context, OpView op)
        : Renderer(context), op_(op), comment_(context, op) {}
    
    void OpRenderer::Render() {
      comment_.Render();
      if (context_.mode == RendererContext::kHeader) {
        Statement(Signature());
      } else {
        BlockOpen(Signature());
        OpImplementationRenderer(context_, op_).Render();
        BlockClose();
      }
      BlankLine();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. tests/testdata/config/rule-content-route.yaml

    Jason Wang <******@****.***> 1567028286 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 566 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/renderers/namespace_renderer.cc

    namespace cpp {
    
    NamespaceRenderer::NamespaceRenderer(RendererContext context)
        : 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);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. cni/pkg/install/testdata/kubeconfig-newhost

        server: https://50.76.2.1:443
      name: local
    contexts:
    - context:
        cluster: local
        user: istio-cni
      name: istio-cni-context
    current-context: istio-cni-context
    kind: Config
    preferences: {}
    users:
    - name: istio-cni
      user:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 01:19:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. cni/pkg/install/testdata/kubeconfig-tls

        server: https://10.96.0.1:443
      name: local
    contexts:
    - context:
        cluster: local
        user: istio-cni
      name: istio-cni-context
    current-context: istio-cni-context
    kind: Config
    preferences: {}
    users:
    - name: istio-cni
      user:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top