Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for NODE_NAME (0.05 seconds)

  1. benchmarks/src/main/resources/log4j2.properties

    appender.console.type = Console
    appender.console.name = console
    appender.console.layout.type = PatternLayout
    appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c] [%node_name]%marker %m%n
    
    # Do not log at all if it is not really critical - we're in a benchmark
    rootLogger.level = error
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 31 14:54:24 GMT 2018
    - 338 bytes
    - Click Count (0)
  2. tensorflow/c/c_api_internal.h

      TF_Graph* parent;
      TF_Output* parent_inputs;
    };
    
    struct TF_OperationDescription {
      TF_OperationDescription(TF_Graph* g, const char* op_type,
                              const char* node_name)
          : node_builder(node_name, op_type, g->graph.op_registry()), graph(g) {}
    
      tensorflow::NodeBuilder node_builder;
      TF_Graph* graph;
      std::set<std::string> colocation_constraints;
    };
    
    struct TF_Operation {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 07 04:56:09 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

        String buildNumber = System.getenv('BUILD_NUMBER')
        String buildUrl = System.getenv('BUILD_URL')
        String jobName = System.getenv('JOB_NAME')
        String nodeName = System.getenv('NODE_NAME')
        String jobBranch = System.getenv('ghprbTargetBranch') ?: System.getenv('JOB_BRANCH')
    
        tag OS.current().name()
        tag Architecture.current().name()
    
        // Tag if this build is run in FIPS mode
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 20:40:34 GMT 2021
    - 4.6K bytes
    - Click Count (0)
  4. tensorflow/c/c_api.cc

        TF_EXCLUSIVE_LOCKS_REQUIRED(desc->graph->mu) {
      Node* ret = nullptr;
    
      if (desc->graph->name_map.count(desc->node_builder.node_name())) {
        status->status = InvalidArgument("Duplicate node name in graph: '",
                                         desc->node_builder.node_name(), "'");
      } else {
        if (!desc->colocation_constraints.empty()) {
          desc->node_builder.Attr(
              tensorflow::kColocationAttrName,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 102.4K bytes
    - Click Count (0)
Back to Top