I hereby claim:
- I am mpdreamz on github.
- I am mpdreamz (https://keybase.io/mpdreamz) on keybase.
- I have a public key whose fingerprint is 6EBA 1456 1926 6992 C2B5 163B 819C 04B5 9597 E310
To claim this, I am signing this object:
$ build.cmd | |
********************************************************************** | |
** Visual Studio 2017 Developer Command Prompt v15.7.3 | |
** Copyright (c) 2017 Microsoft Corporation | |
********************************************************************** | |
Tools are already initialized. | |
Running: c:\Projects\corefx\src\Native\build-native.cmd x64 Debug Windows_NT --numproc 8 -portable toolSetDir=c:\tools\clr | |
Tools are already initialized. | |
Running: c:\Projects\corefx\Tools\msbuild.cmd /nologo /verbosity:minimal /clp:Summary /maxcpucount /nodeReuse:false /l:BinClashLogger,Tools\net46\Microsoft.DotNet.Build.Tasks.dll;LogFile=binclash.log /p:ConfigurationGroup=Debug /p:BuildPackages=false /p:GenerateNativeVersionInfo=true /flp:v=normal /flp2:warningsonly;logfile=msbuild.wrn /flp3:errorsonly;logfile=msbuild.err c:\Projects\corefx\src\Native\..\../build.proj /t:GenerateVersionHeader |
I hereby claim:
To claim this, I am signing this object:
try | |
{ | |
try | |
{ | |
throw new Exception("inner most exception"); | |
} | |
catch (Exception e) | |
{ | |
//NastyInnerException does its own ISerializable.GetObjectData() implementation | |
var innerException = new NastyException("nasty inner exception", e); |
DELETE /countries | |
PUT /countries | |
{ | |
"mappings": { | |
"anthems" : { | |
"properties": { | |
"location": { | |
"type": "geo_point" | |
} |
PUT http://localhost:9200/prefix_test | |
{ | |
"settings": { | |
"blocks.read_only": false | |
}, | |
"settings": { | |
"analysis": { | |
"analyzer": { | |
"customanalyzer": { | |
"type": "custom", |
<system.net> | |
<defaultProxy> | |
<!-- Uncommment this line if you want to see web requests initiated by .NET (think WCF/REST calls) | |
REMEMBER TO UNDO THIS IF YOU CLOSE FIDDLER! | |
--> | |
<!--<proxy bypassonlocal="False" usesystemdefault="True" proxyaddress="http://127.0.0.1:8888" />--> | |
<proxy bypassonlocal="False" usesystemdefault="True" /> | |
</defaultProxy> | |
</system.net> |
#!/bin/bash | |
# This scripts scans the elasticsearch source code for all the registered REST endpoints | |
# It will put the formatted output in $DEFINITIONOUTPUTFILE | |
# [MethodName] [HttpVerb] [Route] | |
ESFOLDER="../elasticsearch" | |
DEFINITIONOUTPUTFILE="src/Generated/rest-actions.txt" | |
# Find all the lines that registerHandlers |
POST http://127.0.0.1:9200/nest_test_data-6612/elasticsearchprojects/_search?pretty=true HTTP/1.1 | |
Accept: application/json | |
Content-Type: application/json | |
Host: 127.0.0.1:9200 | |
Content-Length: 429 | |
Expect: 100-continue | |
{ | |
"from": 0, | |
"size": 10, |
POST http://local.localghost.io:9200/nest_test_data-9232/elasticsearchprojects/_search?pretty=true HTTP/1.1 | |
Accept: application/json | |
Content-Type: application/json | |
Host: local.localghost.io:9200 | |
Content-Length: 444 | |
Expect: 100-continue | |
{ | |
"from": 0, | |
"size": 20, |
--- Request Put Template | |
PUT http://localhost:9200/_template/put-template-with-warmers?pretty=true HTTP/1.1 | |
Accept: application/json | |
Content-Type: application/json | |
Host: localhost:9200 | |
Content-Length: 172 | |
Expect: 100-continue | |
{ |