Home
last modified time | relevance | path

Searched refs:names (Results 1 – 20 of 20) sorted by path

/unit/
H A DCHANGES466 HTTP header field names.
530 names.
853 *) Bugfix: names of response header fields in Node.js module were
H A DLICENSE140 names, trademarks, service marks, or product names of the Licensor,
/unit/docs/
H A Dunit-openapi.yaml23 their names, array items—by their indexes (`/array/0/`).
403 summary: "Endpoint for the certificate's alternative names"
406 summary: "Retrieve the alternative names array from the
409 description: "Retrieves the alternative names array from a
421 description: "OK; the certificate subject's alternative names array
4853 summary: "Array of certificate bundle names"
6165 description: "If `true`, Unit only processes header names made of
/unit/pkg/deb/
H A DMakefile.jsc1066 Other names may be trademarks of their respective owners.
H A DMakefile.jsc1166 Other names may be trademarks of their respective owners.
H A DMakefile.jsc1666 Other names may be trademarks of their respective owners.
H A DMakefile.jsc1766 Other names may be trademarks of their respective owners.
H A DMakefile.jsc1866 Other names may be trademarks of their respective owners.
H A DMakefile.jsc1966 Other names may be trademarks of their respective owners.
H A DMakefile.jsc2066 Other names may be trademarks of their respective owners.
H A DMakefile.jsc2166 Other names may be trademarks of their respective owners.
H A DMakefile.jsc866 Other names may be trademarks of their respective owners.
/unit/pkg/deb/debian.module/
H A Dcopyright.unit-jsc-common425 names, trademarks, service marks, or product names of the Licensor,
/unit/pkg/deb/debian/
H A Dunit.preinst13 To see the available modules, run: apt search --names-only '^unit-'
/unit/pkg/rpm/rpmbuild/SOURCES/
H A DCOPYRIGHT.unit-jsc-common425 names, trademarks, service marks, or product names of the Licensor,
/unit/src/java/
H A DREADME.JSR-34016 Other names may be trademarks of their respective owners.
/unit/src/java/nginx/unit/
H A DContext.java1187 NodeList names = filter_el.getElementsByTagName("filter-name"); in processWebXml() local
1188 if (names == null || names.getLength() != 1) { in processWebXml()
1192 String filter_name = names.item(0).getTextContent().trim(); in processWebXml()
1238 if (names == null || names.getLength() != 1) { in processWebXml()
1242 String filter_name = names.item(0).getTextContent().trim(); in processWebXml()
1285 if (names == null || names.getLength() != 1) { in processWebXml()
1289 String servlet_name = names.item(0).getTextContent().trim(); in processWebXml()
1346 if (names == null || names.getLength() != 1) { in processWebXml()
1350 String servlet_name = names.item(0).getTextContent().trim(); in processWebXml()
3072 Set<String> names = attributes_.keySet();
[all …]
H A DRequest.java683 Set<String> names = attributes.keySet(); in getAttributeNames() local
684 return Collections.enumeration(names); in getAttributeNames()
/unit/src/
H A Dnxt_cert.c659 nxt_conf_value_t *object, *names; in nxt_cert_name_details() local
693 names = nxt_cert_alt_names_details(mp, alt_names); in nxt_cert_name_details()
697 if (nxt_slow_path(names == NULL)) { in nxt_cert_name_details()
704 names = NULL; in nxt_cert_name_details()
717 if (n == 1 && names != NULL) { in nxt_cert_name_details()
718 nxt_conf_set_member(object, &alt_names_str, names, i++); in nxt_cert_name_details()
/unit/test/java/get_params/
H A Dapp.java28 String names = ""; in doGet() local
30 names = names.concat(parameter_names.nextElement() + " "); in doGet()
32 response.addHeader("X-Param-Names", names); in doGet()