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
name: $(Date:yyyyMMdd).$(Rev:r) | |
pool: | |
vmImage: 'ubuntu-latest' | |
steps: | |
- checkout: self | |
clean: true | |
persistCredentials: true |
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.IO; | |
using System.Linq; | |
using Android.Content; | |
using Java.Lang; | |
using Microsoft.Extensions.FileProviders; | |
using Microsoft.Extensions.Primitives; | |
namespace XamarinNetExtensions.Droid | |
{ |
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"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="jp.co.noxi.apppickerpro" | |
android:installLocation="internalOnly" | |
android:versionCode="20" | |
android:versionName="2.0.0" > | |
<uses-sdk | |
android:minSdkVersion="8" | |
android:targetSdkVersion="14" /> |
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.Collections.Generic; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using Newtonsoft.Json; | |
using Prism.Ioc; | |
using Prism.Services; | |
public class SampleData | |
{ |
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
// Initialize | |
console.time("initialize"); | |
const size = 10000000; | |
const a = new Array(size).fill(0).map((v, i) => i); | |
const records = { | |
"for": [], | |
"for-of": [], | |
"forEach": [], | |
"map": [], | |
"reduce": [] |
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 jp.noxi.pitalium.io; | |
import com.htmlhifive.pitalium.core.config.PtlTestConfig; | |
import com.htmlhifive.pitalium.core.io.PersistMetadata; | |
import com.htmlhifive.pitalium.core.io.Persister; | |
import com.htmlhifive.pitalium.core.io.ResourceUnavailableException; | |
import com.htmlhifive.pitalium.core.model.TargetResult; | |
import com.htmlhifive.pitalium.core.model.TestResult; | |
import javax.imageio.ImageIO; |
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
12-06 20:30:48.937 7911-7937/? W/InfraTrack: Analytics post: AndroidJUnitRunner failed. | |
java.net.SocketTimeoutException: failed to connect to www.google-analytics.com/64.233.188.138 (port 80) after 3000ms | |
at libcore.io.IoBridge.connectErrno(IoBridge.java:169) | |
at libcore.io.IoBridge.connect(IoBridge.java:122) | |
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:183) | |
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:452) | |
at java.net.Socket.connect(Socket.java:884) | |
at com.android.okhttp.internal.Platform.connectSocket(Platform.java:117) | |
at com.android.okhttp.internal.http.SocketConnector.connectRawSocket(SocketConnector |
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 jp.noxi.rx; | |
import io.reactivex.Single; | |
import io.reactivex.schedulers.Schedulers; | |
import java.util.concurrent.CountDownLatch; | |
import java.util.concurrent.TimeUnit; | |
public class Main { |
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 jp.noxi.weathernow; | |
import java.io.*; | |
import java.net.HttpURLConnection; | |
import java.net.URL; | |
import java.nio.file.Files; | |
import java.time.LocalDate; | |
import java.time.format.DateTimeFormatter; | |
import java.util.ArrayList; | |
import java.util.List; |
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 jp.noxi.sample.android.timer; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.os.Handler; | |
import android.widget.TextView; | |
import java.util.Timer; | |
import java.util.TimerTask; | |
import java.util.concurrent.TimeUnit; |
NewerOlder