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
| scheduling policy = TIME_CONSTRAINT | |
| period = 10666666 | |
| computation = 100000 | |
| constraint = 10666666 | |
| preemtible = TRUE | |
| 10.6ms | |
| 0.1ms | |
| 10.6ms |
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
| swift_allocObject |
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
| #include <libkern/OSAtomic.h> | |
| int32_t OSAtomicStore(volatile int32_t *address, int32_t new_value) | |
| { | |
| while (true){ | |
| int32_t old_value = *address; | |
| if (OSAtomicCompareAndSwap32Barrier(old_value, new_value, address)){ | |
| return old_value; | |
| } | |
| } | |
| } |
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
| C:\user\hoge\AppData\Roaming\Avid\Pro Tools First |
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
| git submodule git://hoge hoge | |
| git submodule deinit hoge |
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
| rake assets:precompile |
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
| i = 0 | |
| sum = 0 | |
| File.foreach('a.txt') do |line| | |
| s = line.split(" ") | |
| if i % 2 == 0 | |
| t = s[5] | |
| if !t.nil? | |
| sum += t.to_i | |
| end | |
| end |
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
| as administrator | |
| mklink c:\users\hoge\_gvimrc c:\users\hoge\dotfiles\.vimrc | |
| mklink c:\users\hoge\.vimrc c:\users\hoge\dotfiles\.vimrc |
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
| ssh-add -K ~/.ssh/id_rsa |
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
| // | |
| // main.swift | |
| // aaa | |
| // | |
| // Created by pebble8888 on 2016/12/21. | |
| // Copyright © 2016年 pebble8888. All rights reserved. | |
| // | |
| // | |
| // OSX NSSpeechRecognizer example swift3 |