Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for niddle (0.18 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -}
    -#endif
    -
    -
    -/* Find the first occurrence of NEEDLE in HAYSTACK.  Newer gcc versions
    -   do this itself.  */
    -#if !defined _HAVE_STRING_ARCH_strstr && !__GNUC_PREREQ (2, 97)
    -# define strstr(haystack, needle) \
    -  (__extension__ (__builtin_constant_p (needle) && __string2_1bptr_p (needle) \
    -		  ? (((const char *) (needle))[0] == '\0'		      \
    -		     ? (char *) (size_t) (haystack)			      \
    Others
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

          TF_EXCLUSIVE_LOCKS_REQUIRED(execution_mutex_);
    
      enum class ExecutionState {
        kReadyToExecute,
        kHasResult,
        kIdle,
        kShuttingDown,
      };
    
      tensorflow::mutex execution_mutex_;
      ExecutionState execution_state_ TF_GUARDED_BY(execution_mutex_) =
          ExecutionState::kIdle;
      // Tells the worker thread that there is new work.
      tensorflow::condition_variable start_execute_;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
Back to top