Home
last modified time | relevance | path

Searched refs:max_part_size (Results 1 – 25 of 98) sorted by relevance

1234

/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/transfer/emerge/planner/
H A Dplanner.py92 max_part_size=None, argument
96 self.max_part_size = max_part_size or self.DEFAULT_MAX_PART_SIZE
97 assert self.min_part_size <= self.recommended_upload_part_size <= self.max_part_size
105 max_part_size=None argument
111 if max_part_size is None and recommended_upload_part_size > cls.DEFAULT_MAX_PART_SIZE:
112 max_part_size = recommended_upload_part_size
116 'max_part_size': max_part_size,
258 part_count = int(fragment_length / self.max_part_size)
259 last_part_length = fragment_length % self.max_part_size
261 last_part_length = self.max_part_size
/dports/sysutils/bareos19-traymonitor/bareos-Release-19.2.11/core/src/stored/
H A Ddevice_resource.cc71 , max_part_size(0)
152 max_part_size = other.max_part_size; in DeviceResource()
215 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h80 int64_t max_part_size; /**< Max part size */ variable
/dports/sysutils/bareos19-server/bareos-Release-19.2.11/core/src/stored/
H A Ddevice_resource.cc71 , max_part_size(0)
152 max_part_size = other.max_part_size; in DeviceResource()
215 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h80 int64_t max_part_size; /**< Max part size */ variable
/dports/sysutils/bareos19-client/bareos-Release-19.2.11/core/src/stored/
H A Ddevice_resource.cc71 , max_part_size(0)
152 max_part_size = other.max_part_size; in DeviceResource()
215 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h80 int64_t max_part_size; /**< Max part size */ variable
/dports/www/bareos19-webui/bareos-Release-19.2.11/core/src/stored/
H A Ddevice_resource.cc71 , max_part_size(0)
152 max_part_size = other.max_part_size; in DeviceResource()
215 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h80 int64_t max_part_size; /**< Max part size */ variable
/dports/sysutils/bareos-client/bareos-Release-20.0.3/core/src/stored/
H A Ddevice_resource.cc73 , max_part_size(0)
156 max_part_size = other.max_part_size; in DeviceResource()
219 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h81 int64_t max_part_size; /**< Max part size */ variable
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/core/src/stored/
H A Ddevice_resource.cc73 , max_part_size(0)
156 max_part_size = other.max_part_size; in DeviceResource()
219 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h81 int64_t max_part_size; /**< Max part size */ variable
/dports/sysutils/bareos-server/bareos-Release-20.0.3/core/src/stored/
H A Ddevice_resource.cc73 , max_part_size(0)
156 max_part_size = other.max_part_size; in DeviceResource()
219 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h81 int64_t max_part_size; /**< Max part size */ variable
/dports/www/bareos-webui/bareos-Release-20.0.3/core/src/stored/
H A Ddevice_resource.cc73 , max_part_size(0)
156 max_part_size = other.max_part_size; in DeviceResource()
219 max_part_size = rhs.max_part_size; in operator =()
H A Ddevice_resource.h81 int64_t max_part_size; /**< Max part size */ variable
/dports/sysutils/wimlib/wimlib-1.13.0/src/
H A Dsplit.c57 u64 max_part_size; member
189 blob_stored_size >= swm_info->max_part_size) in add_blob_to_swm()
238 swm_info.max_part_size = part_size; in wimlib_split()
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-core/cirq/contrib/acquaintance/
H A Dshift_swap_network_test.py24 def random_part_lens(max_n_parts, max_part_size): argument
25 return tuple(random.randint(1, max_part_size) for _ in range(random.randint(1, max_n_parts)))
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-core/cirq/contrib/acquaintance/
H A Dshift_swap_network_test.py24 def random_part_lens(max_n_parts, max_part_size): argument
25 return tuple(random.randint(1, max_part_size) for _ in range(random.randint(1, max_n_parts)))
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-core/cirq/contrib/acquaintance/
H A Dshift_swap_network_test.py24 def random_part_lens(max_n_parts, max_part_size): argument
25 return tuple(random.randint(1, max_part_size) for _ in range(random.randint(1, max_n_parts)))
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-core/cirq/contrib/acquaintance/
H A Dshift_swap_network_test.py24 def random_part_lens(max_n_parts, max_part_size): argument
25 return tuple(random.randint(1, max_part_size) for _ in range(random.randint(1, max_n_parts)))
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-core/cirq/contrib/acquaintance/
H A Dshift_swap_network_test.py24 def random_part_lens(max_n_parts, max_part_size): argument
25 return tuple(random.randint(1, max_part_size) for _ in range(random.randint(1, max_n_parts)))
/dports/devel/aws-c-s3/aws-c-s3-0.1.27/source/
H A Ds3_client.c327 if (client_config->max_part_size != 0) { in aws_s3_client_new()
328 *((size_t *)&client->max_part_size) = client_config->max_part_size; in aws_s3_client_new()
330 *((size_t *)&client->max_part_size) = s_default_max_part_size; in aws_s3_client_new()
333 if (client_config->max_part_size < client_config->part_size) { in aws_s3_client_new()
334 *((size_t *)&client_config->max_part_size) = client_config->part_size; in aws_s3_client_new()
788 size_t client_max_part_size = client->max_part_size; in s_s3_client_meta_request_factory_default()
/dports/devel/aws-c-s3/aws-c-s3-0.1.27/include/aws/s3/
H A Ds3_client.h107 size_t max_part_size; member

1234