Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NODE_NAME (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          attr_val: Value of the attr_name to check.
          node_name: Name of the node to match. Accepts regex2 format.
    
        Returns:
          True if there exists a node whose name matches `op_name` and 'attr_val' if
          'attr_name' is given.
        """
    
        def match_node_name(name):
          if not node_name:
            return True
          compiled_regex = re.compile(node_name)
          match = re.fullmatch(compiled_regex, name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      local nodes_stats="${KUBECTL} --kubeconfig '${CERT_DIR}/admin.kubeconfig' get nodes"
      local node_name=$HOSTNAME_OVERRIDE
      local system_node_wait_time=60
      local interval_time=2
      kube::util::wait_for_success "$system_node_wait_time" "$interval_time" "$nodes_stats | grep $node_name"
      if [ $? == "1" ]; then
        echo "time out on waiting $node_name exist"
        exit 1
      fi
    
      local system_node_ready_time=300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
      }
    
      struct EdgeInfo {
        absl::string_view node_name;
        std::optional<absl::string_view> cluster_name;
    
        absl::string_view GetClusterName() const {
          return cluster_name ? *cluster_name : "[none]";
        }
    
        std::pair<absl::string_view, std::optional<absl::string_view>> AsPair()
            const {
          return {node_name, cluster_name};
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      # try creating again just in case.
      New-Item $fluentd_config_dir -ItemType 'directory' -Force | Out-Null
    
      $config = $FLUENTD_CONFIG.replace('NODE_NAME', (hostname))
      $config | Out-File -FilePath $fluentd_config_file -Encoding ASCII
      Log-Output "Wrote fluentd logging config to $fluentd_config_file"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top