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
| gem install mattetti-googlecharts --source=http://gems.github.com |
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
| BUILD FAILED | |
| FAILURE: Build failed with an exception. | |
| Total time: 3.447 secs | |
| * Where: | |
| Build file 'C:\Users\daipresents\git\AndroidTraining\AndroidStudio\practice\fundamentals\1st\FrameLayoutPractice\Practice1\app\build.gradle' line: 1 | |
| * What went wrong: | |
| A problem occurred evaluating root project 'app'. |
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:\Program Files\Java\jdk1.8.0_92\bin\java" "-Dgradle.home=C:\Program Files\Android\Android Studio\gradle\gradle-2.10" "-Dtools.jar=C:\Program Files\Java\jdk1.8.0_92\lib\tools.jar" -Didea.launcher.port=7535 "-Didea.launcher.bin.path=C:\Program Files\Android\Android Studio\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\groovy-all-2.4.4.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\ant-1.9.3.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\ant-launcher-1.9.3.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\gradle-base-services-2.10.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\gradle-base-services-groovy-2.10.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\gradle-cli-2.10.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\gradle-core-2.10.jar;C:\Program Files\Android\Android Studio\gradle\gradle-2.10\lib\gradle-docs-2.10.jar;C:\Program Files\And |
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
| @Override | |
| public Dialog onCreateDialog(Bundle savedInstanceState) { | |
| // TODO: ダイアログで、はい・いいえ の選択肢を表示する | |
| AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); | |
| builder.setView(R.layout.dialog); | |
| builder.setMessage("Input your name.") | |
| // OKボタン | |
| .setPositiveButton("OK", new DialogInterface.OnClickListener() { | |
| public void onClick(DialogInterface dialog, int id) { |
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
| for textfile in $( ls . | grep txt$ ); do echo "${textfile}"; done |
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
| [caps] | |
| platformName = "Android" | |
| versionNumber = "1.12" | |
| deviceName = "F8132" | |
| app = "sample.apk" | |
| [appium_lib] | |
| wait = 10 |
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
| require 'rest-client' | |
| RestClient.get(url, headers={}) | |
| RestClient.post(url, payload, headers={}) |
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
| var users = environment.users.split(',') | |
| var counter = Number(environment.counter); | |
| postman.setEnvironmentVariable("user", users[counter]); |
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
| WARNING: Using `expect { }.not_to raise_error(SpecificErrorClass)` risks false positives, since literally any other error would cause the expectation to pass, including those raised by Ruby (e.g. NoMethodError, NameError and ArgumentError), meaning the code you are intending to test may not even get reached. Instead consider using `expect {}.not_to raise_error` or `expect { }.to raise_error(DifferentSpecificErrorClass)`. This message can be suppressed by setting: `RSpec::Expectations.configuration.on_potential_false_positives = :nothing`. |
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
| $ arc | |
| /Users/daipresents/.anyenv/envs/rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/selenium-webdriver-3.4.0/lib/selenium/webdriver/remote/response.rb:69:in `assert_ok': An unknown server-side error occurred while processing the command. Original error: Error executing adbExec. Original error: Command '/Users/daipresents/Library/Android/sdk/platform-tools/adb -P 5037 -s FA6950305822 install /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-android-driver/node_modules/appium-android-ime/bin/UnicodeIME-debug.apk' exited with code 1{"stdout":"","stderr":"Failed to install /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-android-driver/node_modules/appium-android-ime/bin/UnicodeIME-debug.apk: Failure [INSTALL_FAILED_ALREADY_EXISTS: Attempt to re-install io.appium.android.ime without first uninstalling.]\n","code":1} (Selenium::WebDriver::Error::UnknownError) | |
| from /Users/daipresents/.anyenv/envs/rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/sele |