Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ss (0.13 sec)

  1. tensorflow/c/c_api_function_test.cc

      // logging utility
      template <class Container>
      string ToString(const Container& v) {
        std::stringstream ss;
        ss << "{";
        size_t i = 0;
        for (const auto& e : v) {
          if (i != 0) {
            ss << ", ";
          }
          ss << e.ToString();
          ++i;
        }
        ss << "}";
        return ss.str();
      }
    
      void VerifyFDefNodes(const tensorflow::FunctionDef& fdef,
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  2. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -	    return s;
    -	} while (--n4 > 0);
    -      n &= 3;
    -    }
    +  size_t ss = __strnlen (s2, n);
     
    -  while (n > 0)
    -    {
    -      c = *s2++;
    -      *++s1 = c;
    -      if (c == '\0')
    -	return s;
    -      n--;
    -    }
    -
    -  if (c != '\0')
    -    *++s1 = '\0';
    +  s1[ss] = '\0';
    +  memcpy (s1, s2, ss);
     
       return s;
     }
    +
    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