Home
last modified time | relevance | path

Searched +refs:global +refs:key +refs:binding (Results 1 – 25 of 10089) sorted by relevance

12345678910>>...404

/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/kms/keys/
H A Dremove_iam_policy_binding.yaml3 brief: Remove IAM policy binding for a kms key.
5 Removes a policy binding from the IAM policy of a kms key. A binding consists of at least one
9 To remove an IAM policy binding for the role of 'roles/editor' for the user
10 'test-user@gmail.com' on the key frodo with the keyring fellowship and location global, run:
14 To remove an IAM policy binding with a condition of
17 for the user 'test-user@gmail.com' on a the key frodo with the keyring fellowship and location
18 global, run:
23 'roles/cloudkms.signer' and for the user 'test-user@gmail.com' on a the key frodo with the
24 keyring fellowship and location global, run:
36 help_text: The key to remove the IAM policy binding.
[all …]
H A Dadd_iam_policy_binding.yaml4 brief: Add IAM policy binding for a kms key.
6 Adds a policy binding to the IAM policy of a kms key. A binding consists of at least one
10 To add an IAM policy binding for the role of 'roles/editor' for the user 'test-user@gmail.com'
11 on the key frodo with the keyring fellowship and location global, run:
13 …$ {command} frodo --keyring='fellowship' --location='global' --member='user:test-user@gmail.com' -…
15 To add an IAM policy binding which expires at the end of the year 2018 for the role of
16 'roles/cloudkms.signer' and the user 'test-user@gmail.com' on a the key frodo with the keyring
17 fellowship and location global, run:
19 …$ {command} frodo --keyring='fellowship' --location='global' --member='user:test-user@gmail.com' -…
29 help_text: The key to add the IAM policy binding.
[all …]
/dports/editors/emacs/emacs-27.2/doc/lispref/
H A Dkeymaps.texi1107 global binding.
1196 @defun global-key-binding key &optional accept-defaults
1774 @deffn Command global-set-key key binding
1775 This function sets the binding of @var{key} in the current global map
1780 (global-set-key @var{key} @var{binding})
1782 (define-key (current-global-map) @var{key} @var{binding})
1787 @deffn Command global-unset-key key
1798 (global-unset-key "\C-l")
1811 (global-unset-key @var{key})
2540 (define-key global-map
[all …]
/dports/editors/emacs-devel/emacs-4d1968b/doc/lispref/
H A Dkeymaps.texi1173 global binding.
1270 @defun keymap-global-binding key &optional accept-defaults
1653 @deffn Command global-set-key key binding
1654 This function sets the binding of @var{key} in the current global map
1658 @deffn Command global-unset-key key
1742 @defun global-key-binding key &optional accept-defaults
2011 @deffn Command keymap-global-set key binding
2012 This function sets the binding of @var{key} in the current global map
2017 (keymap-global-set @var{key} @var{binding})
2019 (keymap-set (current-global-map) @var{key} @var{binding})
[all …]
/dports/mail/py-alot/alot-0.9/docs/source/configuration/
H A Dkey_bindings.rst5 If you want to bind a command to a key you can do so by adding the pair to the
6 `[bindings]` section. This will introduce a *global* binding, that works in
7 all modes. To make a binding specific to a mode you have to add the pair
31 …User Input documentation <http://excess.org/urwid/wiki/UserInput>`_ on how key strings are formatt…
33 .. _config.key-bingings.defaults:
61 To disable a global binding you can redefine it in your config to point to an empty command string.
62 For example, to add a new global binding for key `a`, which is bound to `toggletags inbox` in search
73 If you omit the last two lines, `a` will still be bound to the default binding in search mode.
/dports/devel/google-cloud-cpp/google-cloud-cpp-1.21.0/google/cloud/storage/doc/
H A Dsetup-test-resources.md39 gcloud projects add-iam-policy-binding ${PROJECT_ID} \
48 gcloud projects add-iam-policy-binding ${PROJECT_ID} \
95 First, create the keyring and key:
100 gcloud kms keyrings create ${KR} --location=global
101 gcloud kms keys create ${KEYID} --purpose=encryption --location=global --keyring=${KR}
102 gcloud kms keys list --location=global --keyring=${KR}
108 KEYNAME=projects/${PROJECT_NAME}/locations/global/keyRings/${KR}/cryptoKeys/${KEYID}
135 gcloud projects add-iam-policy-binding ${PROJECT_ID} \
157 gcloud projects add-iam-policy-binding ${PROJECT_ID} \
166 gcloud projects add-iam-policy-binding ${PROJECT_ID} \
[all …]
/dports/x11-wm/enlightenment/enlightenment-0.24.2/src/bin/
H A De_comp_wl_extensions.c614 binding = &ar->binding.key; in _action_route_key_list_cb()
692 eina_hash_list_remove(key_bindings, ar->binding.key.key, ar); in _e_comp_wl_action_route_key_grab_del()
694 l = eina_hash_find(key_bindings, ar->binding.key.key); in _e_comp_wl_action_route_key_grab_del()
695 eina_stringshare_del(ar->binding.key.key); in _e_comp_wl_action_route_key_grab_del()
696 eina_stringshare_del(ar->binding.key.action); in _e_comp_wl_action_route_key_grab_del()
697 eina_stringshare_del(ar->binding.key.params); in _e_comp_wl_action_route_key_grab_del()
759 binding = &ar->binding.key; in _e_comp_wl_action_route_grab_key()
773 binding->key = eina_stringshare_add(key); in _e_comp_wl_action_route_grab_key()
1010 e_comp_wl->extensions->NAME.global = global; \
1043 binding = &ar->binding.key; in _e_comp_wl_action_route_act_key_route_go_end()
[all …]
/dports/x11-wm/sawfish/sawfish_1.13.0/lisp/sawfish/wm/util/
H A Dkeymap.jl114 (or keymap global-keymap))
135 "Prompt for a key sequence, then print its binding."
143 (binding (and key (search-keymap key keymap))))
144 (when binding
145 (setq binding (car binding))
149 (cond ((keymapp binding)
150 (loop binding))
151 ((and (symbolp binding)
153 (loop (symbol-value binding)))
157 components binding)
[all …]
/dports/games/libretro-shaders-slang/slang-shaders-9850d68939b86262eae9f0da01ff1c11daafcdc3/crt/shaders/glow-trails/
H A Dglow-trails0.slang16 layout(std140, set = 0, binding = 0) uniform UBO
19 } global;
21 float key(float avg)
46 gl_Position = global.MVP * Position;
53 layout(set = 0, binding = 2) uniform sampler2D Source;
54 layout(set = 0, binding = 3) uniform sampler2D PassFeedback0;
/dports/www/mitmproxy/mitmproxy-7.0.4/docs/src/content/
H A Dconcepts-commands.md15 with the `:` key. The prompt has intelligent tab completion for command names
22 browser (by default accessible with the `C` key binding).
64 Mitmproxy's key bindings can be customized to your needs in the
68 * `key` (**mandatory**): The key to bind.
69 * `cmd` (**mandatory**): The command to execute when the key is pressed.
70key should be bound. By default this is **global** (i.e. the key is bound everywhere). Valid conte…
71 * `help`: A help string for the binding which will be shown in the key binding browser.
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_resolve/src/
H A Dimports.rs262 let key = self.new_key(ident, ns); in resolve_ident_in_module_unadjusted_ext() localVariable
493 key: BindingKey, in try_define()
522 && key.ns == MacroNS in try_define()
585 let mut ident = key.ident; in update_resolution()
593 let key = BindingKey { ident, ..key }; in update_resolution() localVariable
1376 .filter_map(|(key, resolution)| { in resolve_glob_import()
1377 resolution.borrow().binding().map(|binding| (*key, binding)) in resolve_glob_import()
1380 for (mut key, binding) in bindings { in resolve_glob_import()
1429 let global = !names.is_empty() && names[0].name == kw::PathRoot; in import_path_to_string() localVariable
1431 let names = if global { &names[1..pos + 1] } else { &names[..pos + 1] }; in import_path_to_string()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/content/
H A Dxul.css56 keyset, key, toolbarpalette, toolbarset, selector
103 -moz-binding: url("chrome://global/content/bindings/button.xml#button");
111 -moz-binding: url("chrome://global/content/bindings/button.xml#menu");
172 -moz-binding: url("chrome://global/content/bindings/editor.xml#editor");
207 -moz-binding: url("chrome://global/content/bindings/general.xml#image");
224 -moz-binding: url("chrome://global/content/bindings/radio.xml#radio");
349 -moz-binding: url("chrome://global/content/bindings/menu.xml#menu");
403 -moz-binding: url("chrome://global/content/bindings/popup.xml#popup");
408 -moz-binding: url("chrome://global/content/bindings/popup.xml#panel");
633 -moz-binding: url("chrome://global/content/bindings/tree.xml#tree");
[all …]
/dports/security/keybase/client-v5.7.1/shared/common-adapters/
H A Dhot-key.tsx4 // mousetrap is very simple. a bind will overwrite the binding. unbind unbinds it globally
12 // add key and callback to bookkeeping
14 keysArr.forEach(key => {
15 let cbs = keyToCBStack.get(key)
18 keyToCBStack.set(key, cbs)
27 key && cb(key)
33 keysArr.forEach(key => {
43 key,
54 unbind(key)
55 keyToCBStack.delete(key)
[all …]
/dports/lang/gambit-c/gambit-4.9.3/lib/
H A Dpsyntax69c.ss137 ;;; (lambda (key)
138 ;;; (syntax-error key "invalid key")))
364 ;;; no global or lexical binding, it treats it as a global-variable
842 ;;; binding of any kind has been seen is assumed to be a global
862 ((global meta-variable) (symbol? (binding-value b)))
928 (or (get-global-definition-hook x) (make-binding 'global x)))
1330 ((lookup-import-binding-name sym (import-token-key (car symnames)) marks) =>
2386 (build-global-assignment ae (binding-value b) val)
2861 ; global binding is assumed; if global pass #f to remove existing binding, if any
2862 (if (and (eq? (binding-type binding) 'global)
[all …]
H A Dpsyntax73.ss142 ;;; (lambda (key)
143 ;;; (syntax-error key "invalid key")))
369 ;;; no global or lexical binding, it treats it as a global-variable
911 ;;; binding of any kind has been seen is assumed to be a global
931 ((global meta-variable) (symbol? (binding-value b)))
937 … ((begin define define-syntax set! $module-key $import eval-when meta) (null? (binding-value b)))
997 (or (get-global-definition-hook x) (make-binding 'global x)))
2548 (build-global-assignment ae (binding-value b) val)
3036 ; global binding is assumed; if global pass #f to remove existing binding, if any
3037 (if (and (eq? (binding-type binding) 'global)
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/content/
H A Dxul.css59 keyset, key, toolbarpalette, toolbarset, selector
106 -moz-binding: url("chrome://global/content/bindings/button.xml#button");
114 -moz-binding: url("chrome://global/content/bindings/button.xml#menu");
185 -moz-binding: url("chrome://global/content/bindings/editor.xml#editor");
234 -moz-binding: url("chrome://global/content/bindings/radio.xml#radio");
345 -moz-binding: url("chrome://global/content/bindings/menu.xml#menu");
385 -moz-binding: url("chrome://global/content/bindings/popup.xml#popup");
390 -moz-binding: url("chrome://global/content/bindings/popup.xml#panel");
607 -moz-binding: url("chrome://global/content/bindings/tree.xml#tree");
697 -moz-binding: url("chrome://global/content/bindings/tabbox.xml#tab");
[all …]
/dports/www/mitmproxy/mitmproxy-7.0.4/examples/
H A Dkeys.yaml2 # Simple global binding
3 key: ctrl a
6 # Bind key only in the flowlist
8 key: "1"
/dports/databases/py-gdbm/Python-3.8.12/Doc/data/
H A Dpython3.8.abi3894 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2187' column='1'/>
4310 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
6742 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
7169 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
12454 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2404' column='1'/>
12460 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2346' column='1'/>
12465 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2308' column='1'/>
13378 <parameter type-id='type-id-65' name='key' filepath='Python/pyhash.c' line='416' column='1'/>
14722 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='140' column='1'/>
14726 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='131' column='1'/>
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Doc/data/
H A Dpython3.8.abi3894 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2187' column='1'/>
4310 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
6742 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
7169 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
12454 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2404' column='1'/>
12460 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2346' column='1'/>
12465 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2308' column='1'/>
13378 <parameter type-id='type-id-65' name='key' filepath='Python/pyhash.c' line='416' column='1'/>
14722 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='140' column='1'/>
14726 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='131' column='1'/>
[all …]
/dports/lang/python38/Python-3.8.12/Doc/data/
H A Dpython3.8.abi3894 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2187' column='1'/>
4310 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
6742 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
7169 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
12454 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2404' column='1'/>
12460 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2346' column='1'/>
12465 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2308' column='1'/>
13378 <parameter type-id='type-id-65' name='key' filepath='Python/pyhash.c' line='416' column='1'/>
14722 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='140' column='1'/>
14726 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='131' column='1'/>
[all …]
/dports/lang/python-tools/Python-3.8.12/Doc/data/
H A Dpython3.8.abi3894 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2187' column='1'/>
4310 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
6742 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
7169 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
12454 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2404' column='1'/>
12460 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2346' column='1'/>
12465 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2308' column='1'/>
13378 <parameter type-id='type-id-65' name='key' filepath='Python/pyhash.c' line='416' column='1'/>
14722 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='140' column='1'/>
14726 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='131' column='1'/>
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Doc/data/
H A Dpython3.8.abi3894 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2187' column='1'/>
4310 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
6742 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
7169 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='255' column='1'/>
12454 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2404' column='1'/>
12460 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2346' column='1'/>
12465 <parameter type-id='type-id-60' name='key' filepath='Python/hamt.c' line='2308' column='1'/>
13378 <parameter type-id='type-id-65' name='key' filepath='Python/pyhash.c' line='416' column='1'/>
14722 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='140' column='1'/>
14726 <parameter type-id='type-id-737' name='key' filepath='Python/thread.c' line='131' column='1'/>
[all …]
/dports/games/quakeforge/quakeforge-0.7.2/ruamoko/cl_menu/
H A Dcontrols_o.r39 // three global hashes for the main binding groups
148 third, etc. key by giving the bindnum.
234 CB_MAIN_control_binding (Binding *binding, int key)
253 if(key == QFK_RETURN) {
256 } else if(key == QFK_BACKSPACE || key == QFK_DELETE) {
271 int (string text, int key)
275 local int ret = CB_MAIN_control_binding (binding, key);
348 int (string text, int key)
352 local int ret = CB_MAIN_control_binding (binding, key);
424 int (string text, int key)
[all …]
/dports/www/firefox/firefox-99.0/js/src/builtin/
H A DModuleObject.cpp404 mozilla::DebugOnly<jsid> prev(e.front().key()); in trace()
406 MOZ_ASSERT(e.front().key() == prev); in trace()
439 MOZ_ASSERT(binding.environment); in lookup()
441 binding.environment->containsPure(binding.targetName, binding.prop)); in lookup()
442 *envOut = binding.environment; in lookup()
1694 if (!key.isWellKnownAtomId()) { in isAssertionSupported()
1728 if (isAssertionSupported(assertion, key)) { in processAssertions()
1729 markUsedByStencil(key); in processAssertions()
1867 binding = binding->as<AssignmentNode>().left(); in processExport()
2446 RootedId key(cx); in EvaluateDynamicImportOptions() local
[all …]
/dports/lang/python39/Python-3.9.9/Doc/data/
H A Dpython3.9.abi4327 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/>
4332 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2227' column='1'/>
4717 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='264' column='1'/>
4722 … <parameter type-id='type-id-100' name='key' filepath='Objects/abstract.c' line='232' column='1'/>
4727 … <parameter type-id='type-id-100' name='key' filepath='Objects/abstract.c' line='200' column='1'/>
4778 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2210' column='1'/>
9515 … <parameter type-id='type-id-3' name='key' filepath='Objects/abstract.c' line='2246' column='1'/>
13612 … <parameter type-id='type-id-32' name='key' filepath='Python/hashtable.c' line='92' column='1'/>
16235 … <parameter type-id='type-id-32' name='key' filepath='Python/symtable.c' line='371' column='1'/>
16445 <parameter type-id='type-id-683' name='key' filepath='Python/thread.c' line='138' column='1'/>
[all …]

12345678910>>...404