Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getBuffer (0.19 sec)

  1. android/guava/src/com/google/common/io/FileBackedOutputStream.java

      @GuardedBy("this")
      @CheckForNull
      private File file;
    
      /** ByteArrayOutputStream that exposes its internals. */
      private static class MemoryOutput extends ByteArrayOutputStream {
        byte[] getBuffer() {
          return buf;
        }
    
        int getCount() {
          return count;
        }
      }
    
      /** Returns the file holding the data (possibly null). */
      @VisibleForTesting
      @CheckForNull
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util.cc

          tensorflow::AsyncValueTensor::FromTensor(tensor);
      if (av_tensor == nullptr || av_tensor->GetBuffer() == nullptr) {
        return absl::InternalError("Input tensor does not have PjRtBuffer.");
      }
      auto* c_api_buffer =
          dynamic_cast<xla::PjRtCApiBuffer*>(av_tensor->GetBuffer().get());
      if (c_api_buffer == nullptr) {
        return absl::InternalError(
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Mon Oct 30 19:20:20 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

            resp.reset();
    
            long k;
    
            /*
             * First request w/ interim response
             */
            try {
                req.setBuffer(getContext().getBufferCache().getBuffer());
                req.nextElement();
                if ( req.hasMoreElements() ) {
                    SmbComBlankResponse interim = new SmbComBlankResponse(getContext().getConfig());
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  4. okhttp-android/src/main/baseline-prof.txt

    HSPLokio/RealBufferedSink;->writeShort(I)Lokio/BufferedSink;
    HSPLokio/RealBufferedSource;-><init>(Lokio/Source;)V
    HSPLokio/RealBufferedSource;->close()V
    HSPLokio/RealBufferedSource;->exhausted()Z
    HSPLokio/RealBufferedSource;->getBuffer()Lokio/Buffer;
    HSPLokio/RealBufferedSource;->read(Lokio/Buffer;J)J
    HSPLokio/RealBufferedSource;->readByte()B
    HSPLokio/RealBufferedSource;->readByteString(J)Lokio/ByteString;
    HSPLokio/RealBufferedSource;->readInt()I
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util_test.cc

              nullptr, pjrt_client->addressable_devices()[0]));
      tensorflow::AsyncValueTensor* av_tensor =
          tensorflow::AsyncValueTensor::FromTensor(&tensor);
      av_tensor->SetBuffer(std::move(buffer));
    
      EXPECT_THAT(
          GetPjRtCBufferFromTensor(&tensor),
          StatusIs(
              error::INTERNAL,
              HasSubstr(absl::StrCat(
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Mon Oct 30 19:20:20 GMT 2023
    - 7.2K bytes
    - Viewed (0)
Back to top