Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 451 for sh (0.02 sec)

  1. ci/official/any.sh

    #       export TF_ANY_SCRIPT=ci/official/wheel.sh
    #       ./any.sh
    #
    # 3. DO THE SAME WITH A LOCAL CACHE OR RBE:
    #       export TF_ANY_EXTRA_ENV=ci/official/envs/public_cache,ci/official/envs/disk_cache
    #       ...
    #       ./any.sh
    #     or
    #       export TF_ANY_EXTRA_ENV=ci/official/envs/local_rbe
    #       ./any.sh
    #       ...
    set -exo pipefail
    cd "$(dirname "$0")/../../"  # tensorflow/
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-01-09 18:37
    - 2.1K bytes
    - Viewed (0)
  2. ci/official/utilities/setup.sh

      source ./ci/official/utilities/windows.sh
      echo 'Converting MSYS Linux-like paths to Windows paths (for Docker, Python, etc.)'
      source <(python ./ci/official/utilities/convert_msys_paths_to_win_paths.py --whitelist-prefix TFCI_)
    fi
    
    # Run all "tfrun" commands under Docker. See setup_docker.sh for details
    if [[ "$TFCI_DOCKER_ENABLE" == 1 ]]; then
      source ./ci/official/utilities/setup_docker.sh
    fi
    
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-01-09 18:37
    - 6.2K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/get_test_list.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Usage: get_test_list.sh OUTPUT BAZEL_TEST_COMMAND...
    # Writes the list of tests that would be run from BAZEL_TEST_COMMAND to OUTPUT.
    # Hides all extra output and always exits with success for now.
    
    OUTPUT=$1
    shift
    Registered: 2025-05-27 12:39
    - Last Modified: 2023-09-18 14:52
    - 1K bytes
    - Viewed (0)
  4. ci/official/debug_tfci.sh

    # This script dumps some information about the environment. It's most useful
    # for verifying changes to the TFCI scripts system, and most users won't need
    # to interact with it at all.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    echo "==TFCI== env outside of tfrun:"
    env
    echo "==TFCI== env inside of tfrun:"
    Registered: 2025-05-27 12:39
    - Last Modified: 2023-11-01 19:54
    - 1022 bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh

    # ==============================================================================
    set -exo pipefail
    
    # Run this from inside the tensorflow github directory.
    # Usage: setup_venv_test.sh venv_and_symlink_name "glob pattern for one wheel file"
    # Example: setup_venv_test.sh bazel_pip "/tf/pkg/*.whl"
    # 
    # This will create a venv with that wheel file installed in it, and a symlink
    # in ./venv_and_symlink_name/tensorflow to ./tensorflow. We use this for the
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-01-09 18:37
    - 1.4K bytes
    - Viewed (0)
  6. ci/official/pycpp.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    if [[ `uname -s | grep -P '^MSYS_NT'` ]]; then
      PROFILE_JSON_PATH=$(replace_drive_letter_with_prefix "$TFCI_OUTPUT_WIN_DOCKER_DIR")
      PROFILE_JSON_PATH="$PROFILE_JSON_PATH/profile.json.gz"
    else
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-01-09 18:37
    - 1.9K bytes
    - Viewed (0)
  7. common/scripts/report_build_info.sh

    if [[ -z "${IGNORE_DIRTY_TREE}" ]] && ! git diff-index --quiet HEAD --; then
      tree_status="Modified"
    fi
    
    GIT_DESCRIBE_TAG=$(git describe --tags --always)
    HUB=${HUB:-"docker.io/istio"}
    
    # used by common/scripts/gobuild.sh
    echo "istio.io/istio/pkg/version.buildVersion=${VERSION:-$BUILD_GIT_REVISION}"
    echo "istio.io/istio/pkg/version.buildGitRevision=${BUILD_GIT_REVISION}"
    echo "istio.io/istio/pkg/version.buildStatus=${tree_status}"
    Registered: 2025-05-28 22:53
    - Last Modified: 2023-05-23 17:08
    - 1.9K bytes
    - Viewed (0)
  8. ci/official/utilities/rename_and_verify_wheels.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    #
    # Usage: rename_and_verify_wheels.sh
    # This script is aware of TFCI_ variables, so it doesn't need any arguments.
    # Puts new wheel through auditwheel to rename and verify it, deletes the old
    # one, checks the filesize, and then ensures the new wheel is installable.
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-25 00:22
    - 4.7K bytes
    - Viewed (0)
  9. misc/ios/clangwrap.sh

    #!/bin/sh
    
    # This script configures clang to target the iOS simulator. If you'd like to
    # build for real iOS devices, change SDK to "iphoneos" and PLATFORM to "ios".
    # This uses the latest available iOS SDK, which is recommended. To select a
    # specific SDK, run 'xcodebuild -showsdks' to see the available SDKs and replace
    # iphonesimulator with one of them.
    
    SDK=iphonesimulator
    PLATFORM=ios-simulator
    
    if [ "$GOARCH" == "arm64" ]; then
    	CLANGARCH="arm64"
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-06-18 16:32
    - 724 bytes
    - Viewed (0)
  10. dbflute_fess/manage.sh

    #!/bin/bash
    
    cd `dirname $0`
    . ./_project.sh
    
    FIRST_ARG=$1
    SECOND_ARG=$2
    
    sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH $FIRST_ARG $SECOND_ARG
    taskReturnCode=$?
    
    if [ $taskReturnCode -ne 0 ];then
      exit $taskReturnCode;
    Registered: 2025-05-26 08:04
    - Last Modified: 2015-07-04 22:46
    - 236 bytes
    - Viewed (0)
Back to top