This list is no longer updated, thus the information is no longer reliable.
You can see the latest version (from october 2022) here
This list is no longer updated, thus the information is no longer reliable.
You can see the latest version (from october 2022) here
import com.fasterxml.jackson.databind.JsonNode; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
import org.springframework.core.io.buffer.DataBuffer; | |
import org.springframework.core.io.buffer.DataBufferUtils; | |
import org.springframework.core.io.buffer.DefaultDataBufferFactory; | |
import reactor.core.publisher.Flux; | |
import reactor.core.publisher.Mono; | |
import java.io.BufferedWriter; | |
import java.io.FileWriter; |
open class Parent { | |
private val a = println("Parent.a") | |
constructor(arg: Unit=println("Parent primary constructor default argument")) { | |
println("Parent primary constructor") | |
} | |
init { | |
println("Parent.init") | |
} |
[user] | |
name = Rabhi Houcem | |
email = [email protected] | |
[core] | |
autocrlf = input | |
excludesfile = ~/.gitignore-global | |
editor = vim | |
[color] | |
ui = true | |
[alias] |
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" | |
xmlns:p="http://www.springframework.org/schema/p" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd | |
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"> | |
<bean | |
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> | |
<property name="location"> |
/* | |
* See LICENSE for licensing and NOTICE for copyright. | |
*/ | |
package edu.vt.middleware.app; | |
import java.io.File; | |
import java.security.*; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.function.Predicate; |
open class Parent { | |
private val a = println("Parent.a") | |
constructor(arg: Unit=println("Parent primary constructor default argument")) { | |
println("Parent primary constructor") | |
} | |
init { | |
println("Parent.init") | |
} |
// Simple groovy script to compress / decompress Strings | |
import java.util.zip.GZIPInputStream | |
import java.util.zip.GZIPOutputStream | |
def zip(String s){ | |
def targetStream = new ByteArrayOutputStream() | |
def zipStream = new GZIPOutputStream(targetStream) | |
zipStream.write(s.getBytes('UTF-8')) | |
zipStream.close() | |
def zippedBytes = targetStream.toByteArray() |
<profiles> | |
<profile> | |
<id>normal</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
<properties> | |
<surefireArgLine></surefireArgLine> <!--create blank property for surefire when not running under coverage profile--> | |
<failsafeArgLine></failsafeArgLine> <!--create blank property for failsafe when not running under coverage profile--> | |
</properties> |
"frxab";"50.102";"1.82425";"Abbeville" | |
"frmlw";"49.0037";"2.57089";"Aéroport CDG 2 TGV" | |
"frxag";"43.3174";"3.46613";"Agde" | |
"fragf";"44.2084";"0.620312";"Agen" | |
"frais";"49.9284";"2.20058";"Ailly Sur Somme" | |
"frqai";"45.5543";"6.6489";"Aime la Plagne" | |
"frqxb";"43.5232";"5.44412";"Aix en Provence" | |
"fraie";"43.4553";"5.31723";"Aix en Provence TGV" | |
"frxai";"45.6879";"5.90924";"Aix les Bains le Revard" | |
"frale";"45.7861";"5.98222";"Albens" |