Home
last modified time | relevance | path

Searched refs:max_length (Results 201 – 225 of 13767) sorted by relevance

12345678910>>...551

/dports/net-mgmt/netbox/netbox-3.0.12/netbox/extras/models/
H A Dmodels.py54 max_length=150,
70 max_length=500,
78 max_length=30,
84 max_length=100,
103 max_length=255,
206 max_length=50,
211 max_length=30,
245 max_length=100
256 max_length=50,
262 max_length=15,
[all …]
/dports/devel/py-azure-mgmt-servicebus/azure-mgmt-servicebus-6.0.0/azure/mgmt/servicebus/aio/operations/
H A D_disaster_recovery_configs_operations.py77 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
222 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
223 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
291 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
292 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
352 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
416 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
480 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
553 … 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
629 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
[all …]
/dports/devel/py-azure-mgmt-servicebus/azure-mgmt-servicebus-6.0.0/azure/mgmt/servicebus/operations/
H A D_disaster_recovery_configs_operations.py82 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
229 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
230 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
299 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
300 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
361 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
426 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
491 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
565 … 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
642 'alias': self._serialize.url("alias", alias, 'str', max_length=50, min_length=1),
[all …]
/dports/archivers/py-lzma/pylzma-0.5.0/src/pylzma/
H A Dpylzma_decompressobj_compat.c44 PY_LONG_LONG max_length=BLOCK_SIZE; in pylzma_decomp_decompress() local
46 if (!PyArg_ParseTuple(args, "s#|L", &data, &length, &max_length)) in pylzma_decomp_decompress()
49 if (max_length < 0) in pylzma_decomp_decompress()
65 if (max_length && max_length < length) in pylzma_decomp_decompress()
66 length = max_length; in pylzma_decomp_decompress()
80 if (max_length && length >= max_length) in pylzma_decomp_decompress()
85 if (max_length && length > max_length) in pylzma_decomp_decompress()
86 length = max_length; in pylzma_decomp_decompress()
116 if (max_length != 0) { in pylzma_decomp_decompress()
/dports/databases/mariadb105-client/mariadb-10.5.15/mysys/
H A Dstring.c45 str->max_length=init_alloc; in init_dynamic_string()
56 if (init_str && (length= (uint) strlen(init_str)+1) > str->max_length) in dynstr_set()
58 str->max_length=((length+str->alloc_increment-1)/str->alloc_increment)* in dynstr_set()
60 if (!str->max_length) in dynstr_set()
61 str->max_length=str->alloc_increment; in dynstr_set()
82 if (str->length + additional_size > str->max_length) in dynstr_realloc()
84 str->max_length=((str->length + additional_size+str->alloc_increment-1)/ in dynstr_realloc()
87 str->max_length, MYF(MY_WME)))) in dynstr_realloc()
105 if (str->length+length >= str->max_length) in dynstr_append_mem()
114 str->max_length=new_length; in dynstr_append_mem()
[all …]
/dports/databases/mariadb104-server/mariadb-10.4.24/mysys/
H A Dstring.c44 str->max_length=init_alloc; in init_dynamic_string()
55 if (init_str && (length= (uint) strlen(init_str)+1) > str->max_length) in dynstr_set()
57 str->max_length=((length+str->alloc_increment-1)/str->alloc_increment)* in dynstr_set()
59 if (!str->max_length) in dynstr_set()
60 str->max_length=str->alloc_increment; in dynstr_set()
61 if (!(str->str=(char*) my_realloc(str->str,str->max_length,MYF(MY_WME)))) in dynstr_set()
80 if (str->length + additional_size > str->max_length) in dynstr_realloc()
82 str->max_length=((str->length + additional_size+str->alloc_increment-1)/ in dynstr_realloc()
102 if (str->length+length >= str->max_length) in dynstr_append_mem()
110 str->max_length=new_length; in dynstr_append_mem()
[all …]
/dports/databases/mariadb104-client/mariadb-10.4.24/mysys/
H A Dstring.c44 str->max_length=init_alloc;
55 if (init_str && (length= (uint) strlen(init_str)+1) > str->max_length)
57 str->max_length=((length+str->alloc_increment-1)/str->alloc_increment)*
59 if (!str->max_length)
60 str->max_length=str->alloc_increment;
61 if (!(str->str=(char*) my_realloc(str->str,str->max_length,MYF(MY_WME))))
80 if (str->length + additional_size > str->max_length)
82 str->max_length=((str->length + additional_size+str->alloc_increment-1)/
102 if (str->length+length >= str->max_length)
110 str->max_length=new_length;
[all …]
/dports/databases/mariadb103-server/mariadb-10.3.34/mysys/
H A Dstring.c44 str->max_length=init_alloc; in init_dynamic_string()
55 if (init_str && (length= (uint) strlen(init_str)+1) > str->max_length) in dynstr_set()
57 str->max_length=((length+str->alloc_increment-1)/str->alloc_increment)* in dynstr_set()
59 if (!str->max_length) in dynstr_set()
60 str->max_length=str->alloc_increment; in dynstr_set()
61 if (!(str->str=(char*) my_realloc(str->str,str->max_length,MYF(MY_WME)))) in dynstr_set()
80 if (str->length + additional_size > str->max_length) in dynstr_realloc()
82 str->max_length=((str->length + additional_size+str->alloc_increment-1)/ in dynstr_realloc()
102 if (str->length+length >= str->max_length) in dynstr_append_mem()
110 str->max_length=new_length; in dynstr_append_mem()
[all …]
/dports/databases/mariadb103-client/mariadb-10.3.34/mysys/
H A Dstring.c44 str->max_length=init_alloc; in init_dynamic_string()
55 if (init_str && (length= (uint) strlen(init_str)+1) > str->max_length) in dynstr_set()
57 str->max_length=((length+str->alloc_increment-1)/str->alloc_increment)* in dynstr_set()
59 if (!str->max_length) in dynstr_set()
60 str->max_length=str->alloc_increment; in dynstr_set()
61 if (!(str->str=(char*) my_realloc(str->str,str->max_length,MYF(MY_WME)))) in dynstr_set()
80 if (str->length + additional_size > str->max_length) in dynstr_realloc()
82 str->max_length=((str->length + additional_size+str->alloc_increment-1)/ in dynstr_realloc()
102 if (str->length+length >= str->max_length) in dynstr_append_mem()
110 str->max_length=new_length; in dynstr_append_mem()
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/mysys/
H A Dstring.c45 str->max_length=init_alloc; in init_dynamic_string()
56 if (init_str && (length= (uint) strlen(init_str)+1) > str->max_length) in dynstr_set()
58 str->max_length=((length+str->alloc_increment-1)/str->alloc_increment)* in dynstr_set()
60 if (!str->max_length) in dynstr_set()
61 str->max_length=str->alloc_increment; in dynstr_set()
82 if (str->length + additional_size > str->max_length) in dynstr_realloc()
84 str->max_length=((str->length + additional_size+str->alloc_increment-1)/ in dynstr_realloc()
87 str->max_length, MYF(MY_WME)))) in dynstr_realloc()
105 if (str->length+length >= str->max_length) in dynstr_append_mem()
114 str->max_length=new_length; in dynstr_append_mem()
[all …]
/dports/devel/py-azure-mgmt-eventhub/azure-mgmt-eventhub-9.1.0/azure/mgmt/eventhub/v2015_08_01/operations/
H A D_consumer_groups_operations.py87 …self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1…
88 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
89 …'eventHubName': self._serialize.url("event_hub_name", event_hub_name, 'str', max_length=50, min_le…
90 …self._serialize.url("consumer_group_name", consumer_group_name, 'str', max_length=50, min_length=1…
157 …self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1…
158 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
159 …'eventHubName': self._serialize.url("event_hub_name", event_hub_name, 'str', max_length=50, min_le…
221 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
222 …'eventHubName': self._serialize.url("event_hub_name", event_hub_name, 'str', max_length=50, min_le…
292 …aceName': self._serialize.url("namespace_name", namespace_name, 'str', max_length=50, min_length=6…
[all …]
/dports/games/julius/julius-1.7.0/src/platform/switch/
H A Dswitch.c51 static const uint8_t *switch_keyboard_get(const uint8_t *text, int max_length) in switch_keyboard_get() argument
53 max_length = calc_bound(max_length, 0, MAX_VKBD_TEXT_SIZE); in switch_keyboard_get()
54 string_copy(text, vkbd.text, max_length); in switch_keyboard_get()
55 encoding_to_utf8(text, vkbd.utf8_text, max_length, 0); in switch_keyboard_get()
65 rc = swkbdShow(&kbd, vkbd.utf8_text, max_length); in switch_keyboard_get()
68 encoding_from_utf8(vkbd.utf8_text, vkbd.text, max_length); in switch_keyboard_get()
/dports/www/py-django-polymorphic/django-polymorphic-2.1.2/example/orders/
H A Dmodels.py15 title = models.CharField(_("Title"), max_length=200)
33 currency = models.CharField(default="USD", max_length=3)
51 card_type = models.CharField(max_length=10)
65 bank_name = models.CharField(max_length=100)
66 swift = models.CharField(max_length=20)
78 iban = models.CharField(max_length=34)
79 bic = models.CharField(max_length=11)
/dports/games/augustus/augustus-3.1.0/src/platform/switch/
H A Dswitch.c51 static const uint8_t *switch_keyboard_get(const uint8_t *text, int max_length) in switch_keyboard_get() argument
53 max_length = calc_bound(max_length, 0, MAX_VKBD_TEXT_SIZE); in switch_keyboard_get()
54 string_copy(text, vkbd.text, max_length); in switch_keyboard_get()
55 encoding_to_utf8(text, vkbd.utf8_text, max_length, 0); in switch_keyboard_get()
65 rc = swkbdShow(&kbd, vkbd.utf8_text, max_length); in switch_keyboard_get()
68 encoding_from_utf8(vkbd.utf8_text, vkbd.text, max_length); in switch_keyboard_get()
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/glsl-1.50/execution/
H A Dget-active-attrib-array.c119 GLint max_length = 0; in piglit_init() local
127 glGetProgramiv(prog, GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &max_length); in piglit_init()
133 pass = getAttribLocTest(prog, active_attribs, max_length, "a", 1) && pass; in piglit_init()
134 pass = getAttribLocTest(prog, active_attribs, max_length, "b", 2) && pass; in piglit_init()
135 pass = getAttribLocTest(prog, active_attribs, max_length, "c", 3) && pass; in piglit_init()
136 pass = getAttribLocTest(prog, active_attribs, max_length, "d", 4) && pass; in piglit_init()
137 pass = getAttribLocTest(prog, active_attribs, max_length, "e", 5) && pass; in piglit_init()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/localization/locale.stdcvt/
H A Dcodecvt_utf8_utf16_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
H A Dcodecvt_utf16_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
H A Dcodecvt_utf8_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/localization/locale.stdcvt/
H A Dcodecvt_utf8_utf16_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
H A Dcodecvt_utf8_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
H A Dcodecvt_utf16_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/localization/locale.stdcvt/
H A Dcodecvt_utf8_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
H A Dcodecvt_utf8_utf16_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
H A Dcodecvt_utf16_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/localization/locale.stdcvt/
H A Dcodecvt_utf8_max_length.pass.cpp31 int r = c.max_length(); in main()
37 int r = c.max_length(); in main()
43 int r = c.max_length(); in main()
49 int r = c.max_length(); in main()
55 int r = c.max_length(); in main()
61 int r = c.max_length(); in main()

12345678910>>...551