Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for comme (0.18 sec)

  1. ci/official/utilities/code_check_full.bats

      # Select lines unique to actual_licenses, i.e. extra licenses.
      comm -1 -3 $BATS_TEST_TMPDIR/expected_licenses $BATS_TEST_TMPDIR/actual_licenses | grep -v -f $BATS_TEST_TMPDIR/allowed_to_be_extra > $BATS_TEST_TMPDIR/actual_extra_licenses || true
      # Select lines unique to expected_licenses, i.e. missing licenses
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 06 21:54:13 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  2. .github/workflows/stale-issues.yml

          - name: Awaiting response issues
            uses: actions/stale@6f05e4244c9a0b2ed3401882b05d701dd0a7289b # v7.0.0
            with:
              #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Nov 23 20:04:38 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  3. configure.py

        write_to_bazelrc('build --copt=-Wno-gnu-offsetof-extensions')
    
    
    def set_tf_cuda_paths(environ_cp):
      """Set TF_CUDA_PATHS."""
      ask_cuda_paths = (
          'Please specify the comma-separated list of base paths to look for CUDA '
          'libraries and headers. [Leave empty to use the default]: ')
      tf_cuda_paths = get_from_env_or_user_or_default(environ_cp, 'TF_CUDA_PATHS',
    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. ci/official/README.md

    # a local build cache:
    TFCI=py312,linux_x86_cuda,public_cache,disk_cache ci/official/wheel.sh
    
    # First, set your TFCI variable to choose the environment settings.
    #   TFCI is a comma-separated list of filenames from the envs directory, which
    #   are all settings for the scripts. TF's CI jobs are all made of a combination
    #   of these env files.
    #
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  5. .bazelrc

    build --incompatible_enforce_config_setting_visibility
    # TODO: also enable this flag after fixing the visibility violations
    # build --incompatible_config_setting_private_default_visibility
    
    # Default options should come above this line.
    
    # Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the
    # target CPU to build transient dependencies correctly. See
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  6. tensorflow/__init__.py

    app.flags = flags
    
    # These symbols appear because we import the python package which
    # in turn imports from tensorflow.core and tensorflow.python. They
    # must come from this module. So python adds these symbols for the
    # resolution to succeed.
    # pylint: disable=undefined-variable
    del python
    del core
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Sep 28 21:37:05 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    -   Once the PR is in the Google codebase, we make sure it integrates well with
        its dependencies and the rest of the system.
    -   Rarely, If the tests fail at this stage, we cannot merge the code.
    -   If needed, we may come to you to make some changes. At times, it may not be
        you, it may be us who may have hit a snag. Please be patient while we work
        to fix this.
    -   Once the internal tests pass, we go ahead and merge the code internally as
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_experimental.h

    // info. If not, status will be set as OK.
    TF_CAPI_EXPORT extern void TFE_TensorHandleGetStatus(TFE_TensorHandle* h,
                                                         TF_Status* status);
    
    // Get a comma-separated list of op names executed in graph functions dispatched
    // to `ctx`. This feature is currently only enabled for TFRT debug builds, for
    // performance and simplicity reasons.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  9. SECURITY.md

    [XLA](https://www.tensorflow.org/xla) and
    [JAX](https://jax.readthedocs.io/en/latest/jax-101/02-jitting.html)
    documentation should be safe, while some of the testing and debugging tools that
    come with the compiler are not designed to be used with untrusted data and
    should be used with caution when working with untrusted models.
    
    ### Saved graphs and checkpoints
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Oct 01 06:06:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

      # Select lines unique to actual_licenses, i.e. extra licenses.
      comm -1 -3 $BATS_TEST_TMPDIR/expected_licenses $BATS_TEST_TMPDIR/actual_licenses | grep -v -f $BATS_TEST_TMPDIR/allowed_to_be_extra > $BATS_TEST_TMPDIR/actual_extra_licenses || true
      # Select lines unique to expected_licenses, i.e. missing licenses
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 12.7K bytes
    - Viewed (0)
Back to top