Home
last modified time | relevance | path

Searched refs:target_key (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/platform/s3/
Ds3_file_system.h129 const Aws::String& target_key);
131 const Aws::String& target_key);
134 const Aws::String& target_key, const int num_parts,
136 Status AbortMultiPartCopy(Aws::String target_bucket, Aws::String target_key,
139 Aws::String target_bucket, Aws::String target_key, Aws::String uploadId,
Ds3_file_system.cc910 const Aws::String& target_key) { in CopyFile() argument
927 return SimpleCopy(source, target_bucket, target_key); in CopyFile()
939 return MultiPartCopy(source, target_bucket, target_key, num_parts, in CopyFile()
946 const Aws::String& target_key) { in SimpleCopy() argument
948 << target_key; in SimpleCopy()
951 copyObjectRequest.SetKey(target_key); in SimpleCopy()
962 const Aws::String& target_key, in MultiPartCopy() argument
966 << target_key; in MultiPartCopy()
969 multipartUploadRequest.SetKey(target_key); in MultiPartCopy()
1023 uploadPartCopyRequest.SetKey(target_key); in MultiPartCopy()
[all …]
/external/selinux/python/semanage/
Dsemanage159 def handle_opts(args, dict, target_key):
166 if k in dict[target_key][0] and args.__dict__[k]:
167 print("%s option can not be used with --%s" % (target_key, k))
174 if k in dict[target_key][1] and not args.__dict__[k]:
175 print("%s option is needed for %s" % (k, target_key))
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/resolver/xds/
Dxds_resolver.cc385 const std::string& target_key, grpc_metadata_batch* initial_metadata, in GetMetadataValue() argument
394 if (target_key == key) values.push_back(value); in GetMetadataValue()