Search completed in 0.85 seconds.
20 results for "routes":
Your results are loading. Please wait...
Routing in Ember - Learn web development
creating the routes let's start by creating three new routes: "index", "active" and "completed".
... in each case, replace {{outlet}} with <todolist /> so at this point, if you try the app again and visit any of the three routes localhost:4200 localhost:4200/active localhost:4200/completed you'll see exactly the same thing.
...so we have our routes in place.
...And 8 more matches
Server-side web frameworks - Learn web development
for example, the flask (python) web framework adds routes to view functions using a decorator.
... restful routes, plugins, commands, perl-ish templates, content negotiation, session management, form validation, testing framework, static file server, cgi/psgi detection, and first-class unicode support.
Ember resources and troubleshooting - Learn web development
for framework-specific things, there is the ember-inspector add-on, which allows inspection of: routes & controllers components services promises data (i.e: from a remote api — from ember-data, by default) deprecation information render performance for general javascript debugging, check out our guides on javascript debugging as well as interacting with the browser's other debugging tools.
... what is the purpose of routes?
Firefox addons developer guide - Archive of obsolete content
these should use the previous, next, and prevnext templates to add quick routes to get from chapter to chapter.
HTTP Class Overview - Archive of obsolete content
s preferences owns the authentication cache holds references to frequently used services nshttpchannel implements nsihttpchannel talks to the cache initiates http transactions processes http response codes intercepts progress notifications nshttpconnection implements nsistreamlistener & nsistreamprovider talks to the socket transport service feeds data to its transaction object routes progress notifications nshttpconnectioninfo identifies a connection nshttptransaction implements nsirequest encapsulates a http request and response parses incoming data nshttpchunkeddecoder owned by a transaction strips chunked transfer encoding nshttprequesthead owns a nshttpheaderarray knows how to fill a request buffer nshttpresponsehead owns a nshttpheaderarray ...
Using the standard theme - Archive of obsolete content
adding custom styles in order to provide custom styling for some of your widgets (apart from the standard global skin) you can take two different routes.
TCP/IP Security - Archive of obsolete content
this layer routes packets across networks.
MVC - MDN Web Docs Glossary: Definitions of Web-related terms
controller: routes commands to the model and view parts.
Website security - Learn web development
in this attack, a malicious user hijacks clicks meant for a visible top-level site and routes them to a hidden page beneath.
React resources - Learn web development
it's possible to create many unique routes for your application (such as /home, /dashboard, or login/).
Uplifting a localization from Central to Aurora
let's pretend it's at releases/l10n-mozilla-aurora/ab-cd here's how we do it: # set up a new local clone of your central repo hg clone l10n-central/ab-cd workrepo cd workrepo # pull in the changesets you have on aurora hg pull -r default ../releases/l10n/mozilla-aurora/ab-cd now, there are two routes forward: 1) things are pretty silent.
An overview of NSS Internals
as a consequence, it will be necessary to try multiple different alternative routes while searching for (z), in a recursive manner.
Index
as a consequence, it will be necessary to try multiple different alternative routes while searching for (z), in a recursive manner.
Index
MozillaTechXPCOMIndex
sending a post request to this url routes the message to the instance of firefox that created the subscription.
nsIPushSubscription
sending a post request to this url routes the message to the instance of firefox that created the subscription.
Debugger.Environment - Firefox Developer Tools
spidermonkey creates exactly one debugger.environment instance for each environment it presents via a given debugger instance: if the debugger encounters the same environment through two different routes (perhaps two functions have closed over the same environment), spidermonkey presents the same debugger.environment instance to the debugger each time.
Debugger.Object - Firefox Developer Tools
spidermonkey creates exactly one debugger.object instance for each debuggee object it presents to a given debugger instance: if the debugger encounters the same object through two different routes (perhaps two functions are called on the same object), spidermonkey presents the same debugger.object instance to the debugger each time.
Debugger.Object - Firefox Developer Tools
spidermonkey creates exactly one debugger.object instance for each debuggee object it presents to a given debugger instance: if the debugger encounters the same object through two different routes (perhaps two functions are called on the same object), spidermonkey presents the same debugger.object instance to the debugger each time.
Proxy servers and tunneling - HTTP
tor (the onion router), routes internet traffic through multiple proxies for anonymity.
How to make PWAs re-engageable using Notifications and Push - Progressive web apps (PWAs)
you can use the following ones:"); console.log(webpush.generatevapidkeys()); return; } webpush.setvapiddetails( 'https://serviceworke.rs/', process.env.vapid_public_key, process.env.vapid_private_key ); next, a module defines and exports all the routes an app needs to handle: getting the vapid public key, registering, and then sending notifications.