Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,095 for bhar (0.2 sec)

  1. android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

       */
      @Override
      @CheckForNull
      protected final char[] escape(char c) {
        if (c < replacementsLength) {
          char[] chars = replacements[c];
          if (chars != null) {
            return chars;
          }
        }
        if (c >= safeMin && c <= safeMax) {
          return null;
        }
        return escapeUnsafe(c);
      }
    
      /**
       * Escapes a {@code char} value that has no direct explicit value in the replacement array and
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 18 20:55:09 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/gradients/tape/tape_operation.cc

      }
      return OkStatus();
    }
    Status TapeOperation::SetAttrString(const char* attr_name, const char* data,
                                        size_t length) {
      forward_op_.attrs.Set(attr_name, StringPiece(data, length));
      return parent_op_->SetAttrString(attr_name, data, length);
    }
    Status TapeOperation::SetAttrInt(const char* attr_name, int64_t value) {
      forward_op_.attrs.Set(attr_name, static_cast<int64_t>(value));
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jun 07 01:53:35 GMT 2022
    - 9K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/primitives/Chars.java

       * concat(new char[] {a, b}, new char[] {}, new char[] {c}} returns the array {@code {a, b, c}}.
       *
       * @param arrays zero or more {@code char} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static char[] concat(char[]... arrays) {
        int length = 0;
        for (char[] array : arrays) {
          length += array.length;
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -	  ((const char *) (src))[2], ((const char *) (src))[3],		      \
    -	  ((const char *) (src))[4], ((const char *) (src))[5] } }),	      \
    -     __extension__ ((__STRING2_COPY_ARR7)				      \
    -      { { ((const char *) (src))[0], ((const char *) (src))[1],		      \
    -	  ((const char *) (src))[2], ((const char *) (src))[3],		      \
    -	  ((const char *) (src))[4], ((const char *) (src))[5],		      \
    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)
  5. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase", "content_length_filter", "limit_token_count_filter"]
          },
          "contents_reading_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Wed Mar 24 12:55:37 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase"]
          },
          "contents_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
            "char_filter" : ["mapping_char"],
            "filter" : ["lowercase", "content_length_filter", "limit_token_count_filter"]
          },
          "contents_reading_analyzer_pa" : {
            "type" : "custom",
            "tokenizer" : "standard",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 57.4K bytes
    - Viewed (0)
  7. tensorflow/c/eager/gradients_internal.h

    Status SetAttrString(AbstractOperation*, const char* attr_name,
                         const char* data, size_t length, ForwardOperation*);
    Status SetAttrInt(AbstractOperation*, const char* attr_name, int64_t value,
                      ForwardOperation*);
    Status SetAttrFloat(AbstractOperation*, const char* attr_name, float value,
                        ForwardOperation*);
    Status SetAttrBool(AbstractOperation*, const char* attr_name, bool value,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Oct 24 11:27:35 GMT 2021
    - 4.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/Escapers.java

              return escaper.escape((char) cp);
            }
            // Convert the code point to a surrogate pair and escape them both.
            // Note: This code path is horribly slow and typically allocates 4 new
            // char[] each time it is invoked. However this avoids any
            // synchronization issues and makes the escaper thread safe.
            char[] surrogateChars = new char[2];
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_experimental.cc

        TFE_MonitoringStringGauge2* gauge, const char* label1, const char* label2) {
      return static_cast<TFE_MonitoringStringGaugeCell*>(
          static_cast<void*>(gauge->gauge->GetCell(label1, label2)));
    }
    
    TFE_MonitoringStringGauge3* TFE_MonitoringNewStringGauge3(
        const char* name, TF_Status* status, const char* description,
        const char* label1, const char* label2, const char* label3) {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 11 23:52:39 GMT 2024
    - 35.9K bytes
    - Viewed (3)
  10. tensorflow/c/experimental/gradients/tape/tape_operation.h

                     int* num_retvals) override;
      Status SetAttrString(const char* attr_name, const char* data,
                           size_t length) override;
      Status SetAttrInt(const char* attr_name, int64_t value) override;
      Status SetAttrFloat(const char* attr_name, float value) override;
      Status SetAttrBool(const char* attr_name, bool value) override;
      Status SetAttrType(const char* attr_name, DataType value) override;
    C
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Wed Sep 23 23:12:39 GMT 2020
    - 3.7K bytes
    - Viewed (1)
Back to top