Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for character (0.3 sec)

  1. .github/bot_config.yml

       From the stack trace it looks like you are hitting windows path length limit.
          * Try to disable path length limit on Windows 10.
            * Refer [disable path length limit instructions guide.](https://mspoweruser.com/ntfs-260-character-windows-10/)
       
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Oct 17 11:48:07 GMT 2023
    - 4K bytes
    - Viewed (0)
  2. ci/official/utilities/get_versions.sh

    # Note: in awk, "print $N" prints the Nth "field", where fields are strings separated
    # by whitespace. The flag "-F<x>" changes the behavior such that fields are now strings
    # separated by the character <x>. Therefore, -F\' (escaped single quote) means that field
    # $2 in <Tensor'flow'> is <flow>. This is useful for reading string literals like below.
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Jan 10 19:39:41 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// term:
      ///   '*': matches any sequence of non-'/' characters
      ///   '?': matches a single non-'/' character
      ///   '[' [ '^' ] { match-list } ']':
      ///        matches any single character (not) on the list
      ///   c: matches character c (c != '*', '?', '\\', '[')
      ///   '\\' c: matches character c
      /// character-range:
      ///   c: matches character c (c != '\\', '-', ']')
      ///   '\\' c: matches character c
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  4. LICENSE

          negligent acts) or agreed to in writing, shall any Contributor be
          liable to You for damages, including any direct, indirect, special,
          incidental, or consequential damages of any character arising as a
          result of this License or out of the use or inability to use the
          Work (including but not limited to damages for loss of goodwill,
          work stoppage, computer failure or malfunction, or any and all
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Nov 29 17:31:56 GMT 2021
    - 13.3K bytes
    - Viewed (0)
  5. RELEASE.md

            *   `standardize="lower"` will lowercase inputs.
            *   `standardize="string_punctuation"` will remove all punctuation.
            *   `split="character"` will split on every unicode character.
        *   Added an `output_mode` argument to the `Discretization` and `Hashing`
            layers with the same semantics as other preprocessing layers. All
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  6. tensorflow/c/c_api.cc

        status->status = InvalidArgument("Invalid GraphDef");
        return;
      }
      status->status = s->session->Extend(g);
    }
    
    }  // end extern "C"
    
    // Reset helper for converting character arrays to string vectors.
    static void TF_Reset_Helper(const TF_SessionOptions* opt,
                                const char** containers, int ncontainers,
                                TF_Status* status) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    //           `inputs`. These operation names should start with a letter.
    //           Normalization will convert all letters to lowercase and
    //           non-alphanumeric characters to '_' to make resulting names match
    //           the "[a-z][a-z0-9_]*" pattern for operation argument names.
    //           `inputs` cannot contain the same tensor twice.
    //  noutputs - number of elements in `outputs` array
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  8. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -    ++__result;
    -  return __result;
    -}
    +#ifndef _HAVE_STRING_ARCH_strspn
    +# define strspn(s, accept) __builtin_strspn (s, accept)
     #endif
     
     
     /* Find the first occurrence in S of any character in ACCEPT.  */
    -#if !defined _HAVE_STRING_ARCH_strpbrk || defined _FORCE_INLINES
    -# ifndef _HAVE_STRING_ARCH_strpbrk
    -#  if __GNUC_PREREQ (3, 2)
    -#   define strpbrk(s, accept) \
    -  __extension__								      \
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  9. configure.py

            ask_cuda_compute_capabilities, default_cuda_compute_capabilities)
        # Check whether all capabilities from the input is valid
        all_valid = True
        # Remove all whitespace characters before splitting the string
        # that users may insert by accident, as this will result in error
        tf_cuda_compute_capabilities = ''.join(tf_cuda_compute_capabilities.split())
    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)
Back to top