This file contains 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
// Microsoft (R) .NET Framework IL Disassembler. Version 4.8.3928.0 | |
// Copyright (c) Microsoft Corporation. All rights reserved. | |
// Metadata version: v4.0.30319 | |
.assembly extern System.Runtime | |
{ | |
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....: |
This file contains 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
-- Installing: /coreclr/bin/Product/Linux.x64.Debug/bin/libnativelibrary.so | |
CMake Error at tests/src/readytorun/tests/cmake_install.cmake:42 (file): | |
file INSTALL cannot copy file | |
"/coreclr/bin/obj/Linux.x64.Debug/tests/src/readytorun/tests/libnativelibrary.so" | |
to "/coreclr/bin/Product/Linux.x64.Debug/bin/libnativelibrary.so". | |
Call Stack (most recent call first): | |
tests/src/readytorun/cmake_install.cmake:37 (include) | |
tests/cmake_install.cmake:53 (include) | |
cmake_install.cmake:43 (include) |
This file contains 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
using System.CodeDom.Compiler; | |
using System.Collections.Generic; | |
using System.Collections; | |
using System.ComponentModel; | |
using System.Diagnostics.CodeAnalysis; | |
using System.Globalization; | |
using System.IO; | |
using System.Linq; | |
using System.Reflection; | |
using System.Runtime.Serialization; |
This file contains 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
open System | |
open System.Data.SqlClient | |
open System.IO | |
open System.Text.RegularExpressions | |
type BlogPost = | |
{ Id: int | |
Title: string | |
Date: DateTime | |
Text: string } |
This file contains 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
alert(0); |
This file contains 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
// this roll why function seems to work on a small 5 x 5 matrix | |
// but doesn't for bigger 227 x 227 image | |
// no idea why | |
let rollArrayY yLength shift (data:'t[]) = | |
let shift = | |
if shift > 0 then | |
shift | |
else | |
yLength + shift | |
let out:'t[] = Array.zeroCreate data.Length |
This file contains 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
let walkCommits (hash: Hash, count) = | |
printfn "%s %s %s" objectsDir hash.DirectoryName hash.FileName | |
let objectPath = Path.Combine(objectsDir, hash.DirectoryName, hash.FileName) | |
printfn "objectPath: %s" objectPath | |
let gitObject = GitObject.ParseFile objectPath | |
match gitObject with | |
| Commit (_, commit) -> | |
match commit.Parent with | |
| Some (hash) when count < 10 -> |
This file contains 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
Usage: ./TestHw.exe HWServer [Name] | |
Name Your name. Default: World | |
zmq::stream_engine_t::in_event start | |
zmq::stream_engine_t::in_event handshake failed - exiting | |
zmq::stream_engine_t::in_event start | |
zmq::stream_engine_t::in_event handshake failed - exiting | |
zmq::stream_engine_t::in_event start |
NewerOlder