RPCOptions.Builder

পাবলিক স্ট্যাটিক ফাইনাল ক্লাস RPCOptions.Builder

Protobuf টাইপ tensorflow.RPCOptions

পাবলিক পদ্ধতি

RPCOptions.Builder
addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র, বস্তুর মান)
RPCOptions
RPCOptions
RPCOptions.Builder
RPCOptions.Builder
clearCacheRpcResponse ()
 Setting cache_rpc_response to true will enable sender side caching of
 response for RecvTensorAsync and RecvBufAsync to allow receiver to retry
 requests .
RPCOptions.Builder
RPCOptions.Builder
সাফ কম্প্রেশন লেভেল ()
 If compression_algorithm is set, the compression level to be used.
RPCOptions.Builder
সাফ অক্ষম সেশন সংযোগ ভাগ করে নেওয়া ()
 Disables TCP connection sharing when opening a new RPC channel.
RPCOptions.Builder
clearField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র)
RPCOptions.Builder
clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)
RPCOptions.Builder
clearUseRpcForInprocessMaster ()
 If true, always use RPC to contact the session target.
RPCOptions.Builder
বুলিয়ান
getCacheRpcResponse ()
 Setting cache_rpc_response to true will enable sender side caching of
 response for RecvTensorAsync and RecvBufAsync to allow receiver to retry
 requests .
স্ট্রিং
getCompressionAlgorithm ()
 The compression algorithm to be used.
com.google.protobuf.ByteString
getCompressionAlgorithmBytes ()
 The compression algorithm to be used.
int
কম্প্রেশন লেভেল ()
 If compression_algorithm is set, the compression level to be used.
RPCOptions
চূড়ান্ত স্ট্যাটিক com.google.protobuf.Descriptors.Descriptor
com.google.protobuf.Descriptors.Descriptor
বুলিয়ান
getDisableSessionConnectionSharing ()
 Disables TCP connection sharing when opening a new RPC channel.
বুলিয়ান
getUseRpcForInprocessMaster ()
 If true, always use RPC to contact the session target.
চূড়ান্ত বুলিয়ান
RPCOptions.Builder
mergeFrom (com.google.protobuf.CodedInputStream ইনপুট, com.google.protobuf.ExtensionRegistryLite এক্সটেনশন রেজিস্ট্রি)
RPCOptions.Builder
mergeFrom (com.google.protobuf.অন্যান্য বার্তা পাঠান)
চূড়ান্ত RPCOptions.Builder
একত্রিত করুন অজানাক্ষেত্র (com.google.protobuf.UnknownFieldSet অজানাক্ষেত্র)
RPCOptions.Builder
setCacheRpcResponse (বুলিয়ান মান)
 Setting cache_rpc_response to true will enable sender side caching of
 response for RecvTensorAsync and RecvBufAsync to allow receiver to retry
 requests .
RPCOptions.Builder
সেট কমপ্রেশন অ্যালগরিদম (স্ট্রিং মান)
 The compression algorithm to be used.
RPCOptions.Builder
setCompressionAlgorithmBytes (com.google.protobuf.ByteString মান)
 The compression algorithm to be used.
RPCOptions.Builder
setCompressionLevel (int মান)
 If compression_algorithm is set, the compression level to be used.
RPCOptions.Builder
setDisableSessionConnectionSharing (বুলিয়ান মান)
 Disables TCP connection sharing when opening a new RPC channel.
RPCOptions.Builder
setField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র, বস্তুর মান)
RPCOptions.Builder
setRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র, int সূচক, অবজেক্ট মান)
চূড়ান্ত RPCOptions.Builder
সেটUnknownFields (com.google.protobuf.UnknownFieldসেট অজানাফিল্ড)
RPCOptions.Builder
setUseRpcForInprocessMaster (বুলিয়ান মান)
 If true, always use RPC to contact the session target.

উত্তরাধিকারসূত্রে প্রাপ্ত পদ্ধতি

পাবলিক পদ্ধতি

সর্বজনীন RPCOptions.Builder addRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র, বস্তুর মান)

পাবলিক RPCOptions বিল্ড ()

পাবলিক RPCOptions বিল্ড আংশিক ()

পাবলিক RPCOptions.Builder clear ()

সর্বজনীন RPCOptions.Builder clearCacheRpcResponse ()

 Setting cache_rpc_response to true will enable sender side caching of
 response for RecvTensorAsync and RecvBufAsync to allow receiver to retry
 requests . This is only necessary when the network fabric is experiencing a
 significant error rate.  Without it we'll fail a step on an network error,
 while with it we'll be able to complete long steps (like complex
 initializations) in the face of some network errors during RecvTensor.
 
bool cache_rpc_response = 4;

পাবলিক RPCOptions.Builder clear CompressionAlgorithm ()

 The compression algorithm to be used. One of "deflate", "gzip".
 
string compression_algorithm = 2;

পাবলিক RPCOptions.Builder clear CompressionLevel ()

 If compression_algorithm is set, the compression level to be used.
 From 0 (no compression), up to 3.
 
int32 compression_level = 3;

সর্বজনীন RPCOptions.Builder clearDisableSessionConnectionSharing ()

 Disables TCP connection sharing when opening a new RPC channel.
 
bool disable_session_connection_sharing = 5;

সর্বজনীন RPCOptions.Builder clearField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র)

সর্বজনীন RPCOptions.Builder clearOneof (com.google.protobuf.Descriptors.OneofDescriptor oneof)

সর্বজনীন RPCOptions.Builder clearUseRpcForInprocessMaster ()

 If true, always use RPC to contact the session target.
 If false (the default option), TensorFlow may use an optimized
 transport for client-master communication that avoids the RPC
 stack. This option is primarily for used testing the RPC stack.
 
bool use_rpc_for_inprocess_master = 1;

পাবলিক RPCOptions.Builder ক্লোন ()

পাবলিক বুলিয়ান getCacheRpcResponse ()

 Setting cache_rpc_response to true will enable sender side caching of
 response for RecvTensorAsync and RecvBufAsync to allow receiver to retry
 requests . This is only necessary when the network fabric is experiencing a
 significant error rate.  Without it we'll fail a step on an network error,
 while with it we'll be able to complete long steps (like complex
 initializations) in the face of some network errors during RecvTensor.
 
bool cache_rpc_response = 4;

পাবলিক স্ট্রিং getCompressionAlgorithm ()

 The compression algorithm to be used. One of "deflate", "gzip".
 
string compression_algorithm = 2;

সর্বজনীন com.google.protobuf.ByteString getCompressionAlgorithmBytes ()

 The compression algorithm to be used. One of "deflate", "gzip".
 
string compression_algorithm = 2;

পাবলিক int getCompressionLevel ()

 If compression_algorithm is set, the compression level to be used.
 From 0 (no compression), up to 3.
 
int32 compression_level = 3;

সর্বজনীন RPCOptions getDefaultInstanceForType ()

পাবলিক স্ট্যাটিক ফাইনাল com.google.protobuf.Descriptors.Descriptor getDescriptor ()

সর্বজনীন com.google.protobuf.Descriptors.Descriptor getDescriptorForType ()

পাবলিক বুলিয়ান getDisableSessionConnectionSharing ()

 Disables TCP connection sharing when opening a new RPC channel.
 
bool disable_session_connection_sharing = 5;

পাবলিক বুলিয়ান getUseRpcForInprocessMaster ()

 If true, always use RPC to contact the session target.
 If false (the default option), TensorFlow may use an optimized
 transport for client-master communication that avoids the RPC
 stack. This option is primarily for used testing the RPC stack.
 
bool use_rpc_for_inprocess_master = 1;

সর্বজনীন চূড়ান্ত বুলিয়ান শুরু হয়েছে ()

সর্বজনীন RPCOptions.Builder mergeFrom (com.google.protobuf.CodedInputStream ইনপুট, com.google.protobuf.ExtensionRegistryLite extensionRegistry)

নিক্ষেপ করে
IO ব্যতিক্রম

সর্বজনীন RPCOptions.Builder mergeFrom (com.google.protobuf.অন্যান্য বার্তা)

সর্বজনীন চূড়ান্ত RPCOptions.Builder mergeUnknownFields (com.google.protobuf.UnknownFieldSet unknownFields)

সর্বজনীন RPCOptions.Builder setCacheRpcResponse (বুলিয়ান মান)

 Setting cache_rpc_response to true will enable sender side caching of
 response for RecvTensorAsync and RecvBufAsync to allow receiver to retry
 requests . This is only necessary when the network fabric is experiencing a
 significant error rate.  Without it we'll fail a step on an network error,
 while with it we'll be able to complete long steps (like complex
 initializations) in the face of some network errors during RecvTensor.
 
bool cache_rpc_response = 4;

পাবলিক RPCOptions.Builder setCompressionAlgorithm (স্ট্রিং মান)

 The compression algorithm to be used. One of "deflate", "gzip".
 
string compression_algorithm = 2;

সর্বজনীন RPCOptions.Builder setCompressionAlgorithmBytes (com.google.protobuf.ByteString মান)

 The compression algorithm to be used. One of "deflate", "gzip".
 
string compression_algorithm = 2;

সর্বজনীন RPCOptions.Builder setCompressionLevel (int value)

 If compression_algorithm is set, the compression level to be used.
 From 0 (no compression), up to 3.
 
int32 compression_level = 3;

সর্বজনীন RPCOptions.Builder setDisableSessionConnectionSharing (বুলিয়ান মান)

 Disables TCP connection sharing when opening a new RPC channel.
 
bool disable_session_connection_sharing = 5;

সর্বজনীন RPCOptions.Builder setField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র, বস্তুর মান)

সর্বজনীন RPCOptions.Builder setRepeatedField (com.google.protobuf.Descriptors.FieldDescriptor ক্ষেত্র, int সূচক, অবজেক্ট মান)

সর্বজনীন চূড়ান্ত RPCOptions.Builder setUnknownFields (com.google.protobuf.UnknownFieldSet unknownFields)

সর্বজনীন RPCOptions.Builder setUseRpcForInprocessMaster (বুলিয়ান মান)

 If true, always use RPC to contact the session target.
 If false (the default option), TensorFlow may use an optimized
 transport for client-master communication that avoids the RPC
 stack. This option is primarily for used testing the RPC stack.
 
bool use_rpc_for_inprocess_master = 1;