Home
last modified time | relevance | path

Searched refs:embeddable (Results 1 – 25 of 1058) sorted by relevance

12345678910>>...43

/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/src/legacy/core_plugins/kibana/public/dashboard/
H A DREADME.md49 // embeddable as well as rendering. If we ever need access to the embeddable
55 .then(embeddable => {
56 this.embeddable = embeddable;
58 this.embeddable.render(this.panelElement);
64 this.embeddable.destroy();
71 this.embeddable.onContainerStateChanged(this.props.containerState);
78 <PanelHeaderContainer embeddable={this.embeddable} />
86 actions/embeddable.js:
94 // Map embeddable state properties into our redux tree.
100 State communicated to the embeddable.
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/models/
H A Dproject_snippet_spec.rb17 { project: :public, snippet: :public, embeddable: true },
18 { project: :internal, snippet: :public, embeddable: false },
19 { project: :private, snippet: :public, embeddable: false },
20 { project: :public, snippet: :internal, embeddable: false },
21 { project: :internal, snippet: :internal, embeddable: false },
22 { project: :private, snippet: :internal, embeddable: false },
23 { project: :public, snippet: :private, embeddable: false },
24 { project: :internal, snippet: :private, embeddable: false },
25 { project: :private, snippet: :private, embeddable: false }
H A Dpersonal_snippet_spec.rb8 { snippet: :public, embeddable: true },
9 { snippet: :internal, embeddable: false },
10 { snippet: :private, embeddable: false }
/dports/converters/p5-LaTeXML/LaTeXML-0.8.6/lib/LaTeXML/Util/
H A DPack.pm275 if ($embeddable) {
277 while (($embeddable->nodeName eq 'div') && (scalar(@{ $embeddable->childNodes }) == 1) &&
279 (!defined $embeddable->getAttribute('style'))) {
280 if (defined $embeddable->firstChild) {
281 $embeddable = $embeddable->firstChild; }
288 …if (($embeddable->nodeName eq 'p') && ((@{ $embeddable->childNodes }) == (grep { $_->nodeName =~ /…
289 $embeddable->setNodeName('span');
290 $embeddable->setAttribute('class', 'text');
295 $embeddable->setNamespace($_->getData, $_->getLocalName, 0);
300 $embeddable->setAttribute($rdfa_attr, $rdfa_value); } }
[all …]
/dports/textproc/kibana7/kibana-7.16.2-darwin-x86_64/src/plugins/embeddable/
H A DREADME.asciidoc1 [[embeddable-plugin]]
4 …embed them directly in their plugin. End users can dynamically add them to embeddable _containers_.
8 …ners are a special type of embeddable that can contain nested embeddables. Embeddables can be dyna…
25 link:https://github.com/elastic/kibana/blob/main/src/plugins/embeddable/docs/README.md[Embeddable d…
30 …/elastic/kibana/blob/main/docs/development/plugins/embeddable/public/kibana-plugin-plugins-embedda…
31 …/elastic/kibana/blob/main/docs/development/plugins/embeddable/public/kibana-plugin-plugins-embedda…
34 …/elastic/kibana/blob/main/docs/development/plugins/embeddable/server/kibana-plugin-plugins-embedda…
42 yarn test:jest src/plugins/embeddable
/dports/graphics/dia/dia-0.97.3/app/
H A Ddia_embedd.c42 BonoboEmbeddable *embeddable; member
104 dia_embeddable_destroy(BonoboEmbeddable *embeddable, in dia_embeddable_destroy() argument
131 bonobo_object_unref(BONOBO_OBJECT(embeddable)); in dia_embeddable_system_exception()
135 view_factory (BonoboEmbeddable *embeddable, in view_factory() argument
281 BonoboEmbeddable *embeddable; in embeddable_factory() local
294 if (embeddable == NULL) { in embeddable_factory()
299 embedded_dia->embeddable = embeddable; in embeddable_factory()
305 g_signal_connect(GTK_OBJECT(embeddable), "destroy", in embeddable_factory()
312 BONOBO_OBJECT (embeddable), in embeddable_factory()
319 bonobo_object_unref (BONOBO_OBJECT (embeddable)); in embeddable_factory()
[all …]
H A DGNOME_Dia.oaf9 value="Dia Diagram embeddable factory"/>
11 value="dia embeddable factory"/>
23 value="Dia Diagram embeddable"/>
/dports/textproc/kibana7/kibana-7.16.2-darwin-x86_64/src/plugins/embeddable/docs/
H A Dcontainers_and_inherited_state.md1 ## Common mistakes with embeddable containers and inherited input state
3 … _partial_. This is to support the use case of inherited state when an embeddable is inside a cont…
5 If you are simply rendering an embeddable, it's no problem to do something like:
10 embeddable.updateInput(input);
15 …plicitly. This is how "per panel time range" works. That action calls `embeddable.updateInput({ ti…
24 // Doing this will make it so this embeddable inherits _nothing_ from its container. No more time r…
26 embeddable.updateInput({ ...embeddable.getInput(), foo: 'bar' });
32 embeddable.updateInput({ foo: 'bar' });
H A Dinput_and_output_state.md10 | Serializable representation of the embeddable | Does not need to be serializable …
42 // `type` is used to grab the right embeddable factory. Every PanelState must specify one.
50 // embeddable to know where it exists in the panels array if it's living in a container.
100 The first child embeddable will get passed input state:
130 // If there is no explicit input defined on the parent then this embeddable inherits the
132 return parent.getInput().panels[embeddable.id].explicitInput.timeRange === undefined;
138 Note that `parent` can be retrieved from either `embeddabble.parent` or `embeddable.getRoot()`. The
143 when an embeddable is inside a parent. There is also no
223 even if a container has no idea about this `clock` embeddable implementation, nor this `explicitInp…
229 3. Someone called `embeddable.updateInput({ display: 'analog' })`, when the embeddable is a child i…
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/src/plugins/embeddable/docs/
H A Dcontainers_and_inherited_state.md1 ## Common mistakes with embeddable containers and inherited input state
3 … _partial_. This is to support the use case of inherited state when an embeddable is inside a cont…
5 If you are simply rendering an embeddable, it's no problem to do something like:
10 embeddable.updateInput(input);
15 …plicitly. This is how "per panel time range" works. That action calls `embeddable.updateInput({ ti…
24 // Doing this will make it so this embeddable inherits _nothing_ from its container. No more time r…
26 embeddable.updateInput({ ...embeddable.getInput(), foo: 'bar' });
32 embeddable.updateInput({ foo: 'bar' });
H A Dinput_and_output_state.md10 | Serializable representation of the embeddable | Does not need to be serializable …
42 // `type` is used to grab the right embeddable factory. Every PanelState must specify one.
50 // embeddable to know where it exists in the panels array if it's living in a container.
100 The first child embeddable will get passed input state:
130 // If there is no explicit input defined on the parent then this embeddable inherits the
132 return parent.getInput().panels[embeddable.id].explicitInput.timeRange === undefined;
138 Note that `parent` can be retrieved from either `embeddabble.parent` or `embeddable.getRoot()`. The
143 when an embeddable is inside a parent. There is also no
223 even if a container has no idea about this `clock` embeddable implementation, nor this `explicitInp…
229 3. Someone called `embeddable.updateInput({ display: 'analog' })`, when the embeddable is a child i…
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/YouTube/
H A DVideoStatus.php20 public $embeddable; variable in Google_Service_YouTube_VideoStatus
29 public function setEmbeddable($embeddable) argument
31 $this->embeddable = $embeddable;
35 return $this->embeddable;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/YouTube/
H A DVideoStatus.php20 public $embeddable; variable in Google_Service_YouTube_VideoStatus
31 public function setEmbeddable($embeddable) argument
33 $this->embeddable = $embeddable;
37 return $this->embeddable;
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/src/plugins/dashboard/public/application/
H A Dindex.scss1 @import '../../../embeddable/public/variables';
3 @import './embeddable/grid/index';
4 @import './embeddable/panel/index';
5 @import './embeddable/viewport/index';
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/afp/fonts/
H A DAFPFont.java42 private final boolean embeddable; field in AFPFont
49 public AFPFont(String name, boolean embeddable) { in AFPFont() argument
51 this.embeddable = embeddable; in AFPFont()
117 return this.embeddable; in isEmbeddable()
H A DOutlineFont.java38 public OutlineFont(String name, boolean embeddable, CharacterSet charSet, in OutlineFont() argument
40 super(name, embeddable, charSet, eventProducer); in OutlineFont()
H A DAbstractOutlineFont.java44 public AbstractOutlineFont(String name, boolean embeddable, CharacterSet charSet, in AbstractOutlineFont() argument
46 super(name, embeddable); in AbstractOutlineFont()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Books/
H A DVolumeAccessInfo.php25 public $embeddable; variable in Google_Service_Books_VolumeAccessInfo
76 public function setEmbeddable($embeddable) argument
78 $this->embeddable = $embeddable;
82 return $this->embeddable;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Books/
H A DVolumeAccessInfo.php25 public $embeddable; variable in Google_Service_Books_VolumeAccessInfo
76 public function setEmbeddable($embeddable) argument
78 $this->embeddable = $embeddable;
82 return $this->embeddable;
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/render/afp/
H A DAFPFontConfig.java318 private final boolean embeddable; field in AFPFontConfig.AFPFontConfigData
322 String encoding, String name, boolean embeddable, String uri) { in AFPFontConfigData() argument
327 this.embeddable = embeddable; in AFPFontConfigData()
351 super(triplets, type, codePage, encoding, name, embeddable, uri); in CIDKeyedFontConfig()
374 boolean embeddable, String uri) { in TrueTypeFontConfig() argument
375 super(triplets, type, codePage, encoding, name, embeddable, null); in TrueTypeFontConfig()
406 super(name, embeddable, charSet, eventProducer); in AFPTrueTypeFont()
430 super(triplets, type, codePage, encoding, name, embeddable, uri); in OutlineFontConfig()
485 List<RasterCharactersetData> csetData, boolean embeddable) { in RasterFontConfig() argument
486 super(triplets, type, codePage, encoding, name, embeddable, uri); in RasterFontConfig()
[all …]
/dports/math/singular/Singular-Release-4-2-1/Singular/dyn_modules/python/
H A Dipython.sing17 # First import the embeddable shell class
24 # This code will load an embeddable IPython shell always with no changes for
30 # This code loads an embeddable shell only if NOT running inside
31 # IPython. Inside IPython, the embeddable shell variable ipshell is just a
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/src/plugins/embeddable/
H A DREADME.md3 …d them directly in their plugin. End users can dynamically add them to any embeddable _containers_.
7 …ners are a special type of embeddable that can contain nested embeddables. Embeddables can be dyna…
30 node scripts/jest embeddable
/dports/devel/hadoop2/jetty-6.1.14/contrib/debian/src/main/debian/
H A Dcontrol15 It is designed to be light weight, high performance, embeddable,
25 It is designed to be light weight, high performance, embeddable,
36 It is designed to be light weight, high performance, embeddable,
48 It is designed to be light weight, high performance, embeddable,
58 It is designed to be light weight, high performance, embeddable,
/dports/devel/hadoop/jetty-6.1.14/contrib/debian/src/main/debian/
H A Dcontrol15 It is designed to be light weight, high performance, embeddable,
25 It is designed to be light weight, high performance, embeddable,
36 It is designed to be light weight, high performance, embeddable,
48 It is designed to be light weight, high performance, embeddable,
58 It is designed to be light weight, high performance, embeddable,
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/docs/en/tutorials/
H A Dembeddables.rst12 the ``User`` class. We will model the ``Address`` class as an embeddable
51 <embeddable name="Address">
56 </embeddable>
68 type: embeddable

12345678910>>...43