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
| apply plugin: 'com.android.application' | |
| apply plugin: 'kotlin-android' | |
| android { | |
| compileSdkVersion 23 | |
| buildToolsVersion "23.0.1" | |
| defaultConfig { | |
| applicationId "com.clinicloud.app" | |
| minSdkVersion 18 |
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
| // Top-level build file where you can add configuration options common to all sub-projects/modules. | |
| buildscript { | |
| ext.kotlin_version = '1.0.0-beta-1038' | |
| ext.app_compat_version = "23.1.0" | |
| ext.anko_version = "0.7.2" | |
| repositories { | |
| jcenter() | |
| } | |
| dependencies { | |
| classpath 'com.android.tools.build:gradle:1.3.0' |
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
| Fuel.download(path).destination { | |
| response, url -> | |
| File(uuidFolder, "portrait.jpg") | |
| }.response { request, response, either -> | |
| when(either) { | |
| is Either.Left -> { | |
| //TODO | |
| delegate.portraitDownloadIncomplete() | |
| } | |
| is Either.Right -> { |
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/arch/arm/boot/dts/qcom/dsi-panel-somc-kagura.dtsi b/arch/arm/boot/dts/qcom/dsi-panel-somc-kagura.dtsi | |
| index 323d1da..99740bb 100644 | |
| --- a/arch/arm/boot/dts/qcom/dsi-panel-somc-kagura.dtsi | |
| +++ b/arch/arm/boot/dts/qcom/dsi-panel-somc-kagura.dtsi | |
| @@ -175,4 +175,4 @@ | |
| somc,mdss-dsi-wait-time-before-post-on-cmd = <0>; | |
| }; | |
| -}; | |
| +}; |
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/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c | |
| index e331e212f5fc..ab01f191bce8 100644 | |
| --- a/drivers/bluetooth/btusb.c | |
| +++ b/drivers/bluetooth/btusb.c | |
| @@ -366,6 +366,9 @@ static const struct usb_device_id blacklist_table[] = { | |
| { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK }, | |
| { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK }, | |
| + /* Additional Realtek 8822BE Bluetooth devices */ | |
| + { USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK }, |
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/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c | |
| index e331e212f5fc..ab01f191bce8 100644 | |
| --- a/drivers/bluetooth/btusb.c | |
| +++ b/drivers/bluetooth/btusb.c | |
| @@ -366,6 +366,9 @@ static const struct usb_device_id blacklist_table[] = { | |
| { USB_DEVICE(0x13d3, 0x3461), .driver_info = BTUSB_REALTEK }, | |
| { USB_DEVICE(0x13d3, 0x3462), .driver_info = BTUSB_REALTEK }, | |
| + /* Additional Realtek 8822BE Bluetooth devices */ | |
| + { USB_DEVICE(0x0b05, 0x185c), .driver_info = BTUSB_REALTEK }, |
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
| 203.12.166.138 |
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
| [Unit] | |
| Description=GNOME Display Manager | |
| # replaces the getty | |
| Conflicts=getty@tty1.service | |
| After=getty@tty1.service | |
| # replaces plymouth-quit since it quits plymouth on its own | |
| Conflicts=plymouth-quit.service | |
| After=plymouth-quit.service |
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
| Section "ServerLayout" | |
| Identifier "layout" | |
| Screen 0 "nvidia" | |
| Inactive "intel" | |
| EndSection | |
| Section "Device" | |
| Identifier "nvidia" | |
| Driver "nvidia" | |
| BusID "PCI:1@0:0:0" |
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
| let assert = require('assert') | |
| describe('blah blah', () => { | |
| before(done => { | |
| console.log('before') | |
| done() | |
| }) | |
| beforeEach(done => { |
OlderNewer