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
.. _kernels: | |
========================== | |
Making kernels for Jupyter | |
Jupyterカーネルの作成 | |
========================== | |
A 'kernel' is a program that runs and introspects the user's code. IPython | |
カーネルとは、ユーザの書いたコードを実行し、内部状態を確認するためのプログラムです。IPythonは | |
includes a kernel for Python code, and people have written kernels for |
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
mkdir 58 | |
cd 58 | |
svn co http://anonsvn.jboss.org/repos/jbossas/trunk | |
cd trunk | |
svn up -r 58 | |
cd ../../ | |
mkdir 2239 | |
cd 2239 | |
svn co http://anonsvn.jboss.org/repos/jbossas/trunk | |
cd trunk |
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
package model | |
type UTTypeTagSpecification struct { | |
publicFilenameExtension map[int]string `json:"public.filename-extension"`//=> [0 => "gputrace"] | |
} | |
type UTImportedTypeDeclaration struct { | |
UTTypeIdentifier string//=> "com.apple.gputools.gputrace" | |
UTTypeConformsTo map[int]string//" => [0 => "com.apple.package"] | |
UTTypeDescription string//=> "GPU Trace" | |
UTTypeTagSpecification UTTypeTagSpecification |
NewerOlder