Mike Chambers

Results 59 comments of Mike Chambers

Maybe follow String.IsNullOrEmpty and String.IsNullOrWhiteSpace ??

Looks like this existed at some point but seems Enabled removed now as no property on EditorDataItem? {nuPickers/Shared/Editor/EditorDataItem.cs} also removed in the EnumDataSource {/nuPickers/Shared/EnumDataSource/EnumDataSource.cs} ``` case "Enabled": //enabled = (bool)customAttributeNamedArguement.TypedValue.Value;...

Just a 20min google to try to understand how the scoring worked.. http://www.lucenetutorial.com/advanced-topics/scoring.html Seems to suggest we can override the idf, though I'd have little idea how to do it....

``` /** * animate to top * @param {*} context * @param {Array.} statuses */ var animateToTop = function(context, statuses){ var offset ,shouldAnimate = false; if(statuses){ for(var i=0; i 1)...

Having hit the issue myself and trying to create a failing test, NativeQuery doesn't leave your string input alone as you might think. If you take a look at the...

@dealloc I'm also seeing native phrase query gives results as opposed to an escaped term? (examine 3.1) ``` if (_examineManager.TryGetIndex(Constants.UmbracoIndexes.ExternalIndexName, out var index)) { var searcher = index.Searcher; //var query...

I did notice there are tests for this.. that pass... ![image](https://github.com/Shazwazza/Examine/assets/12418214/dbf2345a-b7d1-4af8-a305-33bd747f745c) https://github.com/Shazwazza/Examine/runs/13242245210#r0s6 ![image](https://github.com/Shazwazza/Examine/assets/12418214/d3c5a4de-7e82-4bb6-b459-2d5536bf2881) https://github.com/Shazwazza/Examine/blob/dev/src/Examine.Test/Examine.Lucene/Search/FluentApiTests.cs#L923-L934C61 ``` //now escape it var exactcriteria = searcher.CreateQuery("content"); var exactfilter = exactcriteria.Field("__Path", "-1,123,456,789".Escape()); var results2 =...

Actually seems that `new FieldDefinitionCollection(new FieldDefinition("__Path", "raw")` has some involvment here? trying to develop a failing test it seems that native query also manipulates.. eg `var nativeFilter = nativeCriteria.NativeQuery("folderDevelopmentCode:\"E500117\"");` results...

PS I'm trying to get this running on a DSM 6.2.4-25556 Update 6 , Synology DS212j with the ARM (Marvell Kirkwood 88F6281) so am limited to JAVA SE Embedded. So...

Doh.. https://github.com/bwssytems/ha-bridge/releases/tag/v5.4.1 both these are J11... - ha-bridge-5.4.1-java11.jar - ha-bridge-v5.4.1.jar **ha-bridge-5.4.1.jar** is the java 8 version! I'd incorrectly assumed from the datestamp that the v5.4.1.jar was the one to plump...