1,171 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Advice
0
votes
0
replies
27
views
Fluent UDF to set the particle z position to its initial z position
I need to fix the particle position in the z direction to its initial value. The following is the UDF I tried:
#include "udf.h"
#include "dpm.h"
DEFINE_DPM_SCALAR_UPDATE(...
1
vote
1
answer
402
views
In Blazor Fluent Grid, how to add alternate background style to odd rows?
I'm trying add alternate background style to odd rows in Blazor Fluent Grid
it seams that it is not possible out of the box, so I tried with some CSS like
.fluent-data-grid tbody tr:nth-child(odd) {
...
0
votes
1
answer
276
views
Enriching fluent-bit logs with opentelemetry resource attributes while sending logs to loki
Context:
I am collecting Kubernetes logs from the cluster using fluent-bit v3.2.
And I am sending the logs to Loki.
I want to migrate to be compatible with OpenTelemetry.
I know Fluent-bit supports ...
0
votes
1
answer
85
views
How to use FluentAutocomplete when TOption is class object
I have two class models :
Country.cs
public class Country
{
public long Id { get; set; }
public string Code { get; set; }
public string Name { get; set; }
}
Airport.cs
public class ...
0
votes
0
answers
26
views
Issue with Fluentbit Image supporting linux ppc64le arch with kafka plugin
We are having linux ppc64le arch servers. As Fluentbit doesn't support ppc64le arch as per documentation, we are trying to build a multiarch support custom fluent-bit image with kafka plugin. Facing ...
0
votes
1
answer
63
views
Change MouseOver Background RibbonMenu C# WPF
I'm trying to use RibbonMenu but I'm having a lot of trouble changing the mouseOver background.
For the moment I've done something like this:
<Fluent:Ribbon
Grid.Row="0"
IsToolBarVisible=&...
2
votes
1
answer
81
views
Swift Fluent MySQL Migration to create LONGTEXT column
I am using Vapor and Fluent to build services that use a MySQL database. However, I can't figure out how to make migrations create a field with .string type that produces a column that is not VARCHAR.
...
Jerry's user avatar
- 3,618
0
votes
0
answers
61
views
How can I insert blank lines at the beginning of Freemarker template (.ftl) files?
I'm using FreeMarker templates (.ftl) to generate configuration files. I have a line like this:
error-no-telegram-id = \n\n❌ Error: Could not retrieve your Telegram ID.
However, the \n\n is ...
1
vote
2
answers
85
views
How to call a Java method that accepts an integer or null with a Scala Option[Int]?
Java coder trying to use Scala here...
I have a generated Java builder that has a method
public com.yada.SomeEntity.Builder setSomeValue(java.lang.Integer value) {
...
}
From Scala, I ...
0
votes
1
answer
71
views
Unable to configure navigation exception when setting up fluent API notation one-to-many with EF Core code-first
Given these entities:
public class MyParent
{
public required Guid Id { get; set; };
public required MyChild Child { get; set; };
}
public class MyChild
{
public required Guid Id {...
0
votes
1
answer
24
views
Entity Framework Fluid Query Start and End Dates When Start is Nullable
I have a model with following properties (Start is nullable while End is required):
public DateTime? Start { get; set; }
public DateTime End { get; set; }
I query the active events as follows:
var ...
1
vote
1
answer
74
views
TS decorator typing: How to backpropagate decorated property type through fluent API in TypeScript?
I am trying to build a decorator library that uses a fluent API. Some of these API members should take a closure that should be typed according to the decorated member or its containing class.
I have ...
1
vote
1
answer
192
views
Swift Vapor Fluent: How do I query two joins
I am using Vapor 4 and I have the following MySQL Database structure: A City has reference to a POI and a POI has a reference to a Translation.
How should I use the join statement. So that I get the ...
0
votes
1
answer
193
views
Fluent-bit is truncating java applications logs needing a script to figure out the offending log
I have read this stackoverflow post.
I have the same issue as the OP, as the some logs in my ECS container service are discarded due to its size over 256 kb. I wondering if someone can help ...
-2
votes
1
answer
76
views
Can a Lombok builder be used fluently?
I want to populate an object based on the field names which I will pass in at runtime. I created an object with a Lombok builder and a setField static method to populate the object with the runtime ...