Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for obj (0.14 sec)

  1. tensorflow/c/c_api_macros_internal.h

        }                                                                     \
      } while (0)
    
    // Macro to verify that the field NAME of STRUCT_OBJ is not null.
    #define TF_VALIDATE_NOT_NULL(STRUCT_NAME, STRUCT_OBJ, NAME)            \
      do {                                                                 \
        if (STRUCT_OBJ.NAME == 0) {                                        \
          return tensorflow::Status(absl::StatusCode::kFailedPrecondition, \
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Mar 13 17:40:56 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/grappler/grappler.cc

    #include "tsl/platform/env.h"
    #include "tsl/platform/errors.h"
    
    namespace {
    
    #define VALIDATE_STRUCT_SIZE(STRUCT_NAME, STRUCT_OBJ, SIZE_VALUE_NAME) \
      do {                                                                 \
        if (STRUCT_OBJ.struct_size == 0) {                                 \
          return absl::Status(absl::StatusCode::kFailedPrecondition,       \
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 06 19:12:29 GMT 2023
    - 15K bytes
    - Viewed (1)
  3. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

     
       char *numstr = NISOBJVAL (2, obj);
       len = NISOBJLEN (2, obj);
    -  if (len == 0 && numstr[len - 1] != '\0')
    +  if (len == 0 || numstr[len - 1] != '\0')
         {
           if (len >= room_left)
     	goto no_more_room;
    @@ -98,7 +98,7 @@ _nss_nisplus_parse_pwent (nis_result *result, struct passwd *pw,
     
       numstr = NISOBJVAL (3, obj);
       len = NISOBJLEN (3, obj);
    -  if (len == 0 && numstr[len - 1] != '\0')
    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)
Back to top