Home
last modified time | relevance | path

Searched refs:findtext (Results 1 – 25 of 488) sorted by relevance

12345678910>>...20

/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2018_11_09/file/
H A D_deserialization.py116 next_marker = list_element.findtext('NextMarker') or None
124 share.name = share_element.findtext('Name')
127 share.snapshot = share_element.findtext('Snapshot')
175 next_marker = list_element.findtext('NextMarker') or None
183 file.name = file_element.findtext('Name')
195 directory.name = directory_element.findtext('Name')
229 next_marker = list_element.findtext('NextMarker') or None
237 handle.handle_id = handle_element.findtext('HandleId')
238 handle.path = handle_element.findtext('Path')
239 handle.file_id = handle_element.findtext('FileId')
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2018_11_09/blob/
H A D_deserialization.py195 container.name = container_element.findtext('Name')
317 prefix.name = blob_prefix_element.findtext('Name')
322 blob.name = blob_element.findtext('Name')
323 blob.snapshot = blob_element.findtext('Snapshot')
325 deleted = blob_element.findtext('Deleted')
421 blob_list.append(blob_element.findtext('Name'))
457 block_size = int(block_element.findtext('Size'))
466 block_size = int(block_element.findtext('Size'))
509 int(page_range_element.findtext('Start')),
510 int(page_range_element.findtext('End')),
[all …]
/dports/comms/gnuradio/gnuradio-3.8.4.0/grc/converter/
H A Dblock.py73 param_node.findtext('key'): {
79 block_id = node.findtext('key')
85 data['label'] = node.findtext('name') or no_value
111 docs = node.findtext('doc')
152 make = convert(node.findtext('make') or '')
168 param['id'] = node.findtext('key').strip()
169 param['label'] = node.findtext('name').strip()
170 param['category'] = node.findtext('tab') or no_value
195 label = node.findtext('name')
199 dtype = convert(node.findtext('type'))
[all …]
/dports/devel/py-azure-storage-blob/azure-storage-blob-2.1.0/azure/storage/blob/
H A D_deserialization.py209 container.name = container_element.findtext('Name')
331 prefix.name = blob_prefix_element.findtext('Name')
336 blob.name = blob_element.findtext('Name')
337 blob.snapshot = blob_element.findtext('Snapshot')
339 deleted = blob_element.findtext('Deleted')
435 blob_list.append(blob_element.findtext('Name'))
471 block_size = int(block_element.findtext('Size'))
480 block_size = int(block_element.findtext('Size'))
523 int(page_range_element.findtext('Start')),
524 int(page_range_element.findtext('End')),
[all …]
/dports/sysutils/azure-agent/WALinuxAgent-2.2.54.2/azurelinuxagent/common/protocol/
H A Dovfenv.py75 version = findtext(environment, "Version", namespace=wans)
86 self.hostname = findtext(conf_set, "HostName", namespace=wans)
89 self.username = findtext(conf_set, "UserName", namespace=wans)
92 self.user_password = findtext(conf_set, "UserPassword", namespace=wans)
94 self.customdata = findtext(conf_set, "CustomData", namespace=wans)
96 auth_option = findtext(conf_set, "DisableSshPasswordAuthentication",
105 path = findtext(public_key, "Path", namespace=wans)
106 fingerprint = findtext(public_key, "Fingerprint", namespace=wans)
107 value = findtext(public_key, "Value", namespace=wans)
112 path = findtext(keypair, "Path", namespace=wans)
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_11_09/blob/
H A D_deserialization.py186 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
193 container.name = container_element.findtext('Name')
204 container.properties.etag = properties_element.findtext('Etag')
315 prefix.name = blob_prefix_element.findtext('Name')
320 blob.name = blob_element.findtext('Name')
321 blob.snapshot = blob_element.findtext('Snapshot')
323 deleted = blob_element.findtext('Deleted')
384 block_size = int(block_element.findtext('Size'))
393 block_size = int(block_element.findtext('Size'))
436 int(page_range_element.findtext('Start')),
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2018_03_28/blob/
H A D_deserialization.py187 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
194 container.name = container_element.findtext('Name')
205 container.properties.etag = properties_element.findtext('Etag')
316 prefix.name = blob_prefix_element.findtext('Name')
321 blob.name = blob_element.findtext('Name')
322 blob.snapshot = blob_element.findtext('Snapshot')
324 deleted = blob_element.findtext('Deleted')
385 block_size = int(block_element.findtext('Size'))
394 block_size = int(block_element.findtext('Size'))
437 int(page_range_element.findtext('Start')),
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2015_04_05/file/
H A D_deserialization.py91 next_marker = list_element.findtext('NextMarker') or None
99 share.name = share_element.findtext('Name')
110 share.properties.last_modified = parser.parse(properties_element.findtext('Last-Modified'))
111 share.properties.etag = properties_element.findtext('Etag')
112 share.properties.quota = int(properties_element.findtext('Quota'))
146 next_marker = list_element.findtext('NextMarker') or None
154 file.name = file_element.findtext('Name')
158 file.properties.content_length = int(properties_element.findtext('Content-Length'))
166 directory.name = directory_element.findtext('Name')
195 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_11_09/file/
H A D_deserialization.py113 next_marker = list_element.findtext('NextMarker') or None
121 share.name = share_element.findtext('Name')
124 share.snapshot = share_element.findtext('Snapshot')
136 share.properties.etag = properties_element.findtext('Etag')
137 share.properties.quota = int(properties_element.findtext('Quota'))
172 next_marker = list_element.findtext('NextMarker') or None
180 file.name = file_element.findtext('Name')
184 file.properties.content_length = int(properties_element.findtext('Content-Length'))
192 directory.name = directory_element.findtext('Name')
222 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_04_17/file/
H A D_deserialization.py122 next_marker = list_element.findtext('NextMarker') or None
130 share.name = share_element.findtext('Name')
133 share.snapshot = share_element.findtext('Snapshot')
145 share.properties.etag = properties_element.findtext('Etag')
146 share.properties.quota = int(properties_element.findtext('Quota'))
181 next_marker = list_element.findtext('NextMarker') or None
189 file.name = file_element.findtext('Name')
193 file.properties.content_length = int(properties_element.findtext('Content-Length'))
201 directory.name = directory_element.findtext('Name')
231 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_07_29/file/
H A D_deserialization.py113 next_marker = list_element.findtext('NextMarker') or None
121 share.name = share_element.findtext('Name')
124 share.snapshot = share_element.findtext('Snapshot')
136 share.properties.etag = properties_element.findtext('Etag')
137 share.properties.quota = int(properties_element.findtext('Quota'))
172 next_marker = list_element.findtext('NextMarker') or None
180 file.name = file_element.findtext('Name')
184 file.properties.content_length = int(properties_element.findtext('Content-Length'))
192 directory.name = directory_element.findtext('Name')
222 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2018_03_28/file/
H A D_deserialization.py113 next_marker = list_element.findtext('NextMarker') or None
121 share.name = share_element.findtext('Name')
124 share.snapshot = share_element.findtext('Snapshot')
136 share.properties.etag = properties_element.findtext('Etag')
137 share.properties.quota = int(properties_element.findtext('Quota'))
172 next_marker = list_element.findtext('NextMarker') or None
180 file.name = file_element.findtext('Name')
184 file.properties.content_length = int(properties_element.findtext('Content-Length'))
192 directory.name = directory_element.findtext('Name')
222 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_07_29/blob/
H A D_deserialization.py184 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
191 container.name = container_element.findtext('Name')
202 container.properties.etag = properties_element.findtext('Etag')
309 prefix.name = blob_prefix_element.findtext('Name')
314 blob.name = blob_element.findtext('Name')
315 blob.snapshot = blob_element.findtext('Snapshot')
317 deleted = blob_element.findtext('Deleted')
378 block_size = int(block_element.findtext('Size'))
387 block_size = int(block_element.findtext('Size'))
430 int(page_range_element.findtext('Start')),
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2015_04_05/blob/
H A D_deserialization.py171 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
178 container.name = container_element.findtext('Name')
189 container.properties.etag = properties_element.findtext('Etag')
273 setattr(blob_list, 'next_marker', list_element.findtext('NextMarker'))
280 prefix.name = blob_prefix_element.findtext('Name')
285 blob.name = blob_element.findtext('Name')
286 blob.snapshot = blob_element.findtext('Snapshot')
344 block_size = int(block_element.findtext('Size'))
352 block_size = int(block_element.findtext('Size'))
384 int(page_range_element.findtext('Start')),
[all …]
/dports/www/py-azure-storage/azure-storage-0.36.0/azure/storage/file/
H A D_deserialization.py109 next_marker = list_element.findtext('NextMarker') or None
117 share.name = share_element.findtext('Name')
128 share.properties.last_modified = parser.parse(properties_element.findtext('Last-Modified'))
129 share.properties.etag = properties_element.findtext('Etag')
130 share.properties.quota = int(properties_element.findtext('Quota'))
164 next_marker = list_element.findtext('NextMarker') or None
172 file.name = file_element.findtext('Name')
176 file.properties.content_length = int(properties_element.findtext('Content-Length'))
184 directory.name = directory_element.findtext('Name')
213 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2016_05_31/file/
H A D_deserialization.py109 next_marker = list_element.findtext('NextMarker') or None
117 share.name = share_element.findtext('Name')
128 share.properties.last_modified = parser.parse(properties_element.findtext('Last-Modified'))
129 share.properties.etag = properties_element.findtext('Etag')
130 share.properties.quota = int(properties_element.findtext('Quota'))
164 next_marker = list_element.findtext('NextMarker') or None
172 file.name = file_element.findtext('Name')
176 file.properties.content_length = int(properties_element.findtext('Content-Length'))
184 directory.name = directory_element.findtext('Name')
213 range = FileRange(int(range_element.findtext('Start')), int(range_element.findtext('End')))
[all …]
/dports/www/py-azure-storage/azure-storage-0.36.0/azure/storage/blob/
H A D_deserialization.py184 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
191 container.name = container_element.findtext('Name')
202 container.properties.etag = properties_element.findtext('Etag')
291 setattr(blob_list, 'next_marker', list_element.findtext('NextMarker'))
298 prefix.name = blob_prefix_element.findtext('Name')
303 blob.name = blob_element.findtext('Name')
304 blob.snapshot = blob_element.findtext('Snapshot')
362 block_size = int(block_element.findtext('Size'))
371 block_size = int(block_element.findtext('Size'))
413 int(page_range_element.findtext('Start')),
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_04_17/blob/
H A D_deserialization.py193 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
200 container.name = container_element.findtext('Name')
211 container.properties.etag = properties_element.findtext('Etag')
306 setattr(blob_list, 'next_marker', list_element.findtext('NextMarker'))
313 prefix.name = blob_prefix_element.findtext('Name')
318 blob.name = blob_element.findtext('Name')
319 blob.snapshot = blob_element.findtext('Snapshot')
378 block_size = int(block_element.findtext('Size'))
387 block_size = int(block_element.findtext('Size'))
430 int(page_range_element.findtext('Start')),
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2016_05_31/blob/
H A D_deserialization.py184 setattr(containers, 'next_marker', list_element.findtext('NextMarker'))
191 container.name = container_element.findtext('Name')
202 container.properties.etag = properties_element.findtext('Etag')
288 setattr(blob_list, 'next_marker', list_element.findtext('NextMarker'))
295 prefix.name = blob_prefix_element.findtext('Name')
300 blob.name = blob_element.findtext('Name')
301 blob.snapshot = blob_element.findtext('Snapshot')
360 block_size = int(block_element.findtext('Size'))
369 block_size = int(block_element.findtext('Size'))
411 int(page_range_element.findtext('Start')),
[all …]
/dports/net/py-libcloud/apache-libcloud-3.4.1/libcloud/loadbalancer/drivers/
H A Dalb.py20 from libcloud.utils.xml import findtext, findall
732 listener_id=findtext(element=el, xpath='ListenerArn',
741 ssl_certificate=findtext(
757 ip=findtext(el, xpath='DNSName', namespace=NS),
765 'vpc': findtext(el, xpath='VpcId', namespace=NS)
826 rule._target_group_arn = findtext(
860 health_check_proto=findtext(element=el,
863 health_check_interval=int(findtext(
866 healthy_threshold=int(findtext(
869 unhealthy_threshold=int(findtext(element=el,
[all …]
/dports/cad/fritzing/fritzing-parts-0.9.2b/parts/part-gen-scripts/misc_scripts/
H A Dreplace.py47 findtext = options.find
56 if findtext.startswith('"') or findtext.startswith("'"):
57 findtext = findtext[1:-1]
62 print "replace text",findtext,"with",replacetext,"in", suffix,"files"
71 rslt = svg.find(findtext)
73 svg = svg.replace(findtext, replacetext)
/dports/security/pwman3/Pwman3-0.0.6/pwman/exchange/
H A Dimporter.py57 username = i.findtext("user")
58 password = i.findtext("passwd")
59 url = i.findtext("host")
60 notes = "%s | %s" % (i.findtext("name"), i.findtext("launch"))
79 username = n.findtext("username")
80 password = n.findtext("password")
81 url = n.findtext("url")
82 notes = n.findtext("notes")
/dports/net/libgweather/libgweather-40.0/data/
H A Dgen_locations_variant.py53 coordinates = elem.findtext('coordinates')
112 tz_hint = loc.findtext('tz-hint')
148 loc.findtext('zone', default=''),
149 loc.findtext('radar', default=''),
151 loc.findtext('iso-code', default=''),
152 loc.findtext('code', default=''),
166 assert location.findtext('code') is not None
172 c = location.findtext('iso-code')
183 assert location.findtext('code') is not None
190 loc_by_country.sort(key=lambda loc: loc.findtext('iso-code'))
[all …]
/dports/net/py-libcloud/apache-libcloud-3.4.1/libcloud/compute/drivers/
H A Dnttcis.py58 from libcloud.utils.xml import fixxpath, findtext, findall
5093 name=findtext(element, 'name', TYPES_URN),
5152 size=findtext(element, 'size', TYPES_URN),
5176 id=findtext(element, 'id', NETWORK_NS),
5198 plan = findtext(element, 'type', TYPES_URN)
5205 name=findtext(element, 'name', TYPES_URN),
5231 name=findtext(element, 'name', TYPES_URN),
5239 ipv4_gateway=findtext(
5243 ipv6_gateway=findtext(
5346 findtext(element, 'vlanId', TYPES_URN),
[all …]
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2015_04_05/queue/
H A D_deserialization.py81 next_marker = list_element.findtext('NextMarker') or None
89 queue.name = queue_element.findtext('Name')
127 message.id = message_element.findtext('MessageId')
128 message.dequeue_count = message_element.findtext('DequeueCount')
130 message.content = decode_function(message_element.findtext('MessageText'))
132 message.insertion_time = parser.parse(message_element.findtext('InsertionTime'))
133 message.expiration_time = parser.parse(message_element.findtext('ExpirationTime'))
135 message.pop_receipt = message_element.findtext('PopReceipt')

12345678910>>...20