/third_party/nghttp2/src/ |
D | shrpx_router_test.cc | 53 Router router; in test_shrpx_router_match() local 56 router.add_route(p.pattern, p.idx); in test_shrpx_router_match() 61 idx = router.match(StringRef::from_lit("nghttp2.org"), in test_shrpx_router_match() 66 idx = router.match(StringRef::from_lit("nghttp2.org"), in test_shrpx_router_match() 71 idx = router.match(StringRef::from_lit("nghttp2.org"), in test_shrpx_router_match() 76 idx = router.match(StringRef::from_lit("nghttp2.org"), in test_shrpx_router_match() 81 idx = router.match(StringRef::from_lit("nghttp2.org"), in test_shrpx_router_match() 87 idx = router.match(StringRef::from_lit("nghttp2.org"), in test_shrpx_router_match() 92 idx = router.match(StringRef::from_lit("www2.nghttp2.org"), in test_shrpx_router_match() 97 idx = router.match(StringRef{}, StringRef::from_lit("/alpha")); in test_shrpx_router_match() [all …]
|
D | shrpx_worker_test.cc | 56 auto &router = routerconf.router; in test_shrpx_worker_match_downstream_addr_group() local 62 router.add_route(StringRef{g->pattern}, i); in test_shrpx_worker_match_downstream_addr_group() 206 wp.back().router.add_route(StringRef::from_lit("/echo/"), 10); in test_shrpx_worker_match_downstream_addr_group() 210 wp.back().router.add_route(StringRef::from_lit("/echo/"), 11); in test_shrpx_worker_match_downstream_addr_group() 211 wp.back().router.add_route(StringRef::from_lit("/echo/foxtrot"), 12); in test_shrpx_worker_match_downstream_addr_group() 215 wp.back().router.add_route(StringRef::from_lit("/"), 13); in test_shrpx_worker_match_downstream_addr_group()
|
D | shrpx_worker.cc | 586 const auto &router = routerconf.router; in match_downstream_addr_group_host() local 595 auto group = router.match(host, path); in match_downstream_addr_group_host() 625 auto group = wc.router.match(StringRef{}, path); in match_downstream_addr_group_host() 643 group = router.match(StringRef::from_lit(""), path); in match_downstream_addr_group_host()
|
D | shrpx_config.cc | 1093 auto &routerconf = downstreamconf.router; in parse_mapping() 1094 auto &router = routerconf.router; in parse_mapping() local 1238 auto &router = wildcard_patterns.back().router; in parse_mapping() local 1239 router.add_route(path, idx, path_is_wildcard); in parse_mapping() 1249 (*it).router.add_route(path, idx, path_is_wildcard); in parse_mapping() 1262 router.add_route(pattern, idx, path_is_wildcard); in parse_mapping() 4013 auto &routerconf = downstreamconf.router; in configure_downstream_group() 4014 auto &router = routerconf.router; in configure_downstream_group() local 4026 router.add_route(g.pattern, addr_groups.size()); in configure_downstream_group()
|
D | shrpx_config.h | 829 Router router; member 834 Router router; member 875 RouterConfig router; member
|
/third_party/flutter/flutter/packages/flutter/test/gestures/ |
D | pointer_router_test.dart | 20 final PointerRouter router = PointerRouter(); 21 router.addRoute(3, callback); 22 router.route(pointer2.down(Offset.zero)); 24 router.route(pointer3.down(Offset.zero)); 27 router.removeRoute(3, callback); 28 router.route(pointer3.up()); 37 final PointerRouter router = PointerRouter(); 38 router.addRoute(2, (PointerEvent event) { 39 router.removeRoute(2, callback); 41 router.addRoute(2, callback); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | tsxPreserveEmit1.types | 2 // Should emit 'react-router' in the AMD dependency list 6 import ReactRouter = require('react-router'); 55 declare module 'react-router' { 56 >'react-router' : typeof import("react-router")
|
D | tsxPreserveEmit1.symbols | 2 // Should emit 'react-router' in the AMD dependency list 6 import ReactRouter = require('react-router'); 54 declare module 'react-router' { 55 >'react-router' : Symbol("react-router", Decl(react.d.ts, 8, 1))
|
D | getFileReferences_server2.baseline.jsonc | 7 // === /packages/server/router.js === 21 "fileName": "/packages/server/router.js",
|
/third_party/typescript/tests/cases/conformance/jsx/ |
D | tsxPreserveEmit1.tsx | 15 declare module 'react-router' { 20 // Should emit 'react-router' in the AMD dependency list 22 import ReactRouter = require('react-router');
|
/third_party/flutter/flutter/packages/flutter/lib/src/gestures/ |
D | pointer_router.dart | 36 /// pointer. Requires that this route was previously added to the router. 82 router: this, 113 /// library's pointer router ([PointerRouter]). 128 this.router, 142 /// The pointer router that caught the exception. 146 final PointerRouter router;
|
D | mouse_tracking.dart | 95 MouseTracker(PointerRouter router, this.annotationFinder) 96 : assert(router != null), 98 router.addGlobalRoute(_handleEvent);
|
D | multidrag.dart | 244 // add ourselves to the pointer router then (before the pointer router has heard of
|
/third_party/cef/libcef_dll/wrapper/ |
D | cef_message_router.cc | 70 CallbackImpl(CefRefPtr<CefMessageRouterBrowserSideImpl> router, in CallbackImpl() argument 74 : router_(router), in CallbackImpl() 505 Visitor(CefMessageRouterBrowserSideImpl* router, in CancelPendingFor() argument 508 : router_(router), in CancelPendingFor() 546 Visitor(CefMessageRouterBrowserSideImpl* router, in CancelPendingRequest() argument 549 : router_(router), context_id_(context_id), request_id_(request_id) {} in CancelPendingRequest() 601 V8HandlerImpl(CefRefPtr<CefMessageRouterRendererSideImpl> router, in V8HandlerImpl() argument 603 : router_(router), config_(config), context_id_(kReservedId) {} in V8HandlerImpl()
|
/third_party/mindspore/mindspore/parallel/nn/ |
D | moe.py | 123 self.router = Router(d_model=hidden_size, moe_config=moe_config, routing_policy=None, 139 dispatch_tensor, combine_tensor, aux_loss = self.router(input_tensor) 278 self.router = SwitchRouter(d_model=d_model, moe_config=moe_config, training=training, 281 self.router = routing_policy 291 return self.router(router_logits)
|
/third_party/ltp/testcases/network/dhcp/ |
D | dnsmasq_tests.sh | 26 --dhcp-option=option:router --dhcp-option=option:dns-server
|
/third_party/jerryscript/targets/openwrt/ |
D | readme.md | 4 for OpenWrt. For target device the TP-Link WR1043ND v1.x router is 26 the target router/device. The toolchain setup in this document was
|
/third_party/grpc/src/proto/grpc/testing/xds/v3/ |
D | route.proto | 31 // * HTTP :ref:`router filter <config_http_filters_router>` 97 // traffic to be forwarded to each cluster. The router selects an upstream cluster based on the 155 // value, the router continues to evaluate the remaining match criteria. A runtime_fraction 169 // Specifies a set of headers that the route should match on. The router will 177 // match. The router will check the query string from the *path* header 321 // * HTTP :ref:`router filter <config_http_filters_router>`
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/ |
D | UnitsTest.java | 650 … UnitsRouter router = new UnitsRouter(testCase.inputUnit.second, testCase.region, testCase.usage); 651 … List<Measure> measures = router.route(testCase.input, null).complexConverterResult.measures; 671 … UnitsRouter router = new UnitsRouter(testCase.inputUnit.first, testCase.region, testCase.usage); 672 … List<Measure> measures = router.route(testCase.input, null).complexConverterResult.measures;
|
/third_party/iptables/extensions/ |
D | libxt_TCPMSS.man | 12 firewall/router, but machines behind it can never exchange large
|
/third_party/cef/patch/patches/ |
D | gn_config.patch | 24 import("//chrome/browser/media/router/features.gni")
|
/third_party/icu/icu4c/source/test/intltest/ |
D | units_test.cpp | 942 UnitsRouter router(inputMeasureUnit, region, usage, status); in unitPreferencesTestDataLineFn() local 961 RouteResult routeResult = router.route(inputAmount, nullptr, status); in unitPreferencesTestDataLineFn()
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/ |
D | browser_location.dart | 9 // Some parts of this file were inspired/copied from the AngularDart router.
|
/third_party/node/doc/api/ |
D | dgram.md | 663 router or gateway that forwards a packet decrements the TTL. If the TTL is 664 decremented to 0 by a router, it will not be forwarded. 703 travel through. Each router or gateway that forwards a packet decrements the 704 TTL. If the TTL is decremented to 0 by a router, it will not be forwarded.
|
/third_party/toybox/toys/pending/ |
D | dhcp.c | 392 uint32_t mask, nip, router; in strtoopt() local 487 if (striptovar(tp, (uint8_t*)&router) < 0) error_exit("malformed static route option"); in strtoopt() 493 memcpy(((uint8_t*)options_list[count].val)+options_list[count].len, &router, 4); in strtoopt()
|