Home
last modified time | relevance | path

Searched refs:attributes (Results 12476 – 12500 of 246044) sorted by relevance

1...<<491492493494495496497498499500>>...9842

/dports/www/firefox/firefox-99.0/taskcluster/ci/toolchain/
H A Dgeckodriver.yml11 attributes:
35 attributes:
47 attributes:
59 attributes:
74 attributes:
96 attributes:
117 attributes:
/dports/x11/slop/slop-7.6/src/
H A Dwindow.cpp49 XSetWindowAttributes attributes; in SlopWindow() local
50attributes.colormap = XCreateColormap(x11->display, RootWindow(x11->display, vi->screen), vi->visu… in SlopWindow()
51 attributes.background_pixmap = None; in SlopWindow()
52 attributes.border_pixel = 0; in SlopWindow()
54 attributes.override_redirect = True; in SlopWindow()
56 attributes.event_mask = StructureNotifyMask; in SlopWindow()
63 vi->visual, valueMask, &attributes ); in SlopWindow()
/dports/editors/emacs/emacs-27.2/lisp/url/
H A Durl-ldap.el145 (attributes nil)
157 attributes (nth 1 data)
173 (if attributes
174 (setq attributes (mapcar 'url-unhex-string (split-string attributes ","))))
195 'attributes attributes
/dports/editors/abiword/abiword-3.0.5/plugins/openxml/common/xp/
H A DOXML_ObjectWithAttrProp.cpp82 UT_Error OXML_ObjectWithAttrProp::setAttributes(const gchar ** attributes) in setAttributes() argument
84 return m_pAttributes->setAttributes(attributes) ? UT_OK : UT_ERROR; in setAttributes()
92 UT_Error OXML_ObjectWithAttrProp::appendAttributes(const gchar ** attributes) in appendAttributes() argument
94 UT_return_val_if_fail(attributes != NULL, UT_ERROR); in appendAttributes()
96 for (UT_uint32 i = 0; attributes[i] != NULL; i += 2) { in appendAttributes()
97 ret = setAttribute(attributes[i], attributes[i+1]); in appendAttributes()
/dports/www/drupal8/drupal-8.9.20/core/modules/update/templates/
H A Dupdate-project-status.html.twig11 * - attributes: HTML attributes for the project status.
18 * - extras: HTML attributes and additional information about the project.
19 * - attributes: HTML attributes for the extra item.
39 <div{{ status.attributes.addClass('project-update__status', status_classes) }}>
79 <div{{ extra.attributes.addClass(extra_classes) }}>
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/javax/crypto/sasl/
H A DServerMechanism.java246 public void init(final Map attributes) throws SaslException in init() argument
254 if (attributes != null) in init()
256 protocol = (String) attributes.get(Registry.SASL_PROTOCOL); in init()
257 serverName = (String) attributes.get(Registry.SASL_SERVER_NAME); in init()
258 handler = (CallbackHandler) attributes.get(Registry.SASL_CALLBACK_HANDLER); in init()
259 channelBinding = (byte[]) attributes.get(Registry.SASL_CHANNEL_BINDING); in init()
260 properties.putAll(attributes); in init()
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/lib/
H A Dmtx.c215 pthread_mutexattr_t attributes; in mtx_init() local
218 err = pthread_mutexattr_init (&attributes); in mtx_init()
221 err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE); in mtx_init()
224 pthread_mutexattr_destroy (&attributes); in mtx_init()
227 err = pthread_mutex_init (mutex, &attributes); in mtx_init()
230 pthread_mutexattr_destroy (&attributes); in mtx_init()
233 err = pthread_mutexattr_destroy (&attributes); in mtx_init()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/feature-gates/
H A Dfeature-gate-abi_ptx.stderr8 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
17 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
26 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
35 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
44 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
53 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
62 = help: add `#![feature(abi_ptx)]` to the crate attributes to enable
/dports/www/drupal8/drupal-8.9.20/core/themes/stable/templates/admin/
H A Dupdate-project-status.html.twig11 * - attributes: HTML attributes for the project status.
18 * - extras: HTML attributes and additional information about the project.
19 * - attributes: HTML attributes for the extra item.
37 <div{{ status.attributes.addClass('project-update__status', status_classes) }}>
77 <div{{ extra.attributes.addClass(extra_classes) }}>
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/test/IR/
H A Dinvalid-func-op.mlir85 func @legacy_visibility_syntax() attributes { sym_visibility = "private" }
90 func private @invalid_symbol_name_attr() attributes { sym_name = "x" }
95 func private @invalid_symbol_type_attr() attributes { type = "x" }
100 func private @invalid_arg_attrs() attributes { arg_attrs = [{}] }
105 func private @invalid_arg_attrs(i32) attributes { arg_attrs = [10] }
110 func private @invalid_res_attrs() attributes { res_attrs = [{}] }
115 func private @invalid_res_attrs() -> i32 attributes { res_attrs = [10] }
/dports/www/ilias/ILIAS-5.4.25/libs/composer/vendor/guzzlehttp/psr7/src/
H A DServerRequest.php30 private $attributes = []; variable in GuzzleHttp\\Psr7\\ServerRequest
318 return $this->attributes;
326 if (false === array_key_exists($attribute, $this->attributes)) {
330 return $this->attributes[$attribute];
339 $new->attributes[$attribute] = $value;
349 if (false === array_key_exists($attribute, $this->attributes)) {
354 unset($new->attributes[$attribute]);
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/javax/crypto/sasl/
H A DServerMechanism.java246 public void init(final Map attributes) throws SaslException in init() argument
254 if (attributes != null) in init()
256 protocol = (String) attributes.get(Registry.SASL_PROTOCOL); in init()
257 serverName = (String) attributes.get(Registry.SASL_SERVER_NAME); in init()
258 handler = (CallbackHandler) attributes.get(Registry.SASL_CALLBACK_HANDLER); in init()
259 channelBinding = (byte[]) attributes.get(Registry.SASL_CHANNEL_BINDING); in init()
260 properties.putAll(attributes); in init()
/dports/www/drupal9/drupal-9.2.10/core/themes/stable/templates/admin/
H A Dupdate-project-status.html.twig11 * - attributes: HTML attributes for the project status.
18 * - extras: HTML attributes and additional information about the project.
19 * - attributes: HTML attributes for the extra item.
37 <div{{ status.attributes.addClass('project-update__status', status_classes) }}>
77 <div{{ extra.attributes.addClass(extra_classes) }}>
/dports/www/drupal9/drupal-9.2.10/core/modules/update/templates/
H A Dupdate-project-status.html.twig11 * - attributes: HTML attributes for the project status.
18 * - extras: HTML attributes and additional information about the project.
19 * - attributes: HTML attributes for the extra item.
39 <div{{ status.attributes.addClass('project-update__status', status_classes) }}>
79 <div{{ extra.attributes.addClass(extra_classes) }}>
/dports/www/drupal9/drupal-9.2.10/core/themes/stable9/templates/admin/
H A Dupdate-project-status.html.twig11 * - attributes: HTML attributes for the project status.
18 * - extras: HTML attributes and additional information about the project.
19 * - attributes: HTML attributes for the extra item.
37 <div{{ status.attributes.addClass('project-update__status', status_classes) }}>
77 <div{{ extra.attributes.addClass(extra_classes) }}>
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/ci/toolchain/
H A Dgeckodriver.yml11 attributes:
35 attributes:
47 attributes:
59 attributes:
75 attributes:
98 attributes:
119 attributes:
/dports/mail/thunderbird/thunderbird-91.8.0/taskcluster/taskgraph/transforms/
H A Dpartner_attribution_beetmover.py14 from taskgraph.util.attributes import copy_attributes_from_dependent_job
138 attributes = dep_job.attributes
139 build_platform = attributes.get("build_platform")
151 attributes = copy_attributes_from_dependent_job(dep_job)
157 "attributes": attributes,
158 "run-on-projects": dep_job.attributes.get("run_on_projects"),
/dports/www/thirtybees/thirtybees-1.1.0/modules/tbupdater/classes/GuzzleHttp/Psr7/
H A DServerRequest.php30 private $attributes = []; variable in TbUpdaterModule\\GuzzleHttp\\Psr7\\ServerRequest
318 return $this->attributes;
326 if (false === array_key_exists($attribute, $this->attributes)) {
330 return $this->attributes[$attribute];
339 $new->attributes[$attribute] = $value;
349 if (false === array_key_exists($attribute, $this->attributes)) {
354 unset($new->attributes[$attribute]);
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/test/IR/
H A Dinvalid-func-op.mlir85 func @legacy_visibility_syntax() attributes { sym_visibility = "private" }
90 func private @invalid_symbol_name_attr() attributes { sym_name = "x" }
95 func private @invalid_symbol_type_attr() attributes { type = "x" }
100 func private @invalid_arg_attrs() attributes { arg_attrs = [{}] }
105 func private @invalid_arg_attrs(i32) attributes { arg_attrs = [10] }
110 func private @invalid_res_attrs() attributes { res_attrs = [{}] }
115 func private @invalid_res_attrs() -> i32 attributes { res_attrs = [10] }
/dports/www/nextcloud/nextcloud/apps-pkg/user_ldap/lib/User/
H A DManager.php171 $attributes = [
182 $attributes[] = substr($homeRule, strlen('attr:'));
188 $attributes = array_merge(
189 $attributes,
194 $attributes = array_reduce($attributes,
206 return $attributes;
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/util/xml/
H A DStaxEventContentHandler.java94 List attributes = getAttributes(atts); in startElementInternal() local
96 consumeEvent(this.eventFactory.createStartElement(name, attributes.iterator(), in startElementInternal()
146 private List<Attribute> getAttributes(Attributes attributes) { in getAttributes() argument
148 for (int i = 0; i < attributes.getLength(); i++) { in getAttributes()
149 QName name = toQName(attributes.getURI(i), attributes.getQName(i)); in getAttributes()
151 list.add(this.eventFactory.createAttribute(name, attributes.getValue(i))); in getAttributes()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ppapi/proxy/
H A Dmedia_stream_video_track_resource.cc68 MediaStreamVideoTrackShared::Attributes attributes; in Configure() local
73 attributes.buffers = attrib_list[i + 1]; in Configure()
76 attributes.width = attrib_list[i + 1]; in Configure()
79 attributes.height = attrib_list[i + 1]; in Configure()
82 attributes.format = static_cast<PP_VideoFrame_Format>(attrib_list[i + 1]); in Configure()
89 if (!MediaStreamVideoTrackShared::VerifyAttributes(attributes)) in Configure()
95 PpapiHostMsg_MediaStreamVideoTrack_Configure(attributes), in Configure()
/dports/devel/py-fudge/fudge-1.1.1/fudge/
H A Dinspector.py215 def has_attr(self, **attributes): argument
277 return self._make_value_test(HasAttr, **attributes)
526 def __init__(self, **attributes): argument
527 self.attributes = attributes
530 return self._make_argspec(", ".join(sorted(fmt_dict_vals(self.attributes))))
533 for name, value in self.attributes.items():
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/test/orm/
H A Dtest_expire.py11 attributes, deferred, exc as orm_exc, defer, undefer,\
302 attributes.instance_state(u).key = None
318 attributes.instance_state(u).key = None
386 assert attributes.instance_state(o) \
623 assert attributes.instance_state(o).dict['isopen'] == 1
630 assert attributes.instance_state(o) \
644 assert attributes.instance_state(o) \
912 attributes.instance_state(u1).callables['name'],
1004 attributes.instance_state(u1).callables['addresses'],
1139 attributes.instance_state(e1).key = None
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/orm/
H A Dtest_expire.py11 attributes, deferred, exc as orm_exc, defer, undefer,\
51 assert 'name' in attributes.instance_state(u).expired_attributes
298 attributes.instance_state(u).key = None
314 attributes.instance_state(u).key = None
615 assert attributes.instance_state(o).dict['isopen'] == 1
896 attributes.instance_state(u1).callables['name'],
986 attributes.instance_state(u1).callables['addresses'],
993 attributes.instance_state(u1).callables['addresses'],
1007 attributes.instance_state(u1).callables['addresses'],
1115 attributes.instance_state(e1).key = None
[all …]

1...<<491492493494495496497498499500>>...9842