Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Rapp (0.15 sec)

  1. ci/devinfra/docker_windows/Dockerfile

    # are made to the Windows 10 SDK.
    RUN $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\Program Files (x86)\Windows Kits\10\App Certification Kit\", \"Machine\");
    
    # Install WiX toolset (v4) - Necessary for MSI Installer/Signing builds
    RUN dotnet tool install --global wix
    
    # Install msys2, packages and add to path.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  2. .bazelrc

    build:release_cpu_macos --config=avx_linux
    
    # Base build configs for macOS
    build:release_macos_base --action_env  DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    build:release_macos_base --define=no_nccl_support=true --output_filter=^$
    
    # Ensure release_base is set on mac
    build:release_macos_base --config=release_base
    
    # Build configs for macOS x86
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  3. tensorflow/__init__.py

    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    
    from tensorflow.python.platform import flags  # pylint: disable=g-import-not-at-top
    from tensorflow.python.platform import app  # pylint: disable=g-import-not-at-top
    app.flags = flags
    
    # These symbols appear because we import the python package which
    # in turn imports from tensorflow.core and tensorflow.python. They
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Sep 28 21:37:05 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/tflite-in-play-services.md

      if possible):
    - TensorFlow Lite in Play Services SDK version (found in `build.gradle`):
    - Google Play Services version
      (`Settings` > `Apps` > `Google Play Services` > `App details`):
    
    **Standalone code to reproduce the issue**
    Provide a reproducible test case that is the bare minimum necessary to generate
    the problem. If possible, please share a link to or attach code demonstrating
    the problem.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Jun 15 03:35:58 GMT 2022
    - 880 bytes
    - Viewed (0)
  5. ci/official/envs/macos_x86_cross_compile

    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=cross_compile_macos_x86
    TFCI_MACOS_CROSS_COMPILE_ENABLE=1
    TFCI_MACOS_CROSS_COMPILE_SDK_DEST="tensorflow/tools/toolchains/cross_compile/cc/MacOSX.sdk"
    TFCI_MACOS_CROSS_COMPILE_SDK_SOURCE="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Feb 02 23:38:12 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/api_template_v1.__init__.py

    # "contrib".
    if "__all__" in vars():
      vars()["__all__"].append("contrib")
    
    from tensorflow.python.platform import flags
    # The "app" module will be imported as part of the placeholder section above.
    _current_module.app.flags = flags  # pylint: disable=undefined-variable
    setattr(_current_module, "flags", flags)
    
    _major_api_version = 1
    
    # Add module aliases from Keras to TF.
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        file->plugin_file = new tf_writable_file::GCSFile(
            {std::move(bucket), std::move(object), &gcs_file->gcs_client,
             TempFile(temp_file_name, std::ios::binary | std::ios::app), sync_need,
             -1});
      } else {
        // If compose is true, we do not download anything.
        // Instead we only check if this file exists on server or not.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
  8. RELEASE.md

        all symbol changes can be found
        [here](https://docs.google.com/spreadsheets/d/1FLFJLzg7WNP6JHODX5q8BDgptKafq_slHpnHVbJIteQ/edit#gid=0).
        *   API clean-up, included removing `tf.app`, `tf.flags`, and `tf.logging`
            in favor of [absl-py](https://github.com/abseil/abseil-py).
    *   No more global variables with helper methods like
        `tf.global_variables_initializer` and `tf.get_global_step`.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top