Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 988 for readOp (0.18 sec)

  1. docs/zh-CN/README.md

    Shinsuke Sugaya <******@****.***> 1728717587 +0900
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/cachedirs/README.txt

    Shinsuke Sugaya <******@****.***> 1379138428 +0900
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Sat Sep 14 06:00:28 UTC 2013
    - 27 bytes
    - Viewed (0)
  3. ci/README.md

    Michael Hudgins <******@****.***> 1686085016 -0700
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Tue Jun 06 21:00:01 UTC 2023
    - 825 bytes
    - Viewed (0)
  4. ci/official/containers/ml_build/README.md

    Quoc Truong <******@****.***> 1727209746 -0700
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Tue Sep 24 20:45:58 UTC 2024
    - 416 bytes
    - Viewed (0)
  5. tensorflow/c/README.md

    Asim Shankar <******@****.***> 1540258076 -0700
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Tue Oct 23 01:38:30 UTC 2018
    - 539 bytes
    - Viewed (0)
  6. README.md

    Vlad Chesnokov <******@****.***> 1718696773 +0400
    Registered: Wed Oct 30 11:36:09 UTC 2024
    - Last Modified: Tue Jun 18 07:46:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. architecture/standards/README.md

    Adam Murdoch <******@****.***> 1708497044 +1100
    Registered: Wed Oct 30 11:36:09 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  8. cmd/bitrot_test.go

    		bw.Close()
    	}
    
    	reader := newBitrotReader(disk, nil, volume, filePath, 35, bitrotAlgo, bitrotWriterSum(writer), 10)
    	b := make([]byte, 10)
    	if _, err = reader.ReadAt(b, 0); err != nil {
    		t.Fatal(err)
    	}
    	if _, err = reader.ReadAt(b, 10); err != nil {
    		t.Fatal(err)
    	}
    	if _, err = reader.ReadAt(b, 20); err != nil {
    		t.Fatal(err)
    	}
    	if _, err = reader.ReadAt(b[:5], 30); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. cmd/bitrot-whole.go

    	filePath   string
    	verifier   *BitrotVerifier // Holds the bit-rot info
    	tillOffset int64           // Affects the length of data requested in disk.ReadFile depending on Read()'s offset
    	buf        []byte          // Holds bit-rot verified data
    }
    
    func (b *wholeBitrotReader) ReadAt(buf []byte, offset int64) (n int, err error) {
    	if b.buf == nil {
    		b.buf = make([]byte, b.tillOffset-offset)
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Wed Jan 31 02:11:45 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_experimental.h

    // Get the DataType of a variable
    TF_CAPI_EXPORT extern TF_DataType TF_CheckpointReaderGetVariableDataType(
        TF_CheckpointReader* reader, const char* name);
    // Read the shape of a variable and write to `dims`
    TF_CAPI_EXPORT extern void TF_CheckpointReaderGetVariableShape(
        TF_CheckpointReader* reader, const char* name, int64_t* dims, int num_dims,
        TF_Status* status);
    Registered: Tue Oct 29 12:39:09 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top