Home
last modified time | relevance | path

Searched refs:BlockAttrs (Results 1 – 12 of 12) sorted by relevance

/dports/sysutils/nomad/nomad-1.1.0/plugins/shared/hclspec/
H A Dhcl_spec.pb.go139 BlockAttrs *BlockAttrs `protobuf:"bytes,5,opt,name=block_attrs,json=blockAttrs,proto3,oneof"` member
217 func (m *Spec) GetBlockAttrs() *BlockAttrs {
219 return x.BlockAttrs
480 type BlockAttrs struct { struct
489 func (m *BlockAttrs) Reset() { *m = BlockAttrs{} } argument
491 func (*BlockAttrs) ProtoMessage() {} argument
505 func (m *BlockAttrs) XXX_Size() int { argument
508 func (m *BlockAttrs) XXX_DiscardUnknown() { argument
514 func (m *BlockAttrs) GetName() string { argument
521 func (m *BlockAttrs) GetType() string { argument
[all …]
H A Dspec.go40 func BlockAttrsSpec(blockAttrs *BlockAttrs) *Spec { argument
43 BlockAttrs: blockAttrs,
120 return BlockAttrsSpec(&BlockAttrs{
H A Dhcl_spec.proto66 BlockAttrs block_attrs = 5;
153 The BlockAttrs spec type is similar to an Attr spec block of a map type,
158 BlockAttrs {
170 `BlockAttrs` spec blocks accept the following arguments:
185 message BlockAttrs { message
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/plugins/shared/hclspec/
H A Dhcl_spec.pb.go138 BlockAttrs *BlockAttrs `protobuf:"bytes,5,opt,name=block_attrs,json=blockAttrs,proto3,oneof"` member
218 return x.BlockAttrs
374 msg := new(BlockAttrs)
448 s := proto.Size(x.BlockAttrs)
687 type BlockAttrs struct { struct
696 func (m *BlockAttrs) Reset() { *m = BlockAttrs{} } argument
698 func (*BlockAttrs) ProtoMessage() {} argument
711 func (m *BlockAttrs) XXX_Size() int { argument
720 func (m *BlockAttrs) GetName() string { argument
727 func (m *BlockAttrs) GetType() string { argument
[all …]
H A Dspec.go40 func BlockAttrsSpec(blockAttrs *BlockAttrs) *Spec { argument
43 BlockAttrs: blockAttrs,
120 return BlockAttrsSpec(&BlockAttrs{
H A Dhcl_spec.proto65 BlockAttrs block_attrs = 5;
152 The BlockAttrs spec type is similar to an Attr spec block of a map type,
157 BlockAttrs {
169 `BlockAttrs` spec blocks accept the following arguments:
184 message BlockAttrs { message
/dports/lang/swi-pl/swipl-8.2.3/library/lynx/
H A Dhtml_text.pl144 emit_code(Content, BlockAttrs, State1),
172 emit_block(Words, BlockAttrs, State1),
560 %! emit_code(+Content, +BlockAttrs, +State)
562 emit_code(Content, BlockAttrs, State) :-
565 option(margin_left(LM0), BlockAttrs, 4),
598 format_table(Content, Attrs, BlockAttrs, State) :-
600 option(margin_left(ML), BlockAttrs, 0),
601 option(margin_right(MR), BlockAttrs, 0),
830 emit_hr(_Attrs, BlockAttrs, State) :-
831 option(margin_left(ML), BlockAttrs, 0),
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/nomad/helper/pluginutils/hclspecutils/
H A Ddec_test.go293 BlockAttrs: &hclspec.BlockAttrs{
310 BlockAttrs: &hclspec.BlockAttrs{
H A Ddec.go163 func decodeBlockAttrsSpec(block *hclspec.BlockAttrs, impliedName string) (hcldec.Spec, hcl.Diagnost… argument
/dports/sysutils/nomad/nomad-1.1.0/helper/pluginutils/hclspecutils/
H A Ddec_test.go293 BlockAttrs: &hclspec.BlockAttrs{
310 BlockAttrs: &hclspec.BlockAttrs{
H A Ddec.go163 func decodeBlockAttrsSpec(block *hclspec.BlockAttrs, impliedName string) (hcldec.Spec, hcl.Diagnost… argument
/dports/net-im/matterbridge/matterbridge-1.22.3/vendor/github.com/gomarkdown/markdown/html/
H A Drenderer.go772 attrs = append(attrs, BlockAttrs(nodeData)...)
903 attrs = append(attrs, BlockAttrs(codeBlock)...)
1062 tag := TagWithAttributes("<blockquote", BlockAttrs(node))
1065 tag := TagWithAttributes("<aside", BlockAttrs(node))
1104 tag := TagWithAttributes("<table", BlockAttrs(node))
1398 func BlockAttrs(node ast.Node) []string { func