Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expectPut (0.03 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

            var currentLabelIndex = labelIndex
            var currentLabelByteIndex = 0
            var publicSuffixByteIndex = 0
    
            var expectDot = false
            while (true) {
              val byte0: Int
              if (expectDot) {
                byte0 = '.'.code
                expectDot = false
              } else {
                byte0 = labels[currentLabelIndex][currentLabelByteIndex] and 0xff
              }
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_test.cc

    }
    
    TEST(CAPI, GetAllOpList) {
      TF_Buffer* buf = TF_GetAllOpList();
      tensorflow::OpList op_list;
      EXPECT_TRUE(op_list.ParseFromArray(buf->data, buf->length));
      EXPECT_GT(op_list.op_size(), 0);
      TF_DeleteBuffer(buf);
    }
    
    TEST(CAPI, SetShape) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      TF_Operation* feed = Placeholder(graph, s);
    Registered: 2025-05-27 12:39
    - Last Modified: 2024-12-27 12:18
    - 97K bytes
    - Viewed (0)
Back to top