Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for debuggee (0.17 sec)

  1. CONTRIBUTING.md

    This may help you better understand and contribute to Gradle.
    
    ### Debugging Gradle
    
    You can debug Gradle by adding `-Dorg.gradle.debug=true` to the command-line. Gradle will wait for you to attach a debugger at `localhost:5005` by default.
    
    If you made changes to build logic in the `build-logic` included build, you can run its tests by executing `./gradlew :build-logic:check`.
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    #### Debug builds
    
    When [building Tensorflow](https://www.tensorflow.org/install/source), passing
    `--config=dbg` to Bazel will build with debugging information and without
    optimizations, allowing you to use GDB or other debuggers to debug C++ code. For
    example, you can build the pip package with debugging information by running:
    
    ```bash
    bazel build --config=dbg //tensorflow/tools/pip_package:build_pip_package
    ```
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top