Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asker (0.18 sec)

  1. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      auto posix_file = static_cast<PosixFile*>(file->plugin_file);
      char* dst = buffer;
      int64_t read = 0;
    
      while (n > 0) {
        // Some platforms, notably macs, throw `EINVAL` if `pread` is asked to read
        // more than fits in a 32-bit integer.
        size_t requested_read_length;
        if (n > INT32_MAX)
          requested_read_length = INT32_MAX;
        else
          requested_read_length = n;
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. RELEASE.md

    Yan Chen, Yan Facai (颜发才), Yi Yang, Yong Tang, Youssef Hesham, Yuan (Terry)
    Tang, Zhengsheng Wei, zxcqwe4906, 张志豪, 田传武
    
    We are also grateful to all who filed issues or helped resolve them, asked and
    answered questions, and were part of inspiring discussions.
    
    # Release 1.4.1
    
    ## Bug Fixes and Other Changes
    
    *   `LinearClassifier` fix.
    
    # Release 1.4.0
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top