This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PreBootPaths</key> <!-- stored at root of any Apple_Boot --> | |
<dict> | |
<key>DiskLabel</key> <!-- to be tweaked for the picker --> | |
<string>/System/Library/CoreServices/.disk_label</string> | |
<!-- implied .disk_label helper files --> | |
<key>AdditionalPaths</key> <!-- optional stuff at the root --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>kAverageLikelihood</key> | |
<real>-1.5</real> | |
<key>kBigramLearningBaseCost</key> | |
<integer>-2000</integer> | |
<key>kBigramLearningPrefixBaseCost</key> | |
<integer>-900</integer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<integer>0</integer> | |
<integer>1</integer> | |
<integer>1</integer> | |
<integer>1</integer> | |
<integer>1</integer> | |
<integer>1</integer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>innsbruck</key> | |
<array> | |
<integer>0</integer> | |
<integer>1</integer> | |
<integer>2</integer> | |
<integer>3</integer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<integer>0</integer> | |
<integer>1</integer> | |
<integer>19</integer> | |
<integer>20</integer> | |
<integer>21</integer> | |
<integer>22</integer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<array> | |
<string>BOS/EOS</string> | |
<string>*</string> | |
<string>*</string> | |
<string>*</string> | |
<string>*</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>adjectivePosID</key> | |
<integer>1396</integer> | |
<key>adverbPosID</key> | |
<integer>19</integer> | |
<key>auxVerbRegionBeginPosID</key> | |
<integer>20</integer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>allowsignedenabled</key> | |
<integer>1</integer> | |
<key>applications</key> | |
<array/> | |
<key>exceptions</key> | |
<array> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Copyright (c) 2011 Apple Inc. All rights reserved. | |
# | |
# @APPLE_LICENSE_HEADER_START@ | |
# | |
# This file contains Original Code and/or Modifications of Original Code | |
# as defined in and that are subject to the Apple Public Source License | |
# Version 2.0 (the 'License'). You may not use this file except in | |
# compliance with the License. Please obtain a copy of the License at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# gkreport - report Gatekeeper state to MessageTracer | |
# | |
main=$(/usr/sbin/spctl --status) | |
gk=$(/usr/sbin/spctl --test-devid-status) | |
/usr/bin/syslog -s -k \ | |
com.apple.message.domain com.apple.security.assessment.current_state \ | |
com.apple.message.signature "$main" \ | |
com.apple.message.signature2 "$gk" \ |