Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cmd (0.15 sec)

  1. configure.cmd

    Myung-Hyun Kim <******@****.***> 1597138062 +0900
    Batch File
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Aug 11 09:27:42 GMT 2020
    - 782 bytes
    - Viewed (0)
  2. ci/devinfra/docker_windows/Dockerfile

        choco install vcredist2015; \
        choco install vim; \
        choco install winrar; \
        choco install zip; \
        choco install Firefox; \
        choco install iisexpress;
    
    RUN cmd /c 'mklink /J c:\Anaconda c:\tools\anaconda2';
    RUN cmd /c 'mklink c:\programdata\chocolatey\bin\rar.exe \"c:\program files\winrar\rar.exe\"';
    
    # Installing pip packages
    RUN pip install --upgrade setuptools; \
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  3. configure.py

    
    def run_shell(cmd, allow_non_zero=False, stderr=None):
      if stderr is None:
        stderr = sys.stdout
      if allow_non_zero:
        try:
          output = subprocess.check_output(cmd, stderr=stderr)
        except subprocess.CalledProcessError as e:
          output = e.output
      else:
        output = subprocess.check_output(cmd, stderr=stderr)
      return output.decode('UTF-8').strip()
    
    
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # the dynamic libraries of custom ops can find it at runtime.
    genrule(
        name = "tensorflow_filtered_def_file",
        srcs = [":tensorflow_def_file"],
        outs = ["tensorflow_filtered_def_file.def"],
        cmd = select({
            "//tensorflow:windows": """
                  $(location @local_config_def_file_filter//:def_file_filter) \\
                  --input $(location :tensorflow_def_file) \\
                  --output $@
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  5. ci/official/containers/linux_arm64/builder.devtoolset/rpm-patch.sh

    #
    # Given an RPM spec file $1, apply its patches.
    
    SPEC="$1"
    grep '%patch' "${SPEC}" |while read cmd ; do
      N=$(echo "${cmd}" |sed 's,%patch\([0-9]\+\).*,\1,')
      file=$(grep "Patch$N:" "${SPEC}" |sed 's,.*: ,,')
      parg=$(echo "${cmd}" |sed 's,.*\(-p[0-9]\).*,\1,')
      if [[ ! "${file}" =~ doxygen && "${cmd}" != \#* ]]; then
        echo "patch ${parg} -s < ${file}"
        patch ${parg} -s < "${file}"
      fi
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top