-
Notifications
You must be signed in to change notification settings - Fork 3
/
Language.amd64_deb6.txt
executable file
·8602 lines (8372 loc) · 519 KB
/
Language.amd64_deb6.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Operating System:Linux Debian 6_0 (2_6_32-5-amd64)
Client Version:9_5_7_90
Build Target:
ModuleName:HostApplication, Version:9_5_7_90, ClientCompatible:Yes
Types & Derived Types {<typename> [(derives from <basetypename>]}
SELinux Boolean
Xinetd Service
action
action lock state
administrative rights
analysis
application (derives from file)
application usage summary
application usage summary instance
bes product
binary operator
binary position (derives from integer)
binary_string
binary_substring (derives from binary_string)
bios
bit set
boolean
cast
client (derives from application)
client_cryptography
cpupackage
cryptography
current relay
date
date with multiplicity (derives from date)
day of month
day of month with multiplicity (derives from day of month)
day of week
day of week with multiplicity (derives from day of week)
day of year
day of year with multiplicity (derives from day of year)
debian base package
debian package upstream version
debian package upstream version with multiplicity (derives from debian package upstream version)
debian package version
debian package version epoch
debian package version epoch with multiplicity (derives from debian package version epoch)
debian package version revision
debian package version revision with multiplicity (derives from debian package version revision)
debian package version with multiplicity (derives from debian package version)
debian versioned package
debianpackagecache
debianpkg dependency
debianpkg reverse dependencies
debianpkg verfile
debianpkg version
device file (derives from filesystem object)
dmi
dmi additional_information
dmi b32_bit_memory_error_information
dmi b64_bit_memory_error_information
dmi base_board_information
dmi bios_information
dmi bios_language_information
dmi built_in_pointing_device
dmi cache_information
dmi cooling_device
dmi electrical_current_probe
dmi end_of_table
dmi group_associations
dmi hardware_security
dmi inactive
dmi ipmi_device_information
dmi management_device
dmi management_device_component
dmi management_device_threshold_data
dmi memory_array_mapped_address
dmi memory_channel
dmi memory_controller_information
dmi memory_device
dmi memory_device_mapped_address
dmi memory_module_information
dmi oem_strings
dmi on_board_devices_information
dmi onboard_devices_extended_information
dmi out_of_band_remote_access
dmi physical_memory_array
dmi port_connector_information
dmi portable_battery
dmi processor_information
dmi system_boot_information
dmi system_configuration_option
dmi system_enclosure_or_chassis
dmi system_information
dmi system_power_controls
dmi system_power_supply
dmi system_reset
dmi system_slots
dmi temperature_probe
dmi voltage_probe
download server
download storage folder (derives from folder)
encoding
environment
environment variable
evaluation cycle
execution
fifo file (derives from filesystem object)
file (derives from filesystem object)
file content
file line (derives from string)
file section
filesystem
filesystem object
fixlet
fixlet_header
floating point
floating point with multiplicity (derives from floating point)
folder (derives from filesystem object)
format
grub block list
grub bootable image
grub color
grub color pair
grub color scheme
grub config file
grub device
grub file location
grub image choice
grub kernel
grub module
hardware
hertz
hertz with multiplicity (derives from hertz)
html
html attribute list
integer
integer range
integer set
integer with multiplicity (derives from integer)
ip version
ipv4 address (derives from ipv4or6 address)
ipv4 address with multiplicity (derives from ipv4 address)
ipv4or6 address
ipv4or6 address with multiplicity (derives from ipv4or6 address)
ipv6 address (derives from ipv4or6 address)
ipv6 address with multiplicity (derives from ipv6 address)
json key
json value
language
license
logged on user
manual group
mode
mode_mask
module
month
month and year
month and year with multiplicity (derives from month and year)
month with multiplicity (derives from month)
network
network adapter
network adapter interface
network interface
network ip interface (derives from network interface)
number of months
number of months with multiplicity (derives from number of months)
operating system
power level
primary language
process
processor
property
ram
registration server
regular expression
regular expression match (derives from substring)
root server
rope
route
routing table
runlevel
selected server
service
setting
site
site group
site version list
site version list with multiplicity (derives from site version list)
smbios
smbios structure
smbios value
socket
socket file (derives from filesystem object)
sqlite column
sqlite column type
sqlite database
sqlite row
sqlite statement
sqlite table
string
string position (derives from integer)
string set
string with multiplicity (derives from string)
strverscmp version (derives from version)
substring (derives from string)
swap
symlink
tcp state
time
time interval
time interval with multiplicity (derives from time interval)
time of day
time of day with multiplicity (derives from time of day)
time of day with time zone
time of day with time zone with multiplicity (derives from time of day with time zone)
time range
time range with multiplicity (derives from time range)
time with multiplicity (derives from time)
time zone
time zone with multiplicity (derives from time zone)
tuple item
type
unary operator
undefined
user
utf8 string
uuid
uuid with multiplicity (derives from uuid)
version
version with multiplicity (derives from version)
x509 certificate
xml dom document (derives from xml dom node)
xml dom node
year
year with multiplicity (derives from year)
Creation techniques & properties of each type:
Type <SELinux Boolean>
Creation of <SELinux Boolean>: { key phrase, plural keyword, form}
selinux boolean <string>, selinux booleans, NamedGlobal
selinux boolean, selinux booleans, PlainGlobal
Properties of <SELinux Boolean> { key phrase, plural keyword, form, <result type>}:
current status of <SELinux Boolean>, current statuses, Plain, <boolean>
name of <SELinux Boolean>, names, Plain, <string>
pending status of <SELinux Boolean>, pending statuses, Plain, <boolean>
Type <Xinetd Service>
Creation of <Xinetd Service>: { key phrase, plural keyword, form}
xinetd service <string>, xinetd services, NamedGlobal
xinetd service, xinetd services, PlainGlobal
Properties of <Xinetd Service> { key phrase, plural keyword, form, <result type>}:
disabled of <Xinetd Service>, disableds, Plain, <boolean>
flag of <Xinetd Service>, flags, Plain, <string>
id of <Xinetd Service>, ids, Plain, <string>
name of <Xinetd Service>, names, Plain, <string>
no access of <Xinetd Service>, no accesses, Plain, <string>
only from of <Xinetd Service>, only froms, Plain, <string>
port of <Xinetd Service>, ports, Plain, <integer>
protocol of <Xinetd Service>, protocols, Plain, <string>
server arg of <Xinetd Service>, server args, Plain, <string>
server of <Xinetd Service>, servers, Plain, <string>
socket type of <Xinetd Service>, socket types, Plain, <string>
type of <Xinetd Service>, types, Plain, <string>
user of <Xinetd Service>, users, Plain, <string>
wait of <Xinetd Service>, waits, Plain, <boolean>
Type <action>
Creation of <action>: { key phrase, plural keyword, form}
action <integer>, actions, NumberedGlobal
action, actions, PlainGlobal
active action, active actions, PlainGlobal
relevant offer action of <site>, relevant offer actions, Plain
Properties of <action> { key phrase, plural keyword, form, <result type>}:
<action> as string, , Cast, <string>
active count of <action>, active counts, Plain, <integer>
active line number of <action>, active line numbers, Plain, <integer>
active of <action>, actives, Plain, <boolean>
active start time of <action>, active start times, Plain, <time>
complete time of <action>, complete times, Plain, <time>
constrained of <action>, constraineds, Plain, <boolean>
constraint of <action>, constraints, Plain, <integer>
download failure of <action>, download failures, Plain, <integer>
exit code of <action>, exit codes, Plain, <integer>
first active count of <action>, first active counts, Plain, <integer>
group leader of <action>, group leaders, Plain, <boolean>
header <string> of <action>, headers, Named, <fixlet_header>
header of <action>, headers, Plain, <fixlet_header>
id of <action>, ids, Plain, <integer>
last active line number of <action>, last active line numbers, Plain, <integer>
last active time of <action>, last active times, Plain, <time>
last change time of <action>, last change times, Plain, <time>
offer accepted of <action>, offer accepteds, Plain, <boolean>
offer of <action>, offers, Plain, <boolean>
origin fixlet id of <action>, origin fixlet ids, Plain, <integer>
parameter <string> of <action>, parameters, Named, <string>
pending login of <action>, pending logins, Plain, <boolean>
pending of <action>, pendings, Plain, <boolean>
pending restart of <action>, pending restarts, Plain, <boolean>
pending time of <action>, pending times, Plain, <time>
persistent constraint of <action>, persistent constraints, Plain, <integer>
status of <action>, statuss, Plain, <string>
system constraint of <action>, system constraints, Plain, <integer>
waiting for download of <action>, waiting for downloads, Plain, <boolean>
Type <action lock state>
Creation of <action lock state>: { key phrase, plural keyword, form}
action lock state, action lock states, PlainGlobal
Properties of <action lock state> { key phrase, plural keyword, form, <result type>}:
<action lock state> as string, , Cast, <string>
controller of <action lock state>, controllers, Plain, <string>
effective date of <action lock state>, effective dates, Plain, <time>
expiration date of <action lock state>, expiration dates, Plain, <time>
lock string of <action lock state>, lock strings, Plain, <string>
locked of <action lock state>, lockeds, Plain, <boolean>
Type <administrative rights>
Creation of <administrative rights>: { key phrase, plural keyword, form}
administrative rights of <client>, administrative rightss, Plain
Properties of <administrative rights> { key phrase, plural keyword, form, <result type>}:
enabled of <administrative rights>, enableds, Plain, <boolean>
Type <analysis>
Creation of <analysis>: { key phrase, plural keyword, form}
analysis, analysiss, PlainGlobal
Properties of <analysis> { key phrase, plural keyword, form, <result type>}:
last time of <analysis>, last times, Plain, <time>
Type <application> (derives from file)
Creation of <application>: { key phrase, plural keyword, form}
application <binary_string> of <folder>, applications, Index<binary_string>
application <binary_string>, applications, Index<binary_string>Global
application <string> of <folder>, applications, Named
application <string>, applications, NamedGlobal
recent application <string>, recent applications, NamedGlobal
recent application, recent applications, PlainGlobal
running application <string>, running applications, NamedGlobal
running application, running applications, PlainGlobal
Properties of <application> { key phrase, plural keyword, form, <result type>}:
Type <application usage summary>
Creation of <application usage summary>: { key phrase, plural keyword, form}
application usage summary <string>, application usage summaries, NamedGlobal
application usage summary, application usage summaries, PlainGlobal
Properties of <application usage summary> { key phrase, plural keyword, form, <result type>}:
first start time of <application usage summary>, first start times, Plain, <time>
instance of <application usage summary>, instances, Plain, <application usage summary instance>
last start time of <application usage summary>, last start times, Plain, <time>
last time seen of <application usage summary>, last times seen, Plain, <time>
name of <application usage summary>, names, Plain, <string>
running of <application usage summary>, runnings, Plain, <boolean>
total duration of <application usage summary>, total durations, Plain, <time interval>
total run count of <application usage summary>, total run counts, Plain, <integer>
Type <application usage summary instance>
Creation of <application usage summary instance>: { key phrase, plural keyword, form}
instance of <application usage summary>, instances, Plain
Properties of <application usage summary instance> { key phrase, plural keyword, form, <result type>}:
first start time of <application usage summary instance>, first start times, Plain, <time>
image path of <application usage summary instance>, image paths, Plain, <string>
last start time of <application usage summary instance>, last start times, Plain, <time>
last time seen of <application usage summary instance>, last times seen, Plain, <time>
name of <application usage summary instance>, names, Plain, <string>
size of <application usage summary instance>, sizes, Plain, <integer>
string version of <application usage summary instance>, string versions, Plain, <string>
total duration of <application usage summary instance>, total durations, Plain, <time interval>
total run count of <application usage summary instance>, total run counts, Plain, <integer>
version of <application usage summary instance>, versions, Plain, <version>
Type <bes product>
Creation of <bes product>: { key phrase, plural keyword, form}
product of <license>, products, Plain
Properties of <bes product> { key phrase, plural keyword, form, <result type>}:
client device count of <bes product>, client device counts, Plain, <integer>
computer count of <bes product>, computer counts, Plain, <integer>
expiration date of <bes product>, expiration dates, Plain, <date>
legacy of <bes product>, legacies, Plain, <boolean>
mvs count of <bes product>, mvs counts, Plain, <integer>
name of <bes product>, names, Plain, <string>
non windows server count of <bes product>, non windows server counts, Plain, <integer>
perpetual maintenance of <bes product>, perpetual maintenances, Plain, <boolean>
perpetual of <bes product>, perpetuals, Plain, <boolean>
rvu count of <bes product>, rvu counts, Plain, <integer>
site url of <bes product>, site urls, Plain, <string>
term of <bes product>, terms, Plain, <boolean>
windows server count of <bes product>, windows server counts, Plain, <integer>
workstation count of <bes product>, workstation counts, Plain, <integer>
Type <binary operator>
Creation of <binary operator>: { key phrase, plural keyword, form}
binary operator <string>, binary operators, NamedGlobal
binary operator returning <type>, binary operators returning, Index<type>Global
binary operator, binary operators, PlainGlobal
Properties of <binary operator> { key phrase, plural keyword, form, <result type>}:
<binary operator> as string, , Cast, <string>
left operand type of <binary operator>, left operand types, Plain, <type>
name of <binary operator>, names, Plain, <string>
result type of <binary operator>, result types, Plain, <type>
right operand type of <binary operator>, right operand types, Plain, <type>
symbol of <binary operator>, symbols, Plain, <string>
Type <binary position> (derives from integer)
Creation of <binary position>: { key phrase, plural keyword, form}
end of <binary_substring>, ends, Plain
position <integer> of <binary_string>, positions, Numbered
position of <binary_string>, positions, Plain
start of <binary_substring>, starts, Plain
Properties of <binary position> { key phrase, plural keyword, form, <result type>}:
following binary_string of <binary position>, following binary_strings, Plain, <binary_substring>
preceding binary_string of <binary position>, preceding binary_strings, Plain, <binary_substring>
Type <binary_string>
Creation of <binary_string>: { key phrase, plural keyword, form}
<binary_string> & <binary_string>, , BinaryOperator
<string> as binary_string, , Cast
<string> as fxf binary_string, , Cast
<string> as local binary_string, , Cast
<string> as utf16 binary_string, , Cast
<string> as utf8 binary_string, , Cast
<symlink> as binary_string, , Cast
<uuid> as binary_string, , Cast
binary location of <filesystem object>, binary locations, Plain
binary name of <filesystem object>, binary names, Plain
binary pathname of <filesystem object>, binary pathnames, Plain
binary_string <string>, binary_strings, NamedGlobal
byte <integer>, bytes, NumberedGlobal
reserved of <dmi bios_language_information>, reserveds, Plain
reserved of <dmi system_boot_information>, reserveds, Plain
uuid of <dmi system_information>, uuids, Plain
Properties of <binary_string> { key phrase, plural keyword, form, <result type>}:
<binary_string> & <binary_string>, , BinaryOperator, <binary_string>
<binary_string> < <binary_string>, , BinaryOperator, <boolean>
<binary_string> <= <binary_string>, , BinaryOperator, <boolean>
<binary_string> = <binary_string>, , BinaryOperator, <boolean>
<binary_string> as fxf string, , Cast, <string>
<binary_string> as hexadecimal, , Cast, <string>
<binary_string> as local string, , Cast, <string>
<binary_string> as string, , Cast, <string>
<binary_string> as utf16 string, , Cast, <string>
<binary_string> as utf8 string, , Cast, <string>
<binary_string> contains <binary_string>, , BinaryOperator, <boolean>
<binary_string> ends with <binary_string>, , BinaryOperator, <boolean>
<binary_string> starts with <binary_string>, , BinaryOperator, <boolean>
binary_substring <( integer, integer )> of <binary_string>, binary_substrings, Index<( integer, integer )>, <binary_substring>
binary_substring <binary_string> of <binary_string>, binary_substrings, Index<binary_string>, <binary_substring>
byte <integer> of <binary_string>, bytes, Numbered, <binary_substring>
byte of <binary_string>, bytes, Plain, <binary_substring>
first <integer> of <binary_string>, firsts, Numbered, <binary_substring>
last <integer> of <binary_string>, lasts, Numbered, <binary_substring>
length of <binary_string>, lengths, Plain, <integer>
position <integer> of <binary_string>, positions, Numbered, <binary position>
position of <binary_string>, positions, Plain, <binary position>
representable in <string> of <binary_string>, representables in, Named, <boolean>
representable in utf16 of <binary_string>, representables in utf16, Plain, <boolean>
representable in utf8 of <binary_string>, representables in utf8, Plain, <boolean>
representable of <binary_string>, representables, Plain, <boolean>
representation in <string> of <binary_string>, representations in, Named, <string>
Type <binary_substring> (derives from binary_string)
Creation of <binary_substring>: { key phrase, plural keyword, form}
<binary_substring> as binary_substring, , Cast
binary_substring <( integer, integer )> of <binary_string>, binary_substrings, Index<( integer, integer )>
binary_substring <binary_string> of <binary_string>, binary_substrings, Index<binary_string>
byte <integer> of <binary_string>, bytes, Numbered
byte of <binary_string>, bytes, Plain
first <integer> of <binary_string>, firsts, Numbered
following binary_string of <binary position>, following binary_strings, Plain
following binary_string of <binary_substring>, following binary_strings, Plain
last <integer> of <binary_string>, lasts, Numbered
preceding binary_string of <binary position>, preceding binary_strings, Plain
preceding binary_string of <binary_substring>, preceding binary_strings, Plain
Properties of <binary_substring> { key phrase, plural keyword, form, <result type>}:
<binary_substring> as binary_substring, , Cast, <binary_substring>
<binary_substring> as string, , Cast, <string>
end of <binary_substring>, ends, Plain, <binary position>
following binary_string of <binary_substring>, following binary_strings, Plain, <binary_substring>
preceding binary_string of <binary_substring>, preceding binary_strings, Plain, <binary_substring>
start of <binary_substring>, starts, Plain, <binary position>
Type <bios>
Creation of <bios>: { key phrase, plural keyword, form}
bios, bioses, PlainGlobal
Properties of <bios> { key phrase, plural keyword, form, <result type>}:
<bios> as string, , Cast, <string>
date of <bios>, dates, Plain, <string>
version of <bios>, versions, Plain, <string>
Type <bit set>
Creation of <bit set>: { key phrase, plural keyword, form}
<bit set> * <bit set>, , BinaryOperator
<bit set> + <bit set>, , BinaryOperator
<bit set> - <bit set>, , BinaryOperator
<integer> as bit set, , Cast
<integer> as bits, , Cast
bit <integer>, bits, NumberedGlobal
bit set <string>, bit sets, NamedGlobal
left shift <integer> of <bit set>, left shifts, Numbered
right shift <integer> of <bit set>, right shifts, Numbered
Properties of <bit set> { key phrase, plural keyword, form, <result type>}:
<bit set> * <bit set>, , BinaryOperator, <bit set>
<bit set> + <bit set>, , BinaryOperator, <bit set>
<bit set> - <bit set>, , BinaryOperator, <bit set>
<bit set> = <bit set>, , BinaryOperator, <boolean>
<bit set> as integer, , Cast, <integer>
<bit set> as string, , Cast, <string>
<bit set> contains <bit set>, , BinaryOperator, <boolean>
bit <integer> of <bit set>, bits, Numbered, <boolean>
least significant one bit of <bit set>, least significant one bits, Plain, <integer>
left shift <integer> of <bit set>, left shifts, Numbered, <bit set>
most significant one bit of <bit set>, most significant one bits, Plain, <integer>
one bit of <bit set>, one bits, Plain, <integer>
padded string of <bit set>, padded strings, Plain, <string>
right shift <integer> of <bit set>, right shifts, Numbered, <bit set>
Type <boolean>
Creation of <boolean>: { key phrase, plural keyword, form}
<binary_string> < <binary_string>, , BinaryOperator
<binary_string> <= <binary_string>, , BinaryOperator
<binary_string> = <binary_string>, , BinaryOperator
<binary_string> contains <binary_string>, , BinaryOperator
<binary_string> ends with <binary_string>, , BinaryOperator
<binary_string> starts with <binary_string>, , BinaryOperator
<bit set> = <bit set>, , BinaryOperator
<bit set> contains <bit set>, , BinaryOperator
<boolean> = <boolean>, , BinaryOperator
<boolean> as boolean, , Cast
<date> < <date>, , BinaryOperator
<date> <= <date>, , BinaryOperator
<date> = <date>, , BinaryOperator
<day of month> < <day of month>, , BinaryOperator
<day of month> <= <day of month>, , BinaryOperator
<day of month> = <day of month>, , BinaryOperator
<day of week> = <day of week>, , BinaryOperator
<day of year> < <day of year>, , BinaryOperator
<day of year> <= <day of year>, , BinaryOperator
<day of year> = <day of year>, , BinaryOperator
<debian package upstream version> < <debian package upstream version>, , BinaryOperator
<debian package upstream version> < <string>, , BinaryOperator
<debian package upstream version> <= <debian package upstream version>, , BinaryOperator
<debian package upstream version> <= <string>, , BinaryOperator
<debian package upstream version> = <debian package upstream version>, , BinaryOperator
<debian package upstream version> = <string>, , BinaryOperator
<debian package version epoch> < <debian package version epoch>, , BinaryOperator
<debian package version epoch> < <string>, , BinaryOperator
<debian package version epoch> <= <debian package version epoch>, , BinaryOperator
<debian package version epoch> <= <string>, , BinaryOperator
<debian package version epoch> = <debian package version epoch>, , BinaryOperator
<debian package version epoch> = <string>, , BinaryOperator
<debian package version revision> < <debian package version revision>, , BinaryOperator
<debian package version revision> < <string>, , BinaryOperator
<debian package version revision> <= <debian package version revision>, , BinaryOperator
<debian package version revision> <= <string>, , BinaryOperator
<debian package version revision> = <debian package version revision>, , BinaryOperator
<debian package version revision> = <string>, , BinaryOperator
<debian package version> < <debian package version>, , BinaryOperator
<debian package version> < <string>, , BinaryOperator
<debian package version> <= <debian package version>, , BinaryOperator
<debian package version> <= <string>, , BinaryOperator
<debian package version> = <debian package version>, , BinaryOperator
<debian package version> = <string>, , BinaryOperator
<file content> contains <string>, , BinaryOperator
<floating point> < <floating point>, , BinaryOperator
<floating point> < <integer>, , BinaryOperator
<floating point> <= <floating point>, , BinaryOperator
<floating point> <= <integer>, , BinaryOperator
<floating point> = <floating point>, , BinaryOperator
<floating point> = <integer>, , BinaryOperator
<hertz> < <hertz>, , BinaryOperator
<hertz> <= <hertz>, , BinaryOperator
<hertz> = <hertz>, , BinaryOperator
<integer set> = <integer set>, , BinaryOperator
<integer set> contains <integer set>, , BinaryOperator
<integer set> contains <integer>, , BinaryOperator
<integer> < <floating point>, , BinaryOperator
<integer> < <integer>, , BinaryOperator
<integer> <= <floating point>, , BinaryOperator
<integer> <= <integer>, , BinaryOperator
<integer> = <floating point>, , BinaryOperator
<integer> = <integer>, , BinaryOperator
<ip version> = <ip version>, , BinaryOperator
<ipv4 address> < <ipv4 address>, , BinaryOperator
<ipv4 address> < <string>, , BinaryOperator
<ipv4 address> <= <ipv4 address>, , BinaryOperator
<ipv4 address> <= <string>, , BinaryOperator
<ipv4 address> = <ipv4 address>, , BinaryOperator
<ipv4 address> = <string>, , BinaryOperator
<ipv4or6 address> < <ipv4or6 address>, , BinaryOperator
<ipv4or6 address> < <string>, , BinaryOperator
<ipv4or6 address> <= <ipv4or6 address>, , BinaryOperator
<ipv4or6 address> <= <string>, , BinaryOperator
<ipv4or6 address> = <ipv4or6 address>, , BinaryOperator
<ipv4or6 address> = <string>, , BinaryOperator
<ipv6 address> < <ipv6 address>, , BinaryOperator
<ipv6 address> <= <ipv6 address>, , BinaryOperator
<ipv6 address> = <ipv6 address>, , BinaryOperator
<json key> = <json key>, , BinaryOperator
<json value> = <json value>, , BinaryOperator
<json value> as boolean, , Cast
<month and year> < <month and year>, , BinaryOperator
<month and year> <= <month and year>, , BinaryOperator
<month and year> = <month and year>, , BinaryOperator
<month> < <month>, , BinaryOperator
<month> <= <month>, , BinaryOperator
<month> = <month>, , BinaryOperator
<number of months> < <number of months>, , BinaryOperator
<number of months> <= <number of months>, , BinaryOperator
<number of months> = <number of months>, , BinaryOperator
<regular expression> = <string>, , BinaryOperator
<rope> contains <string>, , BinaryOperator
<site version list> < <site version list>, , BinaryOperator
<site version list> <= <site version list>, , BinaryOperator
<site version list> = <site version list>, , BinaryOperator
<site version list> contains <site version list>, , BinaryOperator
<string set> = <string set>, , BinaryOperator
<string set> contains <string set>, , BinaryOperator
<string set> contains <string>, , BinaryOperator
<string> < <debian package upstream version>, , BinaryOperator
<string> < <debian package version epoch>, , BinaryOperator
<string> < <debian package version revision>, , BinaryOperator
<string> < <debian package version>, , BinaryOperator
<string> < <ipv4 address>, , BinaryOperator
<string> < <ipv4or6 address>, , BinaryOperator
<string> < <string>, , BinaryOperator
<string> < <strverscmp version>, , BinaryOperator
<string> < <uuid>, , BinaryOperator
<string> < <version>, , BinaryOperator
<string> <= <debian package upstream version>, , BinaryOperator
<string> <= <debian package version epoch>, , BinaryOperator
<string> <= <debian package version revision>, , BinaryOperator
<string> <= <debian package version>, , BinaryOperator
<string> <= <ipv4 address>, , BinaryOperator
<string> <= <ipv4or6 address>, , BinaryOperator
<string> <= <string>, , BinaryOperator
<string> <= <strverscmp version>, , BinaryOperator
<string> <= <uuid>, , BinaryOperator
<string> <= <version>, , BinaryOperator
<string> = <debian package upstream version>, , BinaryOperator
<string> = <debian package version epoch>, , BinaryOperator
<string> = <debian package version revision>, , BinaryOperator
<string> = <debian package version>, , BinaryOperator
<string> = <ipv4 address>, , BinaryOperator
<string> = <ipv4or6 address>, , BinaryOperator
<string> = <regular expression>, , BinaryOperator
<string> = <string>, , BinaryOperator
<string> = <strverscmp version>, , BinaryOperator
<string> = <uuid>, , BinaryOperator
<string> = <version>, , BinaryOperator
<string> as boolean, , Cast
<string> contains <regular expression>, , BinaryOperator
<string> contains <string>, , BinaryOperator
<string> ends with <regular expression>, , BinaryOperator
<string> ends with <string>, , BinaryOperator
<string> starts with <regular expression>, , BinaryOperator
<string> starts with <string>, , BinaryOperator
<strverscmp version> < <string>, , BinaryOperator
<strverscmp version> < <strverscmp version>, , BinaryOperator
<strverscmp version> <= <string>, , BinaryOperator
<strverscmp version> <= <strverscmp version>, , BinaryOperator
<strverscmp version> = <string>, , BinaryOperator
<strverscmp version> = <strverscmp version>, , BinaryOperator
<time interval> < <time interval>, , BinaryOperator
<time interval> <= <time interval>, , BinaryOperator
<time interval> = <time interval>, , BinaryOperator
<time of day with time zone> < <time of day with time zone>, , BinaryOperator
<time of day with time zone> <= <time of day with time zone>, , BinaryOperator
<time of day with time zone> = <time of day with time zone>, , BinaryOperator
<time of day> < <time of day>, , BinaryOperator
<time of day> <= <time of day>, , BinaryOperator
<time of day> = <time of day>, , BinaryOperator
<time range> = <time range>, , BinaryOperator
<time range> contains <time range>, , BinaryOperator
<time range> contains <time>, , BinaryOperator
<time zone> = <time zone>, , BinaryOperator
<time> < <time>, , BinaryOperator
<time> <= <time>, , BinaryOperator
<time> = <time>, , BinaryOperator
<type> = <type>, , BinaryOperator
<uuid> < <string>, , BinaryOperator
<uuid> < <uuid>, , BinaryOperator
<uuid> <= <string>, , BinaryOperator
<uuid> <= <uuid>, , BinaryOperator
<uuid> = <string>, , BinaryOperator
<uuid> = <uuid>, , BinaryOperator
<version> < <string>, , BinaryOperator
<version> < <version>, , BinaryOperator
<version> <= <string>, , BinaryOperator
<version> <= <version>, , BinaryOperator
<version> = <string>, , BinaryOperator
<version> = <version>, , BinaryOperator
<year> < <year>, , BinaryOperator
<year> <= <year>, , BinaryOperator
<year> = <year>, , BinaryOperator
active of <action>, actives, Plain
active of <logged on user>, actives, Plain
alias of <network ip interface>, aliases, Plain
allow unmentioned site of <license>, allow unmentioned sites, Plain
android of <operating system>, androids, Plain
authenticating of <client>, authenticatings, Plain
authenticating of <current relay>, authenticatings, Plain
big endian of <operating system>, big endians, Plain
bit <integer> of <bit set>, bits, Numbered
bit <integer> of <integer>, bits, Numbered
blob of <sqlite column type>, blobs, Plain
boolean <string>, booleans, NamedGlobal
broadcast support of <network adapter interface>, broadcast supports, Plain
broadcast support of <network ip interface>, broadcast supports, Plain
close wait of <tcp state>, close waits, Plain
closed of <tcp state>, closeds, Plain
closing of <tcp state>, closings, Plain
coma bug of <processor>, coma bugs, Plain
conjunction of <boolean>, conjunctions, Plain
constrained of <action>, constraineds, Plain
critical of <debianpkg dependency>, criticals, Plain
current status of <SELinux Boolean>, current statuses, Plain
currently installed of <debian base package>, currently installeds, Plain
currently installed of <debian versioned package>, currently installeds, Plain
delete tcb of <tcp state>, delete tcbs, Plain
dependency known of <property>, dependencies known, Plain
desired encrypt report of <client_cryptography>, desired encrypt reports, Plain
desired fips mode of <cryptography>, desired fips modes, Plain
disabled of <Xinetd Service>, disableds, Plain
disjunction of <boolean>, disjunctions, Plain
divided by zero of <floating point>, divided by zeroes, Plain
embedded of <operating system>, embeddeds, Plain
enabled of <administrative rights>, enableds, Plain
enabled of <setting>, enableds, Plain
encrypt report of <client_cryptography>, encrypt reports, Plain
enhanced security of <license>, enhanced securities, Plain
established of <tcp state>, establisheds, Plain
evaluated of <site>, evaluateds, Plain
evaluation of <license>, evaluations, Plain
exec shield of <process>, exec shields, Plain
execute of <mode_mask>, executes, Plain
f00f bug of <processor>, f00f bugs, Plain
false, falses, PlainGlobal
fdiv bug of <processor>, fdiv bugs, Plain
fin wait one of <tcp state>, fin wait ones, Plain
fin wait two of <tcp state>, fin wait twos, Plain
finite of <floating point>, finites, Plain
fips mode of <cryptography>, fips modes, Plain
fips mode of <license>, fips modes, Plain
float of <sqlite column type>, floats, Plain
fpu exception of <processor>, fpu exceptions, Plain
fpu of <processor>, fpus, Plain
full of <power level>, fulls, Plain
gateway flag of <route>, gateway flags, Plain
group execute of <filesystem object>, group executes, Plain
group leader of <action>, group leaders, Plain
group read of <filesystem object>, group reads, Plain
group write of <filesystem object>, group writes, Plain
has extended acl of <filesystem object>, has extended acls, Plain
hiddenmenu of <grub config file>, hiddenmenus, Plain
hlt bug of <processor>, hlt bugs, Plain
host flag of <route>, host flags, Plain
in agent context, in agent contexts, PlainGlobal
in proxy agent context, in proxy agent contexts, PlainGlobal
inexact of <floating point>, inexacts, Plain
infinite of <floating point>, infinites, Plain
integer of <sqlite column type>, integers, Plain
invalid of <floating point>, invalids, Plain
last ack of <tcp state>, last acks, Plain
leap of <year>, leaps, Plain
legacy of <bes product>, legacies, Plain
listening of <tcp state>, listenings, Plain
little endian of <operating system>, little endians, Plain
locked of <action lock state>, lockeds, Plain
loopback of <network adapter interface>, loopbacks, Plain
loopback of <network adapter>, loopbacks, Plain
loopback of <network ip interface>, loopbacks, Plain
low of <power level>, lows, Plain
mac of <operating system>, macs, Plain
member of <manual group>, members, Plain
member of <site group>, members, Plain
multicast support of <network adapter interface>, multicast supports, Plain
multicast support of <network adapter>, multicast supports, Plain
multicast support of <network ip interface>, multicast supports, Plain
multivalued of <property>, multivalueds, Plain
nan of <floating point>, nans, Plain
normal of <floating point>, normals, Plain
normal of <power level>, normals, Plain
nounzip of <grub module>, nounzips, Plain
null of <sqlite column type>, nulls, Plain
nx bit of <process>, nx bits, Plain
offer accepted of <action>, offer accepteds, Plain
offer of <action>, offers, Plain
other execute of <filesystem object>, other executes, Plain
other read of <filesystem object>, other reads, Plain
other write of <filesystem object>, other writes, Plain
overflow of <floating point>, overflows, Plain
pending login of <action>, pending logins, Plain
pending login, pending logins, PlainGlobal
pending of <action>, pendings, Plain
pending restart <string>, pending restarts, NamedGlobal
pending restart of <action>, pending restarts, Plain
pending restart, pending restarts, PlainGlobal
pending status of <SELinux Boolean>, pending statuses, Plain
perpetual maintenance of <bes product>, perpetual maintenances, Plain
perpetual of <bes product>, perpetuals, Plain
plugged of <power level>, pluggeds, Plain
point to point of <network adapter interface>, point to points, Plain
point to point of <network ip interface>, point to points, Plain
proxied of <hardware>, proxieds, Plain
quiet of <grub bootable image>, quiets, Plain
read of <mode_mask>, reads, Plain
reject flag of <route>, reject flags, Plain
relevance of <fixlet>, relevances, Plain
remote of <logged on user>, remotes, Plain
representable in <string> of <binary_string>, representables in, Named
representable in utf16 of <binary_string>, representables in utf16, Plain
representable in utf8 of <binary_string>, representables in utf8, Plain
representable of <binary_string>, representables, Plain
running of <application usage summary>, runnings, Plain
running of <service>, runnings, Plain
savedefault of <grub bootable image>, savedefaults, Plain
sep bug of <processor>, sep bugs, Plain
setgid of <filesystem object>, setgids, Plain
setgid of <mode>, setgids, Plain
setuid of <filesystem object>, setuids, Plain
setuid of <mode>, setuids, Plain
sha256 download of <license>, sha256 downloads, Plain
smt capable of <cpupackage>, smt capables, Plain
smt enabled of <cpupackage>, smt enableds, Plain
sticky of <mode>, stickies, Plain
syn received of <tcp state>, syn receiveds, Plain
syn sent of <tcp state>, syn sents, Plain
tcp of <socket>, tcps, Plain
term of <bes product>, terms, Plain
text of <sqlite column type>, texts, Plain
time wait of <tcp state>, time waits, Plain
true, trues, PlainGlobal
udp of <socket>, udps, Plain
underflow of <floating point>, underflows, Plain
unix of <operating system>, unixes, Plain
up flag of <route>, up flags, Plain
up of <network adapter interface>, ups, Plain
up of <network adapter>, ups, Plain
up of <network ip interface>, ups, Plain
ups of <power level>, upss, Plain
user execute of <filesystem object>, user executes, Plain
user read of <filesystem object>, user reads, Plain
user write of <filesystem object>, user writes, Plain
value accessible of <symlink>, values accessible, Plain
virtual machine of <operating system>, virtual machines, Plain
virtual of <hardware>, virtuals, Plain
wait of <Xinetd Service>, waits, Plain
waiting for download of <action>, waiting for downloads, Plain
windows of <operating system>, windowses, Plain
wp of <processor>, wps, Plain
write of <mode_mask>, writes, Plain
Properties of <boolean> { key phrase, plural keyword, form, <result type>}:
<boolean> * <time range>, , BinaryOperator, <timed( time range, boolean )>
<boolean> = <boolean>, , BinaryOperator, <boolean>
<boolean> as boolean, , Cast, <boolean>
<boolean> as string, , Cast, <string>
<time range> * <boolean>, , BinaryOperator, <timed( time range, boolean )>
conjunction of <boolean>, conjunctions, Plain, <boolean>
disjunction of <boolean>, disjunctions, Plain, <boolean>
Type <cast>
Creation of <cast>: { key phrase, plural keyword, form}
cast <string>, casts, NamedGlobal
cast from of <type>, casts from, Plain
cast returning <type>, casts returning, Index<type>Global
cast, casts, PlainGlobal
Properties of <cast> { key phrase, plural keyword, form, <result type>}:
<cast> as string, , Cast, <string>
name of <cast>, names, Plain, <string>
operand type of <cast>, operand types, Plain, <type>
result type of <cast>, result types, Plain, <type>
Type <client> (derives from application)
Creation of <client>: { key phrase, plural keyword, form}
client, clients, PlainGlobal
Properties of <client> { key phrase, plural keyword, form, <result type>}:
administrative rights of <client>, administrative rightss, Plain, <administrative rights>
administrator <string> of <client>, administrators, Named, <setting>
administrator of <client>, administrators, Plain, <setting>
authenticating of <client>, authenticatings, Plain, <boolean>
banned prefetch plugin of <client>, banned prefetch plugins, Plain, <string>
brand of <client>, brands, Plain, <string>
build target of <client>, build targets, Plain, <string>
certificate of <client>, certificates, Plain, <x509 certificate>
character set of <client>, character sets, Plain, <string>
data folder of <client>, data folders, Plain, <folder>
deployment character set of <client>, deployment character sets, Plain, <string>
evaluationcycle of <client>, evaluationcycles, Plain, <evaluation cycle>
fxf character set of <client>, fxf character sets, Plain, <string>
info of <client>, infos, Plain, <string>
last command time of <client>, last command times, Plain, <time>
last report time of <client>, last report times, Plain, <time>
local character set of <client>, local character sets, Plain, <string>
manual group <string> of <client>, manual groups, Named, <manual group>
manual group of <client>, manual groups, Plain, <manual group>
registration address of <client>, registration addresses, Plain, <ipv4or6 address>
registration cidr address of <client>, registration cidr addresses, Plain, <string>
registration mac address of <client>, registration mac addresses, Plain, <string>
registration subnet address of <client>, registration subnet addresses, Plain, <ipv4or6 address>
report character set of <client>, report character sets, Plain, <string>
setting <string> of <client>, settings, Named, <setting>
setting of <client>, settings, Plain, <setting>
storage folder of <client>, storage folders, Plain, <folder>
upload progress of <client>, upload progresses, Plain, <string>
version of <client>, versions, Plain, <version>
Type <client_cryptography>
Creation of <client_cryptography>: { key phrase, plural keyword, form}
client cryptography, client cryptographies, PlainGlobal
Properties of <client_cryptography> { key phrase, plural keyword, form, <result type>}:
desired encrypt report of <client_cryptography>, desired encrypt reports, Plain, <boolean>
encrypt report failure message of <client_cryptography>, encrypt report failure messages, Plain, <string>
encrypt report of <client_cryptography>, encrypt reports, Plain, <boolean>
Type <cpupackage>
Creation of <cpupackage>: { key phrase, plural keyword, form}
cpupackage, cpupackages, PlainGlobal
Properties of <cpupackage> { key phrase, plural keyword, form, <result type>}:
core of <cpupackage>, cores, Plain, <integer>
count of <cpupackage>, counts, Plain, <integer>
smt capable of <cpupackage>, smt capables, Plain, <boolean>
smt enabled of <cpupackage>, smt enableds, Plain, <boolean>
thread of <cpupackage>, threads, Plain, <integer>
Type <cryptography>
Creation of <cryptography>: { key phrase, plural keyword, form}
cryptography, cryptographies, PlainGlobal
Properties of <cryptography> { key phrase, plural keyword, form, <result type>}:
desired fips mode of <cryptography>, desired fips modes, Plain, <boolean>
fips mode failure message of <cryptography>, fips mode failure messages, Plain, <string>
fips mode of <cryptography>, fips modes, Plain, <boolean>
version of <cryptography>, versions, Plain, <string>
Type <current relay>
Creation of <current relay>: { key phrase, plural keyword, form}
current relay, current relays, PlainGlobal
Properties of <current relay> { key phrase, plural keyword, form, <result type>}:
authenticating of <current relay>, authenticatings, Plain, <boolean>
version of <current relay>, versions, Plain, <version>
Type <date>
Creation of <date>: { key phrase, plural keyword, form}
<date> + <number of months>, , BinaryOperator
<date> + <time interval>, , BinaryOperator
<date> - <number of months>, , BinaryOperator
<date> - <time interval>, , BinaryOperator
<day of month> & <month and year>, , BinaryOperator
<day of year> & <month and year>, , BinaryOperator
<day of year> & <year>, , BinaryOperator
<month and year> & <day of month>, , BinaryOperator
<month and year> & <day of year>, , BinaryOperator
<number of months> + <date>, , BinaryOperator
<string> as date, , Cast
<time interval> + <date>, , BinaryOperator
<time> as local date, , Cast
<time> as universal date, , Cast
<year> & <day of year>, , BinaryOperator
april <integer> of <integer>, aprils, Numbered
august <integer> of <integer>, augusts, Numbered
current date, current dates, PlainGlobal
date <string>, dates, NamedGlobal
date <time zone> of <time>, dates, Index<time zone>
december <integer> of <integer>, decembers, Numbered
expiration date of <bes product>, expiration dates, Plain
february <integer> of <integer>, februarys, Numbered
first <day of week> of <month and year>, firsts, Index<day of week>
first friday of <month and year>, first fridays, Plain
first monday of <month and year>, first mondays, Plain
first saturday of <month and year>, first saturdays, Plain
first sunday of <month and year>, first sundays, Plain
first thursday of <month and year>, first thursdays, Plain
first tuesday of <month and year>, first tuesdays, Plain
first wednesday of <month and year>, first wednesdays, Plain
january <integer> of <integer>, januarys, Numbered
july <integer> of <integer>, julys, Numbered
june <integer> of <integer>, junes, Numbered
march <integer> of <integer>, marchs, Numbered
maximum of <date>, maxima, Plain
may <integer> of <integer>, mays, Numbered
minimum of <date>, minima, Plain
november <integer> of <integer>, novembers, Numbered
october <integer> of <integer>, octobers, Numbered
september <integer> of <integer>, septembers, Numbered
Properties of <date> { key phrase, plural keyword, form, <result type>}:
<date> & <time of day with time zone>, , BinaryOperator, <time>
<date> + <number of months>, , BinaryOperator, <date>
<date> + <time interval>, , BinaryOperator, <date>
<date> - <date>, , BinaryOperator, <time interval>
<date> - <number of months>, , BinaryOperator, <date>
<date> - <time interval>, , BinaryOperator, <date>
<date> < <date>, , BinaryOperator, <boolean>
<date> <= <date>, , BinaryOperator, <boolean>
<date> = <date>, , BinaryOperator, <boolean>
<date> as string, , Cast, <string>
<format> + <date>, , BinaryOperator, <format>
<number of months> + <date>, , BinaryOperator, <date>
<time interval> + <date>, , BinaryOperator, <date>
<time of day with time zone> & <date>, , BinaryOperator, <time>
day_of_month of <date>, days_of_month, Plain, <day of month>
day_of_week of <date>, days_of_week, Plain, <day of week>
day_of_year of <date>, days_of_year, Plain, <day of year>
extrema of <date>, extremas, Plain, <( date, date )>
maximum of <date>, maxima, Plain, <date>
minimum of <date>, minima, Plain, <date>
month of <date>, months, Plain, <month>