SVG text
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
| /* @license C3.js v0.5.2 | (c) C3 Team and other contributors | http://c3js.org/ */ | |
| (function (global, factory) { | |
| typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : | |
| typeof define === 'function' && define.amd ? define(factory) : | |
| (global.c3 = factory()); | |
| }(this, (function () { 'use strict'; | |
| var CLASS = { | |
| target: 'c3-target', | |
| chart: 'c3-chart', |
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
| import { NgModule } from '@angular/core'; | |
| import { Routes, RouterModule } from '@angular/router'; | |
| const routes: Routes = []; | |
| @NgModule({ | |
| imports: [RouterModule.forRoot(routes)], | |
| exports: [RouterModule] | |
| }) | |
| export class AppRoutingModule { } |
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
| interface ThingIndex { | |
| specialId: number; | |
| } | |
| interface ThingValue { | |
| value: string; | |
| } | |
| const mapOfThings: Map<ThingIndex, ThingValue> = new Map(); | |
| return Array.from(mapOfThings.entries()) |
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
| const webpackConfig = require('../../../webpack/webpack.test.js'); | |
| const WATCH = process.argv.includes('--watch'); | |
| module.exports = (config) => { | |
| config.set({ | |
| // base path that will be used to resolve all patterns (eg. files, exclude) | |
| basePath: './', |
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
| <div> | |
| <span>Some text!</span> | |
| <ngx-datatable | |
| [rows]="rows" | |
| [columns]="columns"> | |
| </ngx-datatable> | |
| </div> |
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
| 18.02.2018 16:18:09.567 DEBUG [main] [e.s.smartid.rest.SessionStatusPoller.pollSessionStatus:62] - Polling session status | |
| 18.02.2018 16:18:09.568 DEBUG [main] [e.s.s.rest.SmartIdRestConnector.getSessionStatus:49] - Getting session status for c4afb059-4c9b-411c-8d4e-5804ab879027 | |
| 18.02.2018 16:18:09.587 DEBUG [main] [ee.sk.smartid.rest.LoggingFilter.logUrl:58] - GET https://sid.demo.sk.ee/smart-id-rp/v1/session/c4afb059-4c9b-411c-8d4e-5804ab879027 | |
| 18.02.2018 16:18:09.587 TRACE [main] [ee.sk.smartid.rest.LoggingFilter.logHeaders:64] - Request headers: {Accept=[application/json]} | |
| 18.02.2018 16:19:10.177 DEBUG [main] [ee.sk.smartid.rest.LoggingFilter.filter:40] - Response status: 200 - OK | |
| 18.02.2018 16:19:10.179 TRACE [main] [ee.sk.smartid.rest.LoggingFilter.logResponseBody:80] - Response body: {"state":"RUNNING"} | |
| 18.02.2018 16:19:10.189 DEBUG [main] [e.s.smartid.rest.SessionStatusPoller.pollForFinalSessionStatus:51] - Sleeping for 1 SECONDS | |
| 18.02.2018 16:19:10.189 INFO [main] [e.s.smartid.rest.SessionStatusPolle |
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
| public class MyClass { | |
| public static void main(String args[]) { | |
| Example.runExample(); | |
| AnotherExample.runExample(); | |
| } | |
| } | |
| class Example { | |
| private String brand; | |
| private boolean name; |
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
| private Collection<String> aggregateSomething(Based on) { | |
| // validationResults is list of objects, that have method `giveMeSomething`. Need to call it in map | |
| return Optional.of(on.getThisSomethingCollection()) | |
| .map(validationResults -> ...) | |
| .ifPresent(Collectors.toSet()); | |
| } |
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
| /** | |
| * ngTable: Table + Angular JS | |
| * | |
| * @author Vitalii Savchuk <[email protected]> | |
| * @url https://github.com/esvit/ng-table/ | |
| * @license New BSD License <http://creativecommons.org/licenses/BSD/> | |
| */ | |
| (function(){ | |
| /** |