Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for strncmp (0.03 sec)

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

    -   <http://www.gnu.org/licenses/>.  */
    +   <https://www.gnu.org/licenses/>.  */
     
     #include <string.h>
    -#include <memcopy.h>
     
     #undef strncpy
     
     #ifndef STRNCPY
    -#define STRNCPY strncpy
    + #define STRNCPY strncpy
     #endif
     
     char *
     STRNCPY (char *s1, const char *s2, size_t n)
     {
    -  char c;
    -  char *s = s1;
    -
    -  --s1;
    -
    -  if (n >= 4)
    -    {
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  2. test-site/public/javascripts/suggestor.js

                } else if(e.keyCode == 38) {
                    /*			if($boxElement.css("display") != "none") {
                     var strTmp = $textArea.val();
                     $textArea.val("");
                     $textArea.focus();
                     $textArea.val(strTmp);
                     } */
                }
            });
            $(this).blur(function(){
                if(!isMouseHover) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/suggestor.js

          ) {
            started = true;
            isFocusList = false;
          } else if (e.keyCode === 38) {
            /*			if($boxElement.css("display") !== "none") {
    				var strTmp = $textArea.val();
    				$textArea.val("");
    				$textArea.focus();
    				$textArea.val(strTmp);
    			} */
          }
        });
        $(this).blur(function() {
          if (!isMouseHover) {
            suggestor.fixList();
          }
        });
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_graph.cc

                                     const void* const* values,
                                     const size_t* lengths,
                                     int num_values) override {
        if (strcmp(attr_name, tensorflow::kColocationAttrName) == 0) {
          op_->colocation_constraints.clear();
          for (int i = 0; i < num_values; ++i) {
            op_->colocation_constraints.emplace(static_cast<const char*>(values[i]),
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top