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
| package collections; | |
| import collections.BinarySearchTree.Node; | |
| public class RedBlackBST<E extends Comparable<E>> { | |
| private static final int RED = 0; | |
| private static final int BLACK = 1; | |
| Node root; |
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 java.util.Arrays; | |
| import java.util.regex.*; | |
| public class Parser { | |
| public Parser() { | |
| } | |
| public static String[] getValues(String dson, String property) { |
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
| param ( | |
| [string]$branch = "refs/heads/master", | |
| [string]$branch_is_default = "true", | |
| [string]$build_number = "0", | |
| [bool]$search_project_for_version = $False | |
| ) | |
| function Update-AssemblyVersion { | |
| param ([string]$version) | |
| Write-Host "Updating AssemblyVersion..." |
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
| // Type: DataFileMapper.BusConfigComparer | |
| // Assembly: DataFileMapper, Version=0.0.1.0, Culture=neutral, PublicKeyToken=null | |
| // MVID: 640C1268-B131-4899-988A-11694B5212FB | |
| // Location: C:\Users\jd\source\repos\DataFileMapper\DataFileMapper\bin\Release\netcoreapp3.1\DataFileMapper.dll | |
| // Sequence point data from C:\Users\jd\source\repos\DataFileMapper\DataFileMapper\bin\Release\netcoreapp3.1\DataFileMapper.pdb | |
| .class public auto ansi beforefieldinit | |
| DataFileMapper.BusConfigComparer | |
| extends [System.Runtime]System.Object | |
| { |
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
| {"schemaVersion":1,"label":"Unit Test Coverage","message":"85.73%","color":"brightgreen"} |
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
| openapi: 3.1.0 | |
| info: | |
| title: Ollama API | |
| description: API for interacting with the Ollama service. | |
| version: 1.0.0 | |
| servers: | |
| - url: http://{host}:{port} | |
| description: Ollama API server | |
| variables: | |
| host: |
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
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "os/user" | |
| "path/filepath" | |
| "strings" |