This file contains 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 -U 0 -N support-v4-19.1.0/android.support.v4.BuildConfig support-v4-20.0.0/android.support.v4.BuildConfig | |
--- support-v4-19.1.0/android.support.v4.BuildConfig 1969-12-31 16:00:00.000000000 -0800 | |
+++ support-v4-20.0.0/android.support.v4.BuildConfig 2014-06-26 19:59:59.000000000 -0700 | |
@@ -0,0 +1,9 @@ | |
+public final class android.support.v4.BuildConfig { | |
+ public static final boolean DEBUG; | |
+ public static final java.lang.String PACKAGE_NAME; | |
+ public static final java.lang.String BUILD_TYPE; | |
+ public static final java.lang.String FLAVOR; | |
+ public static final int VERSION_CODE; |
This file contains 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
# MySQL | |
FROM ubuntu | |
RUN apt-get update | |
RUN echo "mysql-server-5.5 mysql-server/root_password password root123" | debconf-set-selections | |
RUN echo "mysql-server-5.5 mysql-server/root_password_again password root123" | debconf-set-selections | |
RUN echo "mysql-server-5.5 mysql-server/root_password seen true" | debconf-set-selections | |
RUN echo "mysql-server-5.5 mysql-server/root_password_again seen true" | debconf-set-selections | |
RUN apt-get install -y mysql-server mysql-client telnet |
This file contains 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
// This is now available as a full library instead of a gist: https://github.com/Q42/RxPromise |
This file contains 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 com.app.testrxandroid.retro.ParseObservable; | |
import com.parse.ParseObject; | |
import com.parse.ParseQuery; | |
import java.util.List; | |
import java.util.concurrent.TimeUnit; | |
import bolts.Continuation; | |
import bolts.Task; |
This file contains 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 com.testexample.RunListeners | |
import android.support.test.InstrumentationRegistry; | |
import android.support.test.uiautomator.UiDevice; | |
import org.junit.runner.Description; | |
import org.junit.runner.notification.Failure; | |
import org.junit.runner.notification.RunListener; | |
import java.io.File; |
This file contains 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
A problem occurred while processing the request. Please check our bug tracker to see if a similar problem has already been reported. If it is already reported, please vote and put a comment on it to let us gauge the impact of the problem. If you think this is a new issue, please file a new issue. When you file an issue, make sure to add the entire stack trace, along with the version of Jenkins and relevant plugins. The users list might be also useful in understanding what has happened. | |
Stack trace | |
java.io.IOException: {"message":"You need at least read:org scope or user scope to list your organizations.","documentation_url":"https://developer.github.com/v3/orgs/#list-your-organizations"} | |
at org.kohsuke.github.Requester.handleApiError(Requester.java:496) | |
at org.kohsuke.github.Requester._to(Requester.java:245) | |
at org.kohsuke.github.Requester.to(Requester.java:191) | |
at org.kohsuke.github.GitHub.getMyOrganizations(GitHub.java:331) | |
at org.jenkinsci.plugins.GithubAuthenticationToken.<init>(GithubAuthentication |
This file contains 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 com.cgollner.unclouded.preferences; | |
import android.annotation.TargetApi; | |
import android.content.Context; | |
import android.os.Build; | |
import android.preference.CheckBoxPreference; | |
import android.util.AttributeSet; | |
import com.cgollner.unclouded.R; |
This file contains 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
---///PRE-HONEYCOMB USING ACTIONBAR SHERLOCK////---- | |
/layout/actionbar_custom_view_done_discard.xml | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="horizontal" > |
This file contains 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 com.codexplo.widget; | |
import android.content.Context; | |
import android.content.res.TypedArray; | |
import android.graphics.Typeface; | |
import android.text.Spannable; | |
import android.text.style.StyleSpan; | |
import android.util.AttributeSet; | |
import android.util.Log; | |
import android.view.View; |
This file contains 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 com.android.dex; | |
import java.io.File; | |
import java.io.IOException; | |
import java.util.Map; | |
import java.util.TreeMap; | |
import java.util.concurrent.atomic.AtomicInteger; | |
public class Summary { | |
public static void main(String[] args) throws IOException { |
OlderNewer