| Path | Version | Description |
|---|---|---|
| add-ons;addon-google_apis-google-15 | 3 | Google APIs |
| add-ons;addon-google_apis-google-16 | 4 | Google APIs |
| add-ons;addon-google_apis-google-17 | 4 | Google APIs |
| add-ons;addon-google_apis-google-18 | 4 | Google APIs |
| add-ons;addon-google_apis-google-19 | 20 | Google APIs |
| add-ons;addon-google_apis-google-21 | 1 | Google APIs |
| add-ons;addon-google_apis-google-22 |
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
| 2019-07-10 17:06:45.343 932-1162/? I/ThermalEngine: handle_thresh_sig: TM Id SKIN-BATTERY-MONITOR Sensor xo_therm Temp 34000 | |
| 2019-07-10 17:06:45.343 932-1162/? I/ThermalEngine: TM Id 'SKIN-BATTERY-MONITOR' Sensor 'xo_therm' - alarm raised 1 at 34.0 degC | |
| 2019-07-10 17:06:45.343 932-1162/? I/ThermalEngine: j=0 i=0 TM Id SKIN-BATTERY-MONITOR Sensor xo_therm: Action battery value 0 | |
| 2019-07-10 17:06:45.460 703-3207/? E/ANDR-PERF-MPCTL: poll() has timed out for /sys/module/msm_performance/events/cpu_hotplug | |
| 2019-07-10 17:06:45.461 703-3207/? E/ANDR-PERF-MPCTL: Block on poll() | |
| 2019-07-10 17:06:48.465 703-3207/? E/ANDR-PERF-MPCTL: poll() has timed out for /sys/module/msm_performance/events/cpu_hotplug | |
| 2019-07-10 17:06:48.465 703-3207/? E/ANDR-PERF-MPCTL: Block on poll() | |
| --------- beginning of system | |
| 2019-07-10 17:06:50.559 2184-6325/? I/ActivityManager: Killing 25630:com.android.chrome:sandboxed_process0/u0a117i33 (adj 0): isolated not needed |
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 php:7.1.2-apache | |
| RUN docker-php-ext-install mysqli |
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
| /** | |
| * @class | |
| * @description | |
| * Wrapper for HTML5 audio. | |
| */ | |
| import {Injectable, NgZone} from 'angular2/core'; | |
| import {Observer} from 'rxjs/Observer'; | |
| import {Observable} from 'rxjs/Observable'; | |
| declare var AudioContext:any; |
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
| mpwpApp.directive("money",function ($filter, $locale) { | |
| return { | |
| restrict: 'A', | |
| require: 'ngModel', | |
| link: function (scope, el, attr, ctrl) { | |
| // format on init | |
| formatMoney(); | |
| function formatMoney() { | |
| var value = ctrl.$modelValue; |
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
| <?php | |
| namespace InterNations\Component\Date\Value; | |
| use DateTime as DateTimeBase; | |
| use DateTimeZone; | |
| use DateInterval; | |
| class DateTime extends DateTimeBase | |
| { |
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
| <?php | |
| /** | |
| * CodeIgniter | |
| * | |
| * An open source application development framework for PHP | |
| * | |
| * This content is released under the MIT License (MIT) | |
| * | |
| * Copyright (c) 2014 - 2015, British Columbia Institute of Technology | |
| * |
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
| <?php | |
| class MyArrayObject extends \ArrayObject | |
| { | |
| public function offsetGet($index) | |
| { | |
| if (!parent::offsetExists($index)) { | |
| parent::offsetSet($index, new MyArrayObject(array(), \ArrayObject::ARRAY_AS_PROPS)); | |
| } | |
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
| <?php | |
| header('Content-Type: text/html; charset=utf-8'); | |
| header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); | |
| header ('Last-Modified: ' . gmdate("D,d M YH:i:s") . ' GMT'); | |
| header ('Cache-Control: no-cache, must-revalidate'); | |
| header ('Pragma: no-cache'); | |
| header ('Content-type: application/x-msexcel'); | |
| header ('Content-Disposition: attachment; filename="' . date('Y-m-d_H-i-s') . '.xls"'); | |
| header ("Content-Description: PHP Generated Data" ); |
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
| <?php | |
| App::uses('AppController', 'Controller'); | |
| App::import('Vendor', 'Facebook', array('file' => 'facebook-php-sdk/src/facebook.php')); | |
| App::import('Network/Http', 'HttpSocket'); | |
| /** | |
| * Users Controller | |
| * | |
| * @property User $User | |
| */ |
NewerOlder