Home
last modified time | relevance | path

Searched refs:values (Results 1 – 8 of 8) sorted by path

/unit/
H A DCHANGES116 *) Feature: default values for 'make install' pathnames such as prefix;
122 *) Bugfix: request header field values could be corrupted in some cases;
938 *) Bugfix: header fields values with non-ASCII bytes might be handled
945 values.
961 API were reset to previous values after the first request in
1029 values.
/unit/docs/
H A Dunit-openapi.yaml5644 and `index` values."
5714 `callable` values."
/unit/src/java/nginx/unit/websocket/
H A DLocalStrings.properties41 …ndowSize=An invalid windows of [{1}] size was specified for [{0}]. Valid values are whole numbers …
138 wsWebSocketContainer.invalidSubProtocol=The WebSocket server returned multiple values for the Sec-W…
H A DWsHandshakeResponse.java45 List<String> values = new ArrayList<>(entry.getValue()); in WsHandshakeResponse() local
46 this.headers.put(entry.getKey(), values); in WsHandshakeResponse() local
H A DWsWebSocketContainer.java748 private static ByteBuffer addHeader(ByteBuffer result, String key, List<String> values) { in addHeader() argument
749 if (values.isEmpty()) { in addHeader()
755 … result = putWithExpand(result, StringUtils.join(values).getBytes(StandardCharsets.ISO_8859_1)); in addHeader()
864 List<String> values = headers.get(headerName); in parseHeaders() local
865 if (values == null) { in parseHeaders()
866 values = new ArrayList<>(1); in parseHeaders()
867 headers.put(headerName, values); in parseHeaders()
869 values.add(headerValue); in parseHeaders()
/unit/test/java/get_params/
H A Dapp.java36 String values = ""; in doGet() local
38 values = values.concat(parameter_values[i] + " "); in doGet()
40 response.addHeader("X-Param-Values", values); in doGet()
/unit/test/
H A Dtest_java_application.py80 values = header.split(' ')[:-1]
81 assert len(values) == len(expect)
82 assert set(values) == set(expect)
H A Dtest_settings.py288 values = re.findall(r'net.core.[rw]mem_(?:max|default).*?(\d+)', sysctl_out)
289 values = [int(v) for v in values]
291 data_len = 1048576 if len(values) == 0 else 10 * max(values)