Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tf_tstring (0.06 sec)

  1. tensorflow/c/BUILD

        deps = [
            ":c_api_macros_hdrs",
            "@local_xla//xla/tsl/c:tsl_status_headers",
        ],
    )
    
    cc_library(
        name = "tf_tstring",
        srcs = [
            "tf_tstring.cc",
        ],
        hdrs = [
            "tf_tstring.h",
        ],
        copts = tf_copts(),
        visibility = ["//visibility:public"],
        deps = [
            ":c_api_macros_hdrs",
            ":tf_datatype_hdrs",
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Nov 02 06:47:06 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      }
    
      private static final Comparator<Object> TO_STRING =
          new Comparator<Object>() {
            @Override
            public int compare(Object o1, Object o2) {
              return o1.toString().compareTo(o2.toString());
            }
          };
    
      public void testSupertypeComparator() {
        SortedSet<Integer> set =
            new ImmutableSortedSet.Builder<Integer>(TO_STRING).add(3, 12, 101, 44).build();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top