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 { FormGroup, FormControl, FormArray, Validators } from "@angular/forms"; | |
function testFormGroupTyped() { | |
var frm = new FormGroup({ | |
a: new FormArray([new FormControl(0)]), | |
b: new FormControl(true), | |
c: new FormGroup({ | |
s: new FormControl("abc"), | |
n: new FormControl(123) | |
}) |
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
# Cloud Foundry Manifest with 256m example | |
applications: | |
- name: my-app | |
path: ma-app.jar | |
instances: 1 | |
buildpack: https://github.com/cloudfoundry/java-buildpack.git | |
memory: 256m | |
env: | |
JAVA_OPTS: '-XX:ReservedCodeCacheSize=32M -XX:MaxDirectMemorySize=32M' | |
JBP_CONFIG_OPEN_JDK_JRE: '{ jre: { version: 1.8.0_+ }, memory_calculator: { stack_threads: 30 } }' |
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
https://www.google.ch/search?q=%s&cr=countryCH | |
https://www.google.ch/search?q=%s&cr=countryDE | |
https://www.google.ch/search?q=%s&lr=lang_de |
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
# Pattern: [second] [minute] [hour] [day of month] [month] [day of week] | |
# once per minute on weekdays | |
0 * * * * MON-FRI | |
# once a month at 00:00 AM in the morning of the first of the month | |
0 0 0 1 * ? |