Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for elsif (1.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

            output_renaming_map[retval_input_node_name] = expected_node_name
    
      for node in reversed(graph_def.node):
        if node.name in output_renaming_map:
          node.name = output_renaming_map[node.name]
        elif node.op == '_Retval':
          graph_def.node.remove(node)
        else:
          # Update the inputs referring to the pre-renaming node.
          for idx, input_name in enumerate(node.input):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. build/common.sh

      # running in a daemon-ish mode.  So if we don't have a stdin, we explicitly
      # attach stderr/stdout but don't bother asking for a tty.
      if [[ -t 0 ]]; then
        docker_run_opts+=(--interactive --tty)
      elif [[ "${detach}" == false ]]; then
        docker_run_opts+=("--attach=stdout" "--attach=stderr")
      fi
    
      local -ra docker_cmd=(
        "${DOCKER[@]}" run "${docker_run_opts[@]}" "${KUBE_BUILD_IMAGE}")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/productpage.html

                  </svg>
                  {% endfor %}
                </div>
                {% elif review.rating.error: %}
                <p class="text-red-500">{{ review.rating.error }}</p>
                {% endif %}
                {% endif %}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. hack/lib/util.sh

      # see: https://github.com/kubernetes/kubernetes/issues/87251
      sed_help="$(LANG=C sed --help 2>&1 || true)"
      if echo "${sed_help}" | grep -q "GNU\|BusyBox"; then
        SED="sed"
      elif command -v gsed &>/dev/null; then
        SED="gsed"
      else
        kube::log::error "Failed to find GNU sed as sed or gsed. If you are on Mac: brew install gnu-sed." >&2
        return 1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. cluster/common.sh

          "--embed-certs=true"
        )
      fi
    
      local user_args=()
      if [[ -n "${KUBE_BEARER_TOKEN:-}" ]]; then
        user_args+=(
         "--token=${KUBE_BEARER_TOKEN}"
        )
      elif [[ -n "${KUBE_USER:-}" && -n "${KUBE_PASSWORD:-}" ]]; then
        user_args+=(
         "--username=${KUBE_USER}"
         "--password=${KUBE_PASSWORD}"
        )
      fi
      if [[ -n "${KUBE_CERT:-}" && -n "${KUBE_KEY:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. cluster/gce/config-default.sh

    if [[ "${PREEMPTIBLE_MASTER}" == "true" ]]; then
        NODE_LABELS="${NODE_LABELS},cloud.google.com/gke-preemptible=true"
        WINDOWS_NODE_LABELS="${WINDOWS_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    elif [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
        NON_MASTER_NODE_LABELS="${NON_MASTER_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/tfcompile_test.cc

    #include "tensorflow/compiler/aot/tests/test_graph_tfvariable_sequential_updates_mlir_bridge.h"
    // Similarly, there are files for testing the MLIR based lowering of HLO to
    // object code for XLA:CPU
    #elif defined(MHLO_LOWERING_TEST)
    #include "tensorflow/compiler/aot/tests/test_graph_tfadd_mhlo_lowering.h"
    #include "tensorflow/compiler/aot/tests/test_graph_tfadd_with_ckpt_mhlo_lowering.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

    if [[ "${PREEMPTIBLE_MASTER}" = 'true' ]]; then
      NODE_LABELS="${NODE_LABELS},cloud.google.com/gke-preemptible=true"
      WINDOWS_NODE_LABELS="${WINDOWS_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    elif [[ "${PREEMPTIBLE_NODE}" = 'true' ]]; then
      NON_MASTER_NODE_LABELS="${NON_MASTER_NODE_LABELS},cloud.google.com/gke-preemptible=true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. helm-releases/minio-5.0.1.tgz

    created) if ! checkBucketExists $BUCKET ; then if [ ! -z $OBJECTLOCKING ] ; then if [ $OBJECTLOCKING = true ] ; then echo "Creating bucket with OBJECTLOCKING '$BUCKET'" ${MC} mb --with-lock myminio/$BUCKET elif [ $OBJECTLOCKING = false ] ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET fi elif [ -z $OBJECTLOCKING ] ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi fi # set versioning for bucket if objectlocking is disabled or...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Nov 13 10:04:51 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.9.tgz

    created) if ! checkBucketExists $BUCKET ; then if [ ! -z $OBJECTLOCKING ] ; then if [ $OBJECTLOCKING = true ] ; then echo "Creating bucket with OBJECTLOCKING '$BUCKET'" ${MC} mb --with-lock myminio/$BUCKET elif [ $OBJECTLOCKING = false ] ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET fi elif [ -z $OBJECTLOCKING ] ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi fi # set versioning for bucket if objectlocking is disabled or...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:23:26 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top