Home
last modified time | relevance | path

Searched refs:copy_source (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/dports/devel/mercurial/mercurial-6.0/rust/hg-core/src/dirstate/
H A Dparsers.rs38 parse_dirstate_entries(contents, |path, entry, copy_source| { in parse_dirstate()
39 if let Some(source) = copy_source { in parse_dirstate()
89 let copy_source = iter.next().map(HgPath::new); in parse_dirstate_entries() localVariable
90 each_entry(path, &entry, copy_source)?; in parse_dirstate_entries()
99 copy_source: Option<&HgPath>, in packed_filename_and_copy_source_size()
102 + if let Some(source) = copy_source { in packed_filename_and_copy_source_size()
111 copy_source: Option<&HgPath>, in packed_entry_size()
114 + packed_filename_and_copy_source_size(filename, copy_source) in packed_entry_size()
120 copy_source: Option<&HgPath>, in pack_entry()
123 let length = packed_filename_and_copy_source_size(filename, copy_source); in pack_entry()
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/s3transfer/
H A Dcopies.py100 call_args.copy_source)
138 'copy_source': call_args.copy_source,
206 'copy_source': call_args.copy_source,
242 def _get_head_object_request_from_copy_source(self, copy_source): argument
243 if isinstance(copy_source, dict):
244 return copy.copy(copy_source)
250 % (copy_source, type(copy_source))
272 def _main(self, client, copy_source, bucket, key, extra_args, callbacks, argument
287 CopySource=copy_source, Bucket=bucket, Key=key, **extra_args)
294 def _main(self, client, copy_source, bucket, key, upload_id, part_number, argument
[all …]
/dports/net/py-s3transfer/s3transfer-0.5.0/s3transfer/
H A Dcopies.py103 call_args.copy_source)
141 'copy_source': call_args.copy_source,
209 'copy_source': call_args.copy_source,
245 def _get_head_object_request_from_copy_source(self, copy_source): argument
246 if isinstance(copy_source, dict):
247 return copy.copy(copy_source)
253 % (copy_source, type(copy_source))
275 def _main(self, client, copy_source, bucket, key, extra_args, callbacks, argument
290 CopySource=copy_source, Bucket=bucket, Key=key, **extra_args)
297 def _main(self, client, copy_source, bucket, key, upload_id, part_number, argument
[all …]
H A Dmanager.py372 def copy(self, copy_source, bucket, key, extra_args=None, argument
415 if isinstance(copy_source, dict):
416 self._validate_if_bucket_supported(copy_source.get('Bucket'))
419 copy_source=copy_source, bucket=bucket, key=key,
/dports/net/py-s3transfer/s3transfer-0.5.0/tests/unit/
H A Dtest_copies.py24 self.copy_source = {
36 'client': self.client, 'copy_source': self.copy_source,
49 'CopySource': self.copy_source
63 'CopySource': self.copy_source, 'ACL': 'private'
78 'CopySource': self.copy_source
99 'client': self.client, 'copy_source': self.copy_source,
117 'CopySource': self.copy_source, 'UploadId': self.upload_id,
137 'CopySource': self.copy_source, 'UploadId': self.upload_id,
159 'CopySource': self.copy_source, 'UploadId': self.upload_id,
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/transfer/emerge/planner/
H A Dpart_definition.py139 def __init__(self, copy_source, relative_offset, length): argument
140 self.copy_source = copy_source
150 copy_source=repr(self.copy_source),
159 return (self.copy_source.file_id, self.relative_offset, self.length)
163 self.copy_source.get_copy_source_range(self.relative_offset, self.length)
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/transfer/outbound/
H A Dcopy_manager.py69 copy_source, argument
84 copy_source,
173 copy_source, argument
185 progress_listener.set_total_bytes(copy_source.get_content_length() or 0)
187 bytes_range = copy_source.get_bytes_range()
207 source_file_info=copy_source.source_file_info,
208 source_content_type=copy_source.source_content_type,
211 copy_source.file_id,
/dports/net/py-s3transfer/s3transfer-0.5.0/tests/functional/
H A Dtest_copy.py36 self.copy_source = {
56 'copy_source': self.copy_source,
143 self.copy_source['VersionId'] = 'mysourceversionid'
158 self.copy_source = ['bucket', 'key']
196 'CopySource': self.copy_source
216 'CopySource': self.copy_source,
241 'CopySource': self.copy_source,
269 'CopySource': self.copy_source,
275 self.copy_source, self.bucket, self.key, extra_args)
384 'CopySource': self.copy_source,
[all …]
/dports/devel/mercurial/mercurial-6.0/rust/hg-core/src/dirstate_tree/
H A Ddirstate_map.rs301 pub(super) fn copy_source( in copy_source() method
440 |path, entry, copy_source| { in new_v1()
460 node.copy_source.is_none(), in new_v1()
464 node.copy_source = copy_source.map(Cow::Borrowed); in new_v1()
466 if copy_source.is_some() { in new_v1()
854 node.copy_source = None in drop_entry_and_copy_source()
868 && node.copy_source.is_none() in drop_entry_and_copy_source()
945 node.copy_source(map.on_disk)?, in pack_v1()
966 node.copy_source(map.on_disk)?, in pack_v1()
1071 if let Some(source) = &node.copy_source { in copy_map_remove()
[all …]
H A Don_disk.rs93 copy_source: OptPathSlice, field
293 self.copy_source.start.get() != 0 in has_copy_source()
296 pub(super) fn copy_source<'on_disk>( in copy_source() method
301 Some(read_hg_path(on_disk, self.copy_source)?) in copy_source()
430 copy_source: self.copy_source(on_disk)?.map(Cow::Borrowed), in to_in_memory_node()
618 let copy_source = if let Some(source) = in write_nodes() localVariable
619 node.copy_source(self.dirstate_map.on_disk)? in write_nodes()
659 copy_source, in write_nodes()
678 copy_source, in write_nodes()
/dports/devel/thunar-vcs-plugin/thunar-vcs-plugin-0.2.0/tvp-svn-helper/
H A Dtsh-copy.c56 svn_client_copy_source_t copy_source; in copy_thread() local
76 copy_source.path = from; in copy_thread()
77 copy_source.revision = &revision; in copy_thread()
78 copy_source.peg_revision = &revision; in copy_thread()
79 APR_ARRAY_PUSH (paths, svn_client_copy_source_t *) = &copy_source; in copy_thread()
/dports/biology/seaview/seaview/FL/
H A DFl_SVG_Image.cxx101 void Fl_SVG_Image::init_(const char *filename, const char *in_filedata, Fl_SVG_Image *copy_source) { in init_() argument
102 if (copy_source) { in init_()
104 counted_svg_image_ = copy_source->counted_svg_image_; in init_()
151 } else if (copy_source) { in init_()
152 w(copy_source->w()); in init_()
153 h(copy_source->h()); in init_()
/dports/www/py-boto3/boto3-1.18.61/tests/unit/s3/
H A Dtest_inject.py108 self.copy_source = {'Bucket': 'foo', 'Key': 'bar'}
123 inject.bucket_copy(self.bucket, self.copy_source, Key='key')
125 CopySource=self.copy_source, Bucket=self.bucket.name, Key='key',
147 self.copy_source = {'Bucket': 'foo', 'Key': 'bar'}
162 inject.object_copy(self.obj, self.copy_source)
164 CopySource=self.copy_source, Bucket=self.obj.bucket_name,
/dports/net/py-s3transfer/s3transfer-0.5.0/tests/integration/
H A Dtest_copy.py35 copy_source={'Bucket': self.bucket_name, 'Key': key},
53 copy_source={'Bucket': self.bucket_name, 'Key': key},
72 copy_source={'Bucket': self.bucket_name, 'Key': key},
/dports/devel/mercurial/mercurial-6.0/rust/hg-core/src/copy_tracing/
H A Dtests_support.rs32 macro_rules! copy_source { macro
52 &copy_source!($min_rev, $min_path, $min_overwrite),
53 &copy_source!($maj_rev, $maj_path, $maj_overwrite),
71 copy_source!(
/dports/multimedia/obs-studio/obs-studio-27.1.3/plugins/obs-outputs/
H A Dnet-if.c76 static void netif_push(struct sockaddr *copy_source, in netif_push() argument
82 if (copy_source->sa_family == AF_INET) in netif_push()
83 memcpy(&sa, copy_source, sizeof(struct sockaddr_in)); in netif_push()
84 else if (copy_source->sa_family == AF_INET6) in netif_push()
85 memcpy(&sa, copy_source, sizeof(struct sockaddr_in6)); in netif_push()
/dports/www/py-boto3/boto3-1.18.61/tests/functional/
H A Dtest_s3.py130 self.copy_source = {'Bucket': 'foo', 'Key': 'bar'}
133 self.stub_head(expected_params=self.copy_source)
140 content_length=total_size, expected_params=self.copy_source)
170 "CopySource": self.copy_source
188 "CopySource": self.copy_source,
201 self.copy_source, self.bucket, self.key)
209 response = bucket.copy(self.copy_source, self.key)
217 response = obj.copy(self.copy_source)
233 Bucket=self.bucket, Key=self.key, CopySource=self.copy_source,
/dports/net/p5-Net-Amazon-S3/Net-Amazon-S3-0.99/t/
H A Ds3-operation-object-upload-part.t46 copy_source => 'source-key',
58 copy_source => 'source-key',
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/s3/
H A Dreqbuilder.c67 int copy_source) in add_condition_to_headers() argument
82 if (1 == copy_source) in add_condition_to_headers()
91 if (1 == copy_source) in add_condition_to_headers()
101 if (1 == copy_source) in add_condition_to_headers()
110 if (1 == copy_source) in add_condition_to_headers()
123 int copy_source) in add_conditions_to_headers() argument
129 ret2 = add_condition_to_headers(&condition->conds[i], headers, copy_source); in add_conditions_to_headers()
/dports/sysutils/bareos-client/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/s3/
H A Dreqbuilder.c67 int copy_source) in add_condition_to_headers() argument
82 if (1 == copy_source) in add_condition_to_headers()
91 if (1 == copy_source) in add_condition_to_headers()
101 if (1 == copy_source) in add_condition_to_headers()
110 if (1 == copy_source) in add_condition_to_headers()
123 int copy_source) in add_conditions_to_headers() argument
129 ret2 = add_condition_to_headers(&condition->conds[i], headers, copy_source); in add_conditions_to_headers()
/dports/sysutils/bareos-server/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/s3/
H A Dreqbuilder.c67 int copy_source) in add_condition_to_headers() argument
82 if (1 == copy_source) in add_condition_to_headers()
91 if (1 == copy_source) in add_condition_to_headers()
101 if (1 == copy_source) in add_condition_to_headers()
110 if (1 == copy_source) in add_condition_to_headers()
123 int copy_source) in add_conditions_to_headers() argument
129 ret2 = add_condition_to_headers(&condition->conds[i], headers, copy_source); in add_conditions_to_headers()
/dports/www/bareos-webui/bareos-Release-20.0.3/core/src/droplet/libdroplet/src/backend/s3/
H A Dreqbuilder.c67 int copy_source) in add_condition_to_headers() argument
82 if (1 == copy_source) in add_condition_to_headers()
91 if (1 == copy_source) in add_condition_to_headers()
101 if (1 == copy_source) in add_condition_to_headers()
110 if (1 == copy_source) in add_condition_to_headers()
123 int copy_source) in add_conditions_to_headers() argument
129 ret2 = add_condition_to_headers(&condition->conds[i], headers, copy_source); in add_conditions_to_headers()
/dports/emulators/gxemul/gxemul-0.6.3/src/devices/
H A Ddev_dec21030.cc82 uint32_t copy_source; member
199 d->copy_source = idata; in DEVICE_ACCESS()
209 dev_fb_access(cpu, mem, d->copy_source - 0x1000, in DEVICE_ACCESS()
/dports/www/chromium-legacy/chromium-88.0.4324.182/extensions/common/
H A Durl_pattern.cc650 const URLPattern* copy_source = nullptr; in CreateIntersection() local
652 copy_source = this; in CreateIntersection()
654 copy_source = &other; in CreateIntersection()
656 if (copy_source) { in CreateIntersection()
660 if (intersection_schemes == copy_source->valid_schemes_) in CreateIntersection()
661 return *copy_source; in CreateIntersection()
663 ParseResult parse_result = result.Parse(copy_source->GetAsString()); in CreateIntersection()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/extensions/common/
H A Durl_pattern.cc659 const URLPattern* copy_source = nullptr; in CreateIntersection() local
661 copy_source = this; in CreateIntersection()
663 copy_source = &other; in CreateIntersection()
665 if (copy_source) { in CreateIntersection()
669 if (intersection_schemes == copy_source->valid_schemes_) in CreateIntersection()
670 return *copy_source; in CreateIntersection()
672 ParseResult parse_result = result.Parse(copy_source->GetAsString()); in CreateIntersection()

12345678910>>...13