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
diff --git a/android-ndk-r9/docs/APPLICATION-MK.html b/android-ndk-r9b/docs/APPLICATION-MK.html | |
index ecdd3ac..004c59a 100644 | |
--- a/android-ndk-r9/docs/APPLICATION-MK.html | |
+++ b/android-ndk-r9b/docs/APPLICATION-MK.html | |
@@ -242,8 +242,8 @@ define a few variables:</p> | |
<hr /> | |
<p><code>NDK_TOOLCHAIN_VERSION</code></p> | |
<blockquote> | |
-<p>Define this variable to either 4.4.3 or 4.6 to select version of GCC compiler. | |
- 4.6 is the default</p> |
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
final AudioTrack track = new AudioTrack( | |
AudioManager.STREAM_MUSIC, AUDIO_SAMPLING_RATE, | |
AudioFormat.CHANNEL_OUT_MONO, | |
AudioFormat.ENCODING_DEFAULT, AUDIO_TOTAL_BYTES, | |
AudioTrack.MODE_STREAM); | |
track.setPlaybackPositionUpdateListener( | |
new AudioTrack.OnPlaybackPositionUpdateListener() { | |
@Override | |
public void onMarkerReached(AudioTrack track) { | |
track.stop(); |
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 Computer//DTD PLIST 1.0//EN" | |
"http://www.apple.com/DTDs/PropertyList-1.0.dtd" > | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>jp.muo.gitupdater</string> | |
<key>EnableGlobbing</key> | |
<true/> | |
<key>ProgramArguments</key> |
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
using Xamarin.Forms; | |
using System.Reflection; | |
using System.Runtime.CompilerServices; | |
using Xamarin.Forms.Xaml; | |
var xaml = @"<?xml version=""1.0"" encoding=""utf-8"" ?> | |
<ContentPage xmlns=""http://xamarin.com/schemas/2014/forms"" | |
xmlns:x=""http://schemas.microsoft.com/winfx/2009/xaml"" | |
x:Class=""XamlSamples.HelloXamlPage"" | |
Title=""Hello XAML Page"" |
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
FROM mono:3.10 | |
ENV KRE_VERSION 1.0.0-beta1 | |
ENV KRE_USER_HOME /opt/kre | |
RUN apt-get -qq update && apt-get -qqy install unzip | |
RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/v$KRE_VERSION/kvminstall.sh | sh | |
RUN bash -c "source $KRE_USER_HOME/kvm/kvm.sh \ | |
&& kvm install $KRE_VERSION -a default \ |
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
using System; | |
using System.Diagnostics; | |
namespace TestJob | |
{ | |
class Program | |
{ | |
static void Main() | |
{ | |
Console.WriteLine("testing node.js based command"); |
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
{ | |
paths: { | |
/operators: { | |
post: { | |
parameters: [ | |
{ | |
schema: { | |
- $ref: "#/definitions/RegisterOperatorsRequest" | |
+ $ref: "#/definitions/CreateOperatorRequest" | |
} |
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
{ | |
paths: { | |
/subscribers: { | |
get: { | |
parameters: [ | |
... | |
... | |
... | |
{ | |
- description: "検索対象にするstatus。`|`で区切って複数指定することができる。指定可能な値の一覧はこちら" |
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
diff --git a/.rubocop.yml b/.rubocop.yml | |
index 137ead8..f944ff7 100644 | |
--- a/.rubocop.yml | |
+++ b/.rubocop.yml | |
@@ -1 +1,43 @@ | |
-inherit_from: rubocop-todo.yml | |
+AllCops: | |
+ Exclude: | |
+ - lib/lineinput.rb | |
+ - lib/uuid.rb |
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
{ | |
definitions: { | |
Subscriber: { | |
properties: { | |
speed_class: { | |
+ enum: [ | |
+ "s1.minimum" | |
+ "s1.slow" | |
+ "s1.standard" | |
+ "s1.fast" |