-
Notifications
You must be signed in to change notification settings - Fork 3
/
Language.mac_10_7.txt
executable file
·7473 lines (7291 loc) · 427 KB
/
Language.mac_10_7.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:Mac OS X Server 10_7_3 (11D50d)
Client Version:9_5_7_90
Build Target:
ModuleName:HostApplication, Version:9_5_7_90, ClientCompatible:Yes
Types & Derived Types {<typename> [(derives from <basetypename>]}
action
action lock state
active directory group
active directory local computer
active directory local user
active directory server
administrative rights
agent interface
agent interface capability
analysis
application (derives from filesystem object)
application usage summary
application usage summary instance
array
bes product
binary operator
binary position (derives from integer)
binary_string
binary_substring (derives from binary_string)
bios
bit set
boolean
bundle
cast
client (derives from application)
client process owner
client_cryptography
component
computer
country
cpupackage
cryptography
current relay
datafork
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)
dictionary
dictionaryentry
domain
download server
dummy
dummy type
enableable_file (derives from file)
encoding
environment
environment variable
evaluation cycle
execution
exponential projection
file (derives from filesystem object)
file content
file line (derives from string)
file section
file signature
file type
filesystem object
fixlet
fixlet_header
floating point
floating point with multiplicity (derives from floating point)
folder (derives from filesystem object)
format
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
license
linear projection
logged on user
manual group
module
monitor power interval
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)
network link interface (derives from network interface)
nothing
number of months
number of months with multiplicity (derives from number of months)
operating system
osxvalue
power history
power level
power state
preference
process
processor
property
ram
rate
rate with multiplicity (derives from rate)
registration server
registrynode
registryroot
regular expression
regular expression match (derives from substring)
resfork
root server
rope
route
routing table
scsibus
scsidevice
security identifier
selected server
setting
site
site group
site version list
site version list with multiplicity (derives from site version list)
socket
sqlite column
sqlite column type
sqlite database
sqlite row
sqlite statement
sqlite table
stage
string
string position (derives from integer)
string set
string with multiplicity (derives from string)
substring (derives from string)
system power interval
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
usb
user
user attribute
utf8 string
version
version with multiplicity (derives from version)
volume (derives from folder)
wifi
wifi network
x509 certificate
year
year with multiplicity (derives from year)
Creation techniques & properties of each type:
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 <active directory group>
Creation of <active directory group>: { key phrase, plural keyword, form}
group <string> of <active directory local computer>, groups, Named
group <string> of <active directory local user>, groups, Named
group of <active directory local computer>, groups, Plain
group of <active directory local user>, groups, Plain
local group <string> of <active directory server>, local groups, Named
logged on group <string> of <active directory server>, logged on groups, Named
Properties of <active directory group> { key phrase, plural keyword, form, <result type>}:
distinguished name error message of <active directory group>, distinguished name error messages, Plain, <string>
distinguished name of <active directory group>, distinguished names, Plain, <string>
name of <active directory group>, names, Plain, <string>
sample time of <active directory group>, sample times, Plain, <time>
sid of <active directory group>, sids, Plain, <security identifier>
Type <active directory local computer>
Creation of <active directory local computer>: { key phrase, plural keyword, form}
local computer of <active directory server>, local computers, Plain
Properties of <active directory local computer> { key phrase, plural keyword, form, <result type>}:
distinguished name error message of <active directory local computer>, distinguished name error messages, Plain, <string>
distinguished name of <active directory local computer>, distinguished names, Plain, <string>
dns domainname of <active directory local computer>, dns domainnames, Plain, <string>
group <string> of <active directory local computer>, groups, Named, <active directory group>
group of <active directory local computer>, groups, Plain, <active directory group>
groups error message of <active directory local computer>, groups error messages, Plain, <string>
sample time of <active directory local computer>, sample times, Plain, <time>
Type <active directory local user>
Creation of <active directory local user>: { key phrase, plural keyword, form}
active directory user of <user>, active directory users, Plain
local user <string> of <active directory server>, local users, Named
local user of <active directory server>, local users, Plain
logged on user <string> of <active directory server>, logged on users, Named
logged on user of <active directory server>, logged on users, Plain
Properties of <active directory local user> { key phrase, plural keyword, form, <result type>}:
distinguished name error message of <active directory local user>, distinguished name error messages, Plain, <string>
distinguished name of <active directory local user>, distinguished names, Plain, <string>
dns domainname of <active directory local user>, dns domainnames, Plain, <string>
group <string> of <active directory local user>, groups, Named, <active directory group>
group of <active directory local user>, groups, Plain, <active directory group>
groups error message of <active directory local user>, groups error messages, Plain, <string>
name of <active directory local user>, names, Plain, <string>
sample time of <active directory local user>, sample times, Plain, <time>
Type <active directory server>
Creation of <active directory server>: { key phrase, plural keyword, form}
active directory, active directories, PlainGlobal
Properties of <active directory server> { key phrase, plural keyword, form, <result type>}:
local computer of <active directory server>, local computers, Plain, <active directory local computer>
local group <string> of <active directory server>, local groups, Named, <active directory group>
local user <string> of <active directory server>, local users, Named, <active directory local user>
local user of <active directory server>, local users, Plain, <active directory local user>
logged on group <string> of <active directory server>, logged on groups, Named, <active directory group>
logged on user <string> of <active directory server>, logged on users, Named, <active directory local user>
logged on user of <active directory server>, logged on users, Plain, <active directory local user>
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 <agent interface>
Creation of <agent interface>: { key phrase, plural keyword, form}
agent interface <string> of <client>, agent interfaces, Named
agent interface of <client>, agent interfaces, Plain
Properties of <agent interface> { key phrase, plural keyword, form, <result type>}:
capability <string> of <agent interface>, capabilities, Named, <agent interface capability>
capability of <agent interface>, capabilities, Plain, <agent interface capability>
client product of <agent interface>, client products, Plain, <string>
Type <agent interface capability>
Creation of <agent interface capability>: { key phrase, plural keyword, form}
capability <string> of <agent interface>, capabilities, Named
capability of <agent interface>, capabilities, Plain
Properties of <agent interface capability> { key phrase, plural keyword, form, <result type>}:
<agent interface capability> as string, , Cast, <string>
error code of <agent interface capability>, error codes, Plain, <integer>
name of <agent interface capability>, names, Plain, <string>
state of <agent interface capability>, states, Plain, <string>
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 filesystem object)
Creation of <application>: { key phrase, plural keyword, form}
application <binary_string>, applications, Index<binary_string>Global
application <string>, applications, NamedGlobal
application of <folder>, applications, Plain
application, applications, PlainGlobal
recent application <string>, recent applications, NamedGlobal
recent application, recent applications, PlainGlobal
regapp <string>, regapps, NamedGlobal
regapp, regapps, PlainGlobal
running application <string>, running applications, NamedGlobal
running application, running applications, PlainGlobal
Properties of <application> { key phrase, plural keyword, form, <result type>}:
<application> as string, , Cast, <string>
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 <array>
Creation of <array>: { key phrase, plural keyword, form}
array <integer> of <array>, arrays, Numbered
array <string> of <dictionary>, arrays, Named
array <string> of <preference>, arrays, Named
array of <file>, arrays, Plain
array of <osxvalue>, arrays, Plain
Properties of <array> { key phrase, plural keyword, form, <result type>}:
array <integer> of <array>, arrays, Numbered, <array>
boolean <integer> of <array>, booleans, Numbered, <boolean>
date <integer> of <array>, dates, Numbered, <time>
dictionary <integer> of <array>, dictionaries, Numbered, <dictionary>
integer <integer> of <array>, integers, Numbered, <integer>
real <integer> of <array>, reals, Numbered, <floating point>
size of <array>, sizes, Plain, <integer>
string <integer> of <array>, strings, Numbered, <string>
value of <array>, values, Plain, <osxvalue>
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
binary name of <filesystem object>, binary names, Plain
binary_string <string>, binary_strings, NamedGlobal
byte <integer>, bytes, NumberedGlobal
data <string> of <dictionary>, datas, Named
data of <osxvalue>, datas, 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
<country> = <country>, , BinaryOperator
<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
<file content> contains <string>, , BinaryOperator
<file signature> = <file signature>, , BinaryOperator
<file type> = <file type>, , BinaryOperator
<filesystem object> = <filesystem object>, , 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
<power state> = <power state>, , BinaryOperator
<rate> < <rate>, , BinaryOperator
<rate> <= <rate>, , BinaryOperator
<rate> = <rate>, , BinaryOperator
<regular expression> = <string>, , BinaryOperator
<rope> contains <string>, , BinaryOperator
<security identifier> = <security identifier>, , 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
<stage> = <stage>, , BinaryOperator
<string set> = <string set>, , BinaryOperator
<string set> contains <string set>, , BinaryOperator
<string set> contains <string>, , BinaryOperator
<string> < <ipv4 address>, , BinaryOperator
<string> < <ipv4or6 address>, , BinaryOperator
<string> < <string>, , BinaryOperator
<string> < <version>, , BinaryOperator
<string> <= <ipv4 address>, , BinaryOperator
<string> <= <ipv4or6 address>, , BinaryOperator
<string> <= <string>, , BinaryOperator
<string> <= <version>, , BinaryOperator
<string> = <ipv4 address>, , BinaryOperator
<string> = <ipv4or6 address>, , BinaryOperator
<string> = <regular expression>, , BinaryOperator
<string> = <string>, , 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
<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
<version> < <string>, , BinaryOperator
<version> < <version>, , BinaryOperator
<version> <= <string>, , BinaryOperator
<version> <= <version>, , BinaryOperator
<version> = <string>, , BinaryOperator
<version> = <version>, , BinaryOperator
<volume> = <volume>, , BinaryOperator
<year> < <year>, , BinaryOperator
<year> <= <year>, , BinaryOperator
<year> = <year>, , BinaryOperator
active of <action>, actives, Plain
active of <logged on user>, actives, Plain
alias of <file>, aliases, Plain
alias of <network ip interface>, aliases, Plain
allow unmentioned site of <license>, allow unmentioned sites, 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
blackhole flag of <route>, blackhole flags, Plain
blob of <sqlite column type>, blobs, Plain
boolean <integer> of <array>, booleans, Numbered
boolean <string> of <dictionary>, booleans, Named
boolean <string> of <preference>, booleans, Named
boolean <string>, booleans, NamedGlobal
boolean of <osxvalue>, booleans, Plain
broadcast flag of <route>, broadcast flags, Plain
broadcast support of <network adapter interface>, broadcast supports, Plain
broadcast support of <network adapter>, broadcast supports, Plain
broadcast support of <network ip interface>, broadcast supports, Plain
cloned of <route>, cloneds, Plain
cloning flag of <route>, cloning flags, Plain
close wait of <tcp state>, close waits, Plain
closed of <tcp state>, closeds, Plain
closing of <tcp state>, closings, Plain
condemned flag of <route>, condemned flags, Plain
conjunction of <boolean>, conjunctions, Plain
constrained of <action>, constraineds, Plain
default of <route>, defaults, Plain
delclone flag of <route>, delclone flags, 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 <enableable_file>, disableds, Plain
disjunction of <boolean>, disjunctions, Plain
divided by zero of <floating point>, divided by zeroes, Plain
done flag of <route>, done flags, Plain
dynamic flag of <route>, dynamic flags, Plain
embedded of <operating system>, embeddeds, Plain
enabled of <administrative rights>, enableds, Plain
enabled of <enableable_file>, enableds, Plain
enabled of <setting>, enableds, Plain
enabled of <wifi>, 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
false, falses, PlainGlobal
fast scsi of <scsibus>, fast scsis, 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
full of <power level>, fulls, Plain
gateway flag of <route>, gateway flags, Plain
group leader of <action>, group leaders, Plain
host flag of <route>, host flags, Plain
ibss of <wifi network>, ibsss, Plain
ifref flag of <route>, ifref flags, Plain
ifscope flag of <route>, ifscope 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
isochronous of <usb>, isochronouses, 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
llinfo flag of <route>, llinfo flags, Plain
local flag of <route>, local flags, Plain
locked of <action lock state>, lockeds, Plain
locked of <file>, 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
modified flag of <route>, modified flags, Plain
multicast flag of <route>, multicast flags, 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
null of <sqlite column type>, nulls, Plain
offer accepted of <action>, offer accepteds, Plain
offer of <action>, offers, 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
perpetual maintenance of <bes product>, perpetual maintenances, Plain
perpetual of <bes product>, perpetuals, Plain
pinned flag of <route>, pinned flags, Plain
plugged of <power level>, pluggeds, Plain
point to point of <network adapter interface>, point to points, Plain
point to point of <network adapter>, point to points, Plain
point to point of <network ip interface>, point to points, Plain
powerpc, powerpcs, PlainGlobal
prcloning flag of <route>, prcloning flags, Plain
proto1 flag of <route>, proto1 flags, Plain
proto2 flag of <route>, proto2 flags, Plain
proto3 flag of <route>, proto3 flags, Plain
proxy flag of <route>, proxy flags, 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
router flag of <route>, router flags, Plain
running of <application usage summary>, runnings, Plain
secured of <wifi network>, secureds, Plain
secured of <wifi>, secureds, Plain
sha256 download of <license>, sha256 downloads, Plain
smt capable of <cpupackage>, smt capables, Plain
smt enabled of <cpupackage>, smt enableds, Plain
static flag of <route>, static flags, Plain
stationery of <file>, stationeries, 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 interface>, ups, Plain
up of <network ip interface>, ups, Plain
ups of <power level>, upss, Plain
virtual memory, virtual memories, PlainGlobal
visible of <file>, visibles, Plain
waiting for download of <action>, waiting for downloads, Plain
wascloned flag of <route>, wascloned flags, Plain
wide16 scsi of <scsibus>, wide16 scsis, Plain
wide32 scsi of <scsibus>, wide32 scsis, Plain
windows of <operating system>, windowses, Plain
xresolve flag of <route>, xresolve flags, 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 <bundle>
Creation of <bundle>: { key phrase, plural keyword, form}
bundle <string>, bundles, NamedGlobal
bundle of <folder>, bundles, Plain
Properties of <bundle> { key phrase, plural keyword, form, <result type>}:
bundle version of <bundle>, bundle versions, Plain, <version>
creator of <bundle>, creators, Plain, <file signature>
global dictionary of <bundle>, global dictionaries, Plain, <dictionary>
local dictionary of <bundle>, local dictionaries, Plain, <dictionary>
type of <bundle>, types, Plain, <file type>
version of <bundle>, versions, Plain, <version>
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>
agent interface <string> of <client>, agent interfaces, Named, <agent interface>
agent interface of <client>, agent interfaces, Plain, <agent interface>
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>
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>
process owner of <client>, process owners, Plain, <client process owner>
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 process owner>
Creation of <client process owner>: { key phrase, plural keyword, form}
process owner of <client>, process owners, Plain
Properties of <client process owner> { key phrase, plural keyword, form, <result type>}:
<client process owner> as string, , Cast, <string>
long name of <client process owner>, long names, Plain, <string>
name of <client process owner>, names, Plain, <string>
short name of <client process owner>, short names, Plain, <string>
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 <component>
Creation of <component>: { key phrase, plural keyword, form}
component, components, PlainGlobal
Properties of <component> { key phrase, plural keyword, form, <result type>}:
info of <component>, infos, Plain, <string>
maker of <component>, makers, Plain, <string>
name of <component>, names, Plain, <string>
subtype of <component>, subtypes, Plain, <string>
type of <component>, types, Plain, <string>
version of <component>, versions, Plain, <version>
Type <computer>
Creation of <computer>: { key phrase, plural keyword, form}
computer, computers, PlainGlobal
Properties of <computer> { key phrase, plural keyword, form, <result type>}:
name of <computer>, names, Plain, <string>
Type <country>
Creation of <country>: { key phrase, plural keyword, form}
country <string>, countries, NamedGlobal
Properties of <country> { key phrase, plural keyword, form, <result type>}:
<country> = <country>, , BinaryOperator, <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 <datafork>
Creation of <datafork>: { key phrase, plural keyword, form}
data fork of <file>, data forks, Plain
Properties of <datafork> { key phrase, plural keyword, form, <result type>}:
length of <datafork>, lengths, Plain, <integer>
size of <datafork>, sizes, Plain, <integer>
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