79524388

Date: 2025-03-21 01:23:23
Score: 2.5
Natty:
Report link

You shouldn't have any issues moving from 4.x to 5.x. Type CodeEffects in NuGet search and reference proper 5.x assemblies in your project. Test it. Report any issues to https://codeeffects.com/Support/

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Alex

79524384

Date: 2025-03-21 01:20:22
Score: 2
Natty:
Report link

ActiveXObject is very Microsoft-specific and only available in older, pre-Edge browsers. If it is, it's disabled by default due to security concerns. Imagine you load a website and it executes some command on the command line (e.g., delete all files).

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: oli

79524380

Date: 2025-03-21 01:13:21
Score: 1.5
Natty:
Report link

I finally fixed mine! The problem was that after uninstalling npm, you should run this command.

npm cache clean --force

And then after that, you should reinstall the npm via

npm install

This worked combined with all the suggestions above for the variable path.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30006954

79524379

Date: 2025-03-21 01:13:21
Score: 2.5
Natty:
Report link

In the Integration Dataset for "DelimitedText" file you could configure de following Encoding property:

Encoding: ISO-8859-1

This will solve the issue

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: josuejjv

79524372

Date: 2025-03-21 01:02:19
Score: 2
Natty:
Report link

You can't convert a type to an int.

Int is a type in python. Please refer to this article:

https://www.w3schools.com/python/python_datatypes.asp

Types are different variations of data, like String, Integer, Dictionary, etc.

If you try to mutate a type into an int you are going to encounter errors since it's like turning the enveloping feature into a subset.

Please be more clear on what the actual scenario is and we can help you. Giving us just the error without context won't help.

Reasons:
  • Blacklisted phrase (1): this article
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Lashen

79524370

Date: 2025-03-21 01:01:19
Score: 1
Natty:
Report link

in PHP

$arabic_regex = '/[\x{0600}-\x{06FF}|\x{0750}-\x{077f}|\x{fb50}-\x{fbc1}|\x{fbd3}-\x{fd3f}|\x{fd50}-\x{fd8f}|\x{fd92}-\x{fdc7}|\x{fe70}-\x{fefc}|\x{FDF0}-\x{FDFD}]/u';
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: whatistruth

79524364

Date: 2025-03-21 00:49:17
Score: 1.5
Natty:
Report link

MaterialStateProperty.all<Color>(Colors.green) is deprecated and shouldn't be used anymore.

In new versions, prefer to use WidgetStateProperty.all<Color>(Colors.green)

Before:

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Pacheco

79524352

Date: 2025-03-21 00:38:15
Score: 2
Natty:
Report link

The guide shows us the following image

enter image description here

You can consult the network of private railway guides for more information. railway guide private network

SOLUTIONS
1. - Once you've finished creating your app, go to Settings, find Deploy, and type the commands you want to run into one of the two options, as shown in the image below.

Configuration

2.- You could use the DATABASE_PUBLIC_URL credentials, where you have the data to connect outside the internal network.

enter image description here

Reasons:
  • Probably link only (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Mauricio Cartagena

79524331

Date: 2025-03-21 00:21:12
Score: 0.5
Natty:
Report link

There are two ways to solve this problem

Consider the regex below

(?:^\s*DEBUG\s+)*(.+)

with test data

DEBUG How are you1?

DEBUG How are you2?

How are you3?

_DEBUG How are you4?

I want to filter out the string DEBUG from the beginning if present. We created two groups.

The c# code to get those value is below

string pattern = @"(?:^\s*DEBUG\s+)*(.+)";
Regex regex = new Regex(pattern);
var testInput=@"DEBUG How are you1?
DEBUG How are you2?
How are you3?
_DEBUG How are you4?";
var result = Regex.Matches(testInput,pattern,RegexOptions.Multiline);
result.Cast<Match>()
      .Select(m => m.Groups[1].Value)
      .ToList()
      .Dump();

Output:

enter image description here

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Hemendr

79524314

Date: 2025-03-21 00:03:08
Score: 4.5
Natty:
Report link

I was struggling with this issue and tried many solutions. After exhausting efforts, I finally found a working solution.

You can find the solution in my answer to the question on Stack Overflow at this link:

Laravel 419 Page Expired on Hosting but Works Locally

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mustafa Alqershi

79524313

Date: 2025-03-21 00:03:08
Score: 2.5
Natty:
Report link

you can look at the datapoints below system.adapter.

this datapoints are only visible in the expert mode.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: oli

79524301

Date: 2025-03-20 23:49:05
Score: 1.5
Natty:
Report link

ok, I think I just figured out what the issue was. I'm opening "example.txt" twice in main(). When I removed the second line, the results started being written to the file.

Removing

outputFile.open("example.txt");

led to the results being written to the file.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: almondJoy

79524294

Date: 2025-03-20 23:44:04
Score: 3
Natty:
Report link

The issue was fixed after I restarted my PC 🤔

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Tahseen Rasheed

79524269

Date: 2025-03-20 23:25:02
Score: 3
Natty:
Report link

libjpeg-turbo supports multiple precisions in the one build

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Daniel Kinsman

79524268

Date: 2025-03-20 23:25:02
Score: 1
Natty:
Report link

Slightly different than what you asked for, but have you tried to combine all dfs and doing a faceted plot?

library(ggplot2)
library(patchwork)

# Create different datasets for each plot
df1 <- expand.grid(x = seq(300, 800, length.out = 50), y = seq(300, 600, length.out = 50))
df1$z <- with(df1, dnorm(x, mean = 500, sd = 50) * dnorm(y, mean = 400, sd = 50))

df2 <- expand.grid(x = seq(300, 800, length.out = 50), y = seq(300, 600, length.out = 50))
df2$z <- with(df2, dnorm(x, mean = 600, sd = 50) * dnorm(y, mean = 450, sd = 50))

df3 <- expand.grid(x = seq(300, 800, length.out = 50), y = seq(300, 600, length.out = 50))
df3$z <- with(df3, dnorm(x, mean = 550, sd = 50) * dnorm(y, mean = 500, sd = 50))

df4 <- expand.grid(x = seq(300, 800, length.out = 50), y = seq(300, 600, length.out = 50))
df4$z <- with(df4, dnorm(x, mean = 650, sd = 50) * dnorm(y, mean = 350, sd = 50))

# Compute global min and max for z-values across all datasets
min_z <- min(c(df1$z, df2$z, df3$z, df4$z), na.rm = TRUE)
max_z <- max(c(df1$z, df2$z, df3$z, df4$z), na.rm = TRUE)

df.grouped <- dplyr::bind_rows(list(df1=df1, df2=df2, df3=df3, df4=df4), .id = 'source')

head(df.grouped)

ggplot(df.grouped, aes(x, y, fill = z)) +
  geom_raster() +
  scale_fill_viridis_c(limits = c(min_z, max_z)) + 
  labs(y = "Excitation Wavelength / nm",
       x = "Emission Wavelength / nm") +
  facet_wrap(~source, scales = "free")+
  theme_classic()+
  theme(strip.text = element_blank())

enter image description here

Reasons:
  • Whitelisted phrase (-1): have you tried
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Cecilia López

79524261

Date: 2025-03-20 23:21:01
Score: 1.5
Natty:
Report link

I think the answer is actually in your initial posting.
"there is not even a folder like 'temp' anywhere in 'azerothcore' ..."

In worldserver.conf, there is a line whos default is "".
TempDir = ""
I suspect you actually had it set.

I did. I was doing a full reinstall and got this error. I found that line in worldserver.conf, added the directory, and off it went.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: YZCarver

79524257

Date: 2025-03-20 23:14:00
Score: 0.5
Natty:
Report link

Yes, you should awlays wrap a DB::transaction in try..catch if you want to catch the exception.

DB::transaction will only handle database rollback, but it will not do any exception handling.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mike

79524253

Date: 2025-03-20 23:13:00
Score: 3.5
Natty:
Report link

I've set scrollEnabled={false}, which helped me with the same situation.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Sanin

79524245

Date: 2025-03-20 23:06:58
Score: 1.5
Natty:
Report link

Git-flow is an alternative Git branching model. Git-flow has numerous, longer-lived branches and larger commits. Under this model, developers create a feature branch and delay merging it to the main trunk branch until the feature is complete.

You can learn more from the Microsoft Fabric Git integration documentation.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mxasd

79524242

Date: 2025-03-20 23:05:58
Score: 0.5
Natty:
Report link

Expo-cli has been deprecated for a long time by now, and to receive the new Expo CLI, just simply run npm install expo, yarn add expo (if using Yarn), and Expo CLI is preinstalled in there. You can refer to this for more info Expo Docs on Expo CLI. I also recommend updating node.js to a version like 21.5 or newer, as it can really increase performance. I hope you will enjoy the new Expo Cli. Also, if you have already installed the new Expo Cli, do NOT use any commands starting with expo, as the is referring to the legacy cli and will pop up that error. Later, it would redirect to npx expo start, but the error is still there. To get rid of the error, start your expo commands like npx expo {command}, and the error should be gone.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: knnorou2

79524236

Date: 2025-03-20 23:02:58
Score: 3
Natty:
Report link

Currently, Azure Tables only accept a limited set of field types, and nested JSON or array are not one of them. As Dasari Kamali posted, you can convert your nested JSON or arrays to a string and store them in a field.
Source: https://learn.microsoft.com/en-us/rest/api/storageservices/understanding-the-table-service-data-model#property-types

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: sleeping-girl

79524234

Date: 2025-03-20 23:00:57
Score: 4
Natty: 4
Report link

Do you mind if i request help from you on this same issue.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sharon

79524221

Date: 2025-03-20 22:49:54
Score: 0.5
Natty:
Report link

The issue comes down to how MongoDB stores and indexes dates. Your ts field is stored as an ISODate (a proper BSON date), but your Java query is treating it as a numeric value (epoch milliseconds). This means the index on ts (which expects a Date type) is ignored, forcing MongoDB to do a COLLSCAN instead of an IXSCAN.

Why is this happening?

  1. Your Java query converts timestamps to toEpochMilli(), which results in a Long value (e.g., 1733852133000).

  2. MongoDB’s index on ts is built on BSON Date objects, not raw numbers.

  3. When you query with a Long instead of a Date, MongoDB sees a type mismatch and ignores the index, defaulting to a full collection scan.

The Fix: Use Date Instead of Long

You need to ensure that your Java query uses Date objects instead of epoch milliseconds. Here’s the correct way to do it:

java

Copy code

ZonedDateTimelowerBound = ...; ZonedDateTime upperBound = ...; Date lowerDate = Date.from(lowerBound.toInstant()); Date upperDate = Date.from(upperBound.toInstant()); var query = Query.query(new Criteria().andOperator( Criteria.where("ts").gte(lowerDate), Criteria.where("ts").lt(upperDate) )); var result = mongoTemplate.find(query, Events.class);

Why Does This Work?

TL;DR

Convert ZonedDateTime to Date before querying. Using raw epoch milliseconds (long) prevents the index from being used, leading to slow queries.

Reasons:
  • RegEx Blacklisted phrase (0.5): Why is this
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Perez Christopher

79524216

Date: 2025-03-20 22:48:54
Score: 2
Natty:
Report link

well, I don't know how express.js works, but from what I'm seeing there are two things:

— first: you should add a middleware to return a session with a cookie.

— second: I don't see any cookies being sent or saved in the api/login.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ayman belqadi

79524199

Date: 2025-03-20 22:35:52
Score: 2
Natty:
Report link

You can also try ImportJSON() in google sheet to capture data in just one section. It does allow you to add URL and filters. this is one of the simplest method with 0 effort, I feel

example:
IMPORTJSON("https://restcountries.eu/rest/v2/", "/name", A1:D2)

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Karishma patidar

79524198

Date: 2025-03-20 22:34:51
Score: 2
Natty:
Report link

I am trying to do the drive ownership transfer using API from the suspended user account to the manager email using a workflow automation tool called n8n and I am getting the error code 403 no matter.

test Use case:

  1. Tried to achieve using service account & Oauth as well but none worked

Allowed the following scopes:

  1. https://www.googleapis.com/auth/drive

  2. https://www.googleapis.com/auth/admin.directory.user

JSON Body:

{
    "newOwnerUserId": "{{ $json.id }}",
    "oldOwnerUserId": "{{ $json.id }}",
    "applicationDataTransfers": [
        {
            "applicationTransferParams": [
                {
                    "key": "PRIVACY_LEVEL",
                    "value": ["SHARED", "PRIVATE"]
                }
            ],
            "applicationId": ["553547912911"]
        }
    ]
}

Error:

{

 "errorMessage": "Forbidden - perhaps check your credentials?",

 "errorDescription": "Request had insufficient authentication scopes.",

 "errorDetails": {

  "rawErrorMessage": [

   "403 - \"{\\n \\\"error\\\": {\\n  \\\"code\\\": 403,\\n  \\\"message\\\": \\\"Request had insufficient authentication scopes.\\\",\\n  \\\"errors\\\": [\\n   {\\n    \\\"message\\\": \\\"Insufficient Permission\\\",\\n    \\\"domain\\\": \\\"global\\\",\\n    \\\"reason\\\": \\\"insufficientPermissions\\\"\\n   }\\n  ],\\n  \\\"status\\\": \\\"PERMISSION_DENIED\\\",\\n  \\\"details\\\": [\\n   {\\n    \\\"@type\\\": \\\"type.googleapis.com/google.rpc.ErrorInfo\\\",\\n    \\\"reason\\\": \\\"ACCESS_TOKEN_SCOPE_INSUFFICIENT\\\",\\n    \\\"domain\\\": \\\"googleapis.com\\\",\\n    \\\"metadata\\\": {\\n     \\\"service\\\": \\\"admin.googleapis.com\\\",\\n     \\\"method\\\": \\\"ccc.hosted.frontend.datatransfer.v1.DatatransferTransfers.Insert\\\"\\n    }\\n   }\\n  ]\\n }\\n}\\n\""

  ],

  "httpCode": "403"

 },

 "n8nDetails": {

  "nodeName": "HTTP Request3",

  "nodeType": "n8n-nodes-base.httpRequest",

  "nodeVersion": 4.2,

  "itemIndex": 0,

  "time": "2/28/2025, 11:32:54 AM",

  "n8nVersion": "1.66.0 (Self Hosted)",

  "binaryDataMode": "default",

  "stackTrace": [

   "NodeApiError: Forbidden - perhaps check your credentials?",

   "  at Object.requestWithAuthentication (/usr/lib/node_modules/n8n/node_modules/n8n-core/src/NodeExecuteFunctions.ts:2000:10)",

   "  at processTicksAndRejections (node:internal/process/task_queues:95:5)",

   "  at Object.requestWithAuthentication (/usr/lib/node_modules/n8n/node_modules/n8n-core/src/NodeExecuteFunctions.ts:3302:11)"

  ]

 }

}

Images attached to the case show the error message and Client ID, Service Account used also and Drive API scopes currently used.

Look forward to your assistance with the correct scope for Drive.
Reasons:
  • Blacklisted phrase (1): I am trying to
  • RegEx Blacklisted phrase (1): I am getting the error
  • Long answer (-1):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user30006064

79524185

Date: 2025-03-20 22:27:49
Score: 0.5
Natty:
Report link

I understand you are trying to test E2E.

If you are using bean of the client directly, It needs to be separate server and client. Then you need to bind actual port.

In this case, the following guide would be best as i know.

https://gist.github.com/silkentrance/b5adb52d943555671a44e88356c889f8

Or you can just fix boot port but parallel test case execution is prohibited.

If you do not need to use the client interface directly, You can just MVC or REST client test for your server instead of feign client. or controller execution directly. You are losing good point of feign but do not need to consider the boot process for port binding during test.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Greg Yeo

79524182

Date: 2025-03-20 22:24:49
Score: 1
Natty:
Report link

So I figured out what I was doing wrong.

I was using .GetType() when I needed to be using .GetClass()

I spent an hour searching and minutes after posting this I found a thread with the answer.

https://discussions.unity.com/t/add-script-component-to-game-object-from-c/590211 Heres the link I suppose

Reasons:
  • Blacklisted phrase (0.5): I need
  • Whitelisted phrase (-2): I figured out
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Juan Alarcon

79524171

Date: 2025-03-20 22:11:47
Score: 1.5
Natty:
Report link

Thank you for explaining how to build the required hash table.
I been missing that point.

Hope this will help someone.
It is likely that the Get-Configuration an the code you are suggesting originate from the Dev Blog :
https://devblogs.microsoft.com/scripting/use-powershell-to-work-with-any-ini-file/

Where everything is explained in great detail.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): Hope this will help
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: user12339018

79524166

Date: 2025-03-20 22:07:45
Score: 0.5
Natty:
Report link

I definitely borrowed inspiration from @torek's answer. But here, I put it into action:

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @torek's
  • Low reputation (0.5):
Posted by: tash

79524165

Date: 2025-03-20 22:06:45
Score: 2
Natty:
Report link

The response you're seeing is not an empty JSON object but rather a Response object from the Fetch API or a similar HTTP request. This object contains metadata about the request, such as the URL, status code, headers, etc., but it does not directly contain the response body as a JSON object unless you explicitly parse it.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: ayman belqadi

79524156

Date: 2025-03-20 21:59:44
Score: 1.5
Natty:
Report link

This is not a bug. It is just bad labeling.

"Speakerphone" is the MICROPHONE at the bottom of the handset and "Headset earpiece" is the MICROPHONE at the top (near where your ear goes). These only exist on phones that can record in stereo natively but the bugs are:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Ryan

79524151

Date: 2025-03-20 21:57:43
Score: 2
Natty:
Report link

Didn't come to stack overflow until just now. I refactored some code out of another project that was getting unwieldy.

Consider this problem space being well on its way to being solved.

https://dev.to/dmidlo/the-problem-powershells-hashing-illusion-74p

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): Did
  • Low reputation (0.5):
Posted by: David Midlo

79524150

Date: 2025-03-20 21:54:43
Score: 1.5
Natty:
Report link

From the context you provided, it looks like you might be using unary pulling for your subscribers.  In general, we recommend using the high-level client library instead.

With unary pull, Cloud Pub/Sub may return fewer messages than the maxMessages value you specify in your requests. You can verify if your requests are pulling the maximum number of messages by comparing the Sent message count and the Pull request count metrics. You should also make sure that you are not setting returnImmediately to True.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Yordan Pramatarov

79524138

Date: 2025-03-20 21:45:40
Score: 5.5
Natty: 6.5
Report link

How to write degree celcius symbol as superscript in .net maui.

Suppose we are using <Span> or <Label> to display text. We have to show a value and the degree celcius symbol (as superscript) how can we achieve it?

Reasons:
  • Blacklisted phrase (1): how can we
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How to
  • Low reputation (1):
Posted by: S M De Savic

79524126

Date: 2025-03-20 21:37:39
Score: 3
Natty:
Report link

protobuf generates a "clear" method. For example: clearXyz()

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Bob

79524118

Date: 2025-03-20 21:32:37
Score: 2.5
Natty:
Report link

At least with chromium browsers as of March 2025, I've personally seen messages get processed in a completely different order than which they were sent. So between my own experience and the answer posted here it seems that you can't rely on messages being processed in the order they're sent.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Livak

79524110

Date: 2025-03-20 21:27:36
Score: 5
Natty:
Report link

does python hello world example provided by Cloud Code works in debug mode at all ? Not regular run .. run in debug mode .?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sri Pasumarthi

79524097

Date: 2025-03-20 21:19:34
Score: 1
Natty:
Report link

the UI is constantly changing

now its move under SECURITY tab

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • High reputation (-2):
Posted by: watashiSHUN

79524087

Date: 2025-03-20 21:16:33
Score: 3
Natty:
Report link

I finally found. Istock the tabs in a state management store and I stored in the tabs items the component, but ngrx really don't like complex objects

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: DarkCid

79524068

Date: 2025-03-20 21:04:31
Score: 0.5
Natty:
Report link

CockroachDB handles high concurrency through optimistic concurrency control (OCC) and multi-version concurrency control (MVCC), which allows multiple transactions to proceed without locking resources prematurely. Conflicts are detected during transaction commits based on timestamp ordering, and CockroachDB automatically retries conflicting transactions to maintain serializable isolation. These built-in mechanisms help mitigate contention, but heavy concurrent writes to the same data can still cause conflicts and performance degradation.

To further reduce transaction contention and improve throughput, you can optimize your schema and indexing strategies. Using UUIDs rather than sequential IDs as primary keys prevents data hotspots and evenly distributes writes. Additionally, keeping transactions short, batching operations, and explicitly handling transaction retries in the application layer can greatly enhance performance. Strategic partitioning, hash-sharded indexes, and adjusting key CockroachDB configuration parameters can also help spread workload evenly across your cluster, minimizing contention.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Bergin

79524054

Date: 2025-03-20 20:55:29
Score: 2.5
Natty:
Report link

After trying the recommendation from Michael, to change bdb_reserved_sectors: db 1 to bdb_reserved_sectors: dw 1, the issue was resolved! Thank you for fixing my oversight, hopefully this won't happen again.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Joshua Alexander

79524043

Date: 2025-03-20 20:49:27
Score: 1
Natty:
Report link

Python Docstring Generator can't do that, but you can use alternatives like TabNine, GitHub Copilot, and BlackBox AI. These are AI-powered extensions that provide autocompletion, helping you with both coding and writing docstrings better and faster.

Reasons:
  • Whitelisted phrase (-1.5): you can use
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Matin Abedini

79524041

Date: 2025-03-20 20:49:27
Score: 0.5
Natty:
Report link

when using Admin-LTE 3.0 with AngularJS, for unknown reason catching the event expanded.lte.cardwidget failed. As an alternative, I have to add ng-click to the button

<button type="button" class="btn btn-tool" 
        data-card-widget="collapse" 
        ng-click="bbtest($event)"><i class="fas fa-minus"></i>
</button>

and bbtest function is listed below:


    bbtest(eve) {
        let box = $(eve.target).first();
        if (!box.hasClass('fa-minus')) {//expanding
                setTimeout(() => {//expansion has animation
                    console.log(`doing sth`);
                }, 500);
            }
    }

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): when
  • Low reputation (1):
Posted by: Zhenjun Hu

79524035

Date: 2025-03-20 20:45:27
Score: 2.5
Natty:
Report link

Try making a new django app, for your custom admin, and use any template which you want to use.

You can find some videos about it and you can find it in django documentation.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Matin Abedini

79524032

Date: 2025-03-20 20:42:26
Score: 0.5
Natty:
Report link

I ran into a similar issue with Clerk in development locally. I have it set up for multiple projects, but when I switch between projects the servers are set up to run on the same port. This causes an issue because of the cookies that are stored by Clerk. Try deleting your cookies for localhost and re-running the app.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Preston

79524024

Date: 2025-03-20 20:36:25
Score: 4
Natty: 5
Report link

I have tried to use "_x0020_" and it does not work for me. I am spanish and I am using excel and sharepoin in spanish

Reasons:
  • Blacklisted phrase (1): it does not work for me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user29619

79524023

Date: 2025-03-20 20:35:24
Score: 1
Natty:
Report link

Try replacing the whole document view with a custom view controller that you write. You can add what ever you want in the new view.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: john elemans

79524021

Date: 2025-03-20 20:34:24
Score: 1.5
Natty:
Report link

I tried the approach shown and was unable to make this work. I'm in an azure function, so the test function is invoked through an API call, but the rest is the same. The log data.

[2025-03-20T20:24:45.472Z] Acquiring access token with ClientSecretCredential...

[2025-03-20T20:24:46.077Z] Access token acquired successfully.

[2025-03-20T20:24:46.168Z] Opening connection to XMLA endpoint...

[2025-03-20T20:24:46.371Z] Error: When interactive authentication is not supported, an external access-token is required; either provide it in the connection-string or by setting the AccessToken property.

The call to connection.SessionID = accessToken; throws the error. I've tried for a day to find a way around this, but all the documentation and CoPilot keep running me in circles. Any idea how to fix this? I haven't found a combination of access methods with my service principal that allows me to establish a connection to the endpoint. I can connect via SSMS. Here is my entire function:

    class TestXMLA
    {
        private readonly ILogger<TestXMLA> _logger;

        public TestXMLA(ILogger<TestXMLA> logger)
        {
            _logger = logger;
        }

        // Inside the TestXMLA class
        [Function("TestXMLA")]

        public async Task<HttpResponseData> Run([HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req)
        {
            string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
            dynamic data = JsonConvert.DeserializeObject(requestBody);

            // Extract service principal details from the request body
            string tenantId = data?.tenantId;
            string workspaceId = data?.workspaceId;
            string datasetName = data?.datasetName;
            string clientId = data?.clientId;
            string clientSecret = data?.clientSecret;
            string scope = "https://analysis.windows.net/powerbi/api/.default";
            string XMLAEndpoint = $"powerbi://api.powerbi.com/v1.0/myorg/{workspaceId}";

            if (string.IsNullOrEmpty(tenantId) || string.IsNullOrEmpty(workspaceId) || string.IsNullOrEmpty(datasetName))
            {
                var response = req.CreateResponse(HttpStatusCode.BadRequest);
                await response.WriteStringAsync("Missing tenant ID, workspace ID, or dataset name.");
                return response;
            }

            try
            {
                // Step 1: Acquire access token using ClientSecretCredential (Service Principal)
                _logger.LogInformation("Acquiring access token with ClientSecretCredential...");

                var credential = new ClientSecretCredential(tenantId, clientId, clientSecret);
                var tokenRequestContext = new TokenRequestContext(new[] { scope });
                var accessToken = (await credential.GetTokenAsync(tokenRequestContext)).Token;

                _logger.LogInformation("Access token acquired successfully.");

                // Step 2: Create connection string (without token in connection string)
                string connectionString = $"Data Source={XMLAEndpoint};";

                // Step 3: Open ADOMD connection
                using (AdomdConnection connection = new AdomdConnection(connectionString))
                {
                    // Apply the access token manually using SessionID
                    connection.SessionID = accessToken;

                    Console.WriteLine("Opening connection to XMLA endpoint...");
                    connection.Open();

                    // Step 4: Execute DAX Query
                    string query = "EVALUATE TOPN(500, Invoices)";

                    using (AdomdCommand command = new AdomdCommand(query, connection))
                    {
                        _logger.LogInformation("Executing query...");
                        using (AdomdDataReader reader = command.ExecuteReader())
                        {
                            while (reader.Read())
                            {
                                _logger.LogInformation(reader[0].ToString());  // Print first column (adjust as needed)
                            }
                        }
                    }

                    connection.Close();
                    _logger.LogInformation  ("Connection closed successfully.");
                    var response = req.CreateResponse(HttpStatusCode.OK);
                    return response;
                }
            }
            catch (Exception ex)
            {
                _logger.LogError($"Error: {ex.Message}");
                var response = req.CreateResponse(HttpStatusCode.InternalServerError);
                await response.WriteStringAsync($"Error: {ex.Message}");
                return response;
            }
        }
    }
Reasons:
  • RegEx Blacklisted phrase (1.5): how to fix this?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: jdc2019

79524007

Date: 2025-03-20 20:23:21
Score: 1.5
Natty:
Report link

This is definitely still happening, I had success when I eliminated the datetime x when plotting the bars... then relabeled the xticks using a datetime sequence afterwards:

x_labels = np.arange(np.datetime64('start'), np.datetime64('end'), np.timedelta64(1,'M')

x = range(0,len(x_labels))

ax.bar(x, df.distance, width = 0.95)

ax.set_xticks(ticks=x, labels=x_labels, rotation=90)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kris

79524000

Date: 2025-03-20 20:19:20
Score: 2.5
Natty:
Report link

In the IO_init function, when I thought I was assigning to the field of the IO object pointer, I was actually "assigning" to the alloca pointer to that pointer. Later when I tried to read from the IO object field the data wasn't there.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: tarski

79523999

Date: 2025-03-20 20:19:20
Score: 1.5
Natty:
Report link

You need to take a development build using EAS. Run the following command to create a development build and try running your project again:

eas build --profile development --platform android

or

eas build --profile development --platform ios

After the build is complete, install the generated build on your device or emulator and run:

npx expo start --dev-client

This will ensure all dependencies are properly linked and avoid module resolution issues.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Batuhan Özkaner

79523996

Date: 2025-03-20 20:17:20
Score: 1.5
Natty:
Report link

:root : is a global pseudo class, it has the highest specificity and use cases, you store vars you'd like to reuse.

:html : has less specificity compare to root, it's also use for settiing default stylings etc, the most uimportant use cases i think it is useful for is font size to allow the usage of rem and em

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: hassan2bit

79523994

Date: 2025-03-20 20:17:20
Score: 1.5
Natty:
Report link

Adding another method to those mentioned: Assuming you have VS Code launched,

Ctrl + Shift + P, then searching > Developer: Open Webview Developer Tools takes you to a Chromium browser Developer Tools window, where you'll have access to the Console, Network, Storage, as well as other useful browser tools

VS Code Command Pallet, Developer Open Webview Developer Tools

Developer Tool Toolbar snippet

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 9 Guy

79523991

Date: 2025-03-20 20:15:19
Score: 4
Natty: 4.5
Report link

here is how urls supposed to look

https://steamcommunity.com/inventory/76561199445265994/730/2?l=english&count=75

so simply do count query

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: d4vit

79523987

Date: 2025-03-20 20:14:19
Score: 2
Natty:
Report link

Please refer to the Google Provider Configuration Reference documentation, it mentions many ways to authenticate including OAuth.

[1] https://registry.terraform.io/providers/hashicorp/google/latest/docs/guides/provider_reference

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Reynaldo Aceves

79523981

Date: 2025-03-20 20:11:18
Score: 0.5
Natty:
Report link

Unfortunately Project does not expose formatting characteristics like Excel. There are two basic approaches. One is to identify the criteria that was used to set the font or cell background color. This approach can be used with a task object but will be of no use if Project formatting was done subjectively (i.e. no particular criteria other than "it looks nice").

The second approach is to access the CellColor of the Cell object. This requires using foreground processing (i.e. working on the active display) by selecting task rows, field columns or individual cells.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: john-project

79523979

Date: 2025-03-20 20:11:18
Score: 1
Natty:
Report link
<?xml version="1.0" encoding="utf-8"?>

I has removed this -- and it's worked for me

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sergey Panasovskiy

79523978

Date: 2025-03-20 20:10:18
Score: 2
Natty:
Report link

Okay according to [this answer](https://stackoverflow.com/a/75732843/1892584) to a question about fetching dependencies, you can add /json

Like so:

curl https://pypi.org/pypi/django/json
Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Low length (1):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Att Righ

79523972

Date: 2025-03-20 20:05:17
Score: 2.5
Natty:
Report link

I remove div around gridview and use MaintainScrollOnPostback property for the page.

Looks like that fix the scroll

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: user1663661

79523960

Date: 2025-03-20 19:57:16
Score: 0.5
Natty:
Report link

After doing some more research, I found that it would be smarter to use

 Get-AzRecoveryServicesBackupJob

By:

  1. Initializing a variable to equal a single vault:

    $var = Get-AzRecoveryServicesVault -ResourceGroupName "\<your resource group name\>" -Name "\<your vault name\>"
    
  2. And then calling Get-AzRecoveryServicesBackupJob with the corresponding Vault Id

    $list = Get-AzRecoveryServicesBackupJob -VaultID $var.ID
    
  3. To display, you'd just call the array

        $list 
    

    and it would show you all of the completed, failed, and in progress backups

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: mimi m

79523954

Date: 2025-03-20 19:54:15
Score: 2.5
Natty:
Report link

Thanks @Guillaume, but I think I found a better way that worked adding all the constraints. Here is what I did. Thanks for your effort though.

UPDATE ol
SET ol.RateTierIds = rpt_new.Id
FROM OrderLines ol
JOIN RatePlanTiers rpt_old ON ol.RateTierIds = rpt_old.Id
JOIN RatePlans rp_old ON rpt_old.RatePlanIDNumber = rp_old.Id AND rp_old.Name = 'Old Rate Plan'
JOIN RatePlans rp_new ON rp_new.Name = 'New Rate Plan'
JOIN RatePlanTiers rpt_new
ON rpt_new.RatePlanIDNumber = rp_new.Id
AND rpt_new.Price = rpt_old.Price
AND rpt_new.MinQty = rpt_old.MinQty
AND rpt_new.BundleId = rpt_old.BundleId;
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Guillaume
  • Self-answer (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: ray805

79523950

Date: 2025-03-20 19:52:14
Score: 1
Natty:
Report link

TL;DR

Remember that Sops is used for highly sensitive data. If you want to use VS Code you should at least disable 3rd party plugins and CO-pilot. TL;DR:

SOPS_EDITOR="code --wait --new-window --disable-workspace-trust --disable-extensions --disable-telemetry" sops secrets/testing.yaml

Longer version

Noticing VS Code sending my secrets to remote servers with co-pilot

I noticed myself when I was testing Sops file in VS Code with:

EDITOR="code --wait" sops secrets/testing.yaml

I had Github co-pilot turned on and noticed that it sends my unencrypted secrets in plaintext to remote server to get auto completes.

When I typed:

password: "correct

Github co-pilot suggested:

password: "correct horse battery staple"

Blocking VS Code with flags

Only adding --disable-extensions would probably be enough but at least for me this did not work if I didn't add --new-window as well.

Then noticed that VS Code actually has plenty of flags which are not documented available in their source code.

So --disable-workspace-trust and --disable-telemetry seemed useful too.

SOPS_EDITOR="code --wait --new-window --disable-workspace-trust --disable-extensions --disable-telemetry" sops secrets/testing.yaml

It's a good idea to add the SOPS_EDITOR as env in your shell configs so that you don't need to type it everytime.

This is great because all of us probably have some 3rd party VS Code extension installed which is suspicious and all of the extensions are disabled for the unencrypted sops file.

Blocking co-pilot from the sops temporary files

I noticed that it's also possible to disable co pilot by modifying your user profile settings in VS Code:

{
    // We will use these custom file associations to disable co-pilot
    // See more in: https://stackoverflow.com/a/77908836/1337062
    "files.associations": {
        // If repo would contain secrets in .env file it's better to ignore it
        ".env*": "plaintext",
        // SOPS creates unencrypted temporary files here on MacOS
        "/var/folders/*/**": "plaintext",
    },
    // This setting can't be altered here and
    // needs to be copied directly into user settings
    "github.copilot.enable": {
        "*": true,
        "plaintext": false,
    },
}

Summary

I highly recommend adding the more strict SOPS_EDITOR env and the extra file associations which disable co-pilot for the plaintext temp files.

If you want to see how I added this into my git repo using elixir and nix with sops you can have a look at the linked commit.

Stay safe!

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Onni Hakala

79523949

Date: 2025-03-20 19:49:14
Score: 0.5
Natty:
Report link

docker run -d -p 8081:8081 -e ME_CONFIG_MONGODB_ADMINUSERNAME=admin -e ME_CONFIG_MONGODB_ADMINPASSWORD=password -e ME_CONFIG_BASICAUTH_USERNAME=myuser -e ME_CONFIG_BASICAUTH_PASSWORD=mypassword -e ME_CONFIG_MONGODB_SERVER=mongo --net mongo-network --name mongo-express mongo-express

yes above command works for me when I enter the basicauth username and password

Reasons:
  • Whitelisted phrase (-1): works for me
  • No code block (0.5):
  • Low reputation (1):
Posted by: Pravesh Singh

79523941

Date: 2025-03-20 19:43:12
Score: 0.5
Natty:
Report link

if requirement file not installing in deployment

or force install requirements.txt while deployment

set environment variable : SCM_DO_BUILD_DURING_DEPLOYMENT=true in web app portal.

Help Rebuild application while every re-deployment

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Abhijit Manepatil

79523934

Date: 2025-03-20 19:40:12
Score: 1
Natty:
Report link
import sklearn
import pandas as pd

from sklearn.model_selection import train_test_split

df = pd.read_csv('https://github.com/RyanNolanData/YouTubeData/blob/main/500hits.csv', encoding='latin-1')
df.head()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ernar Shamet

79523932

Date: 2025-03-20 19:40:12
Score: 3.5
Natty:
Report link

Mebibytes. GH is showing Mebibytes.

Google AI Assitant saying Git LFS uses mebibytes

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Dave Stein

79523921

Date: 2025-03-20 19:35:11
Score: 2
Natty:
Report link

With the new UI it was moved to the top bar (to the right of the project name).

Had rough time finding it myself...

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Tautvydas

79523918

Date: 2025-03-20 19:35:11
Score: 1.5
Natty:
Report link

AMPL is a programming language that lets you specify equation systems algebraically and seems close enough to your project to be well worth a look especially since The AMPL Book, coauthored by Robert Fourer, David M. Gay, and Brian W. Kernighan (yeah, that Brian Kernighan) is free to download and just about the best tech writing you will find anywhere. Wolfram alpha is a free web based algebraic equation solver site that could also give you good ideas. These are on the equation solving end of your question though Wolfram language is usually considered to be a functional programming language.

https://ampl.com/resources/books/ampl-book/

https://www.wolframalpha.com

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Nick Carraway

79523916

Date: 2025-03-20 19:34:10
Score: 0.5
Natty:
Report link

First, I compared my current package.json with the earlier git committed package.json, where the app was working but the below aws amplify ui library was still not installed.

@aws-amplify/ui-react-native": "^2.4.2",

Observed that the previous version was "aws-amplify": "^6.12.2" and not "^6.13.2" (as seen in latest package.json which seems to have updated after installing @aws-amplify/ui-react-native 2.4.2)

So browsed the below npm link for the aws amplify ui library and tried to install earlier versions.
https://www.npmjs.com/package/@aws-amplify/ui-react-native?activeTab=versions

When tried to install the library version which was a year old (2.1.0), it shows error "supported only till react 0.73", while my react version is "0.74". Thus started trying versions earlier than an year and which would no longer show the above error. Eventually, installed version 2.2.0 using below.

$ npm install @aws-amplify/[email protected]

On installing version 2.2.0, noticed that "aws-amplify": "^6.12.2" (as per earlier package.json where app was working)

Now restarted the node server and re-built the app.

The AWS Amplify UI component for Authentication was now loaded on the app screen, showing the login page for the app.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Cool1

79523914

Date: 2025-03-20 19:33:10
Score: 3
Natty:
Report link

I hope you've found a solution to your problem, but if not, I may have an idea for you.

In this article, the author uses ChatOllama instead of OllamaLLM: https://medium.com/@dimosdennis/personal-photo-library-with-langchain-ollama-llava-fully-local-e82edfe07f54

I had a problem similar to the one you describe here and changing it helped me get rid of it!

I must admit I haven't gone through all your code, but maybe following the Medium tutorial (for part of it) might help.

Good luck ;)

Reasons:
  • Blacklisted phrase (1): this article
  • Blacklisted phrase (0.5): medium.com
  • No code block (0.5):
  • Low reputation (1):
Posted by: Vitally Aberdeen

79523909

Date: 2025-03-20 19:30:09
Score: 1.5
Natty:
Report link
// Parameter settings for JPEG compression
List<Integer> parameters = new ArrayList<>();
parameters.add(IMWRITE_JPEG_QUALITY);
parameters.add(quality);

MatOfInt par = new MatOfInt();
par.fromList(parameters);

Imgcodecs.imwrite("c:/test/temp.jpg", image_entry,(par));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tom C

79523906

Date: 2025-03-20 19:29:09
Score: 2.5
Natty:
Report link

This kind of deployment is called on-premise deployment... as @Abdul Aziz Barkat said it is a very broad term that will force you to concern about multiple aspects like how to handle running the app and for that there are multiple options (docker containers, separated system services...). and also how to handle caching and handling up-time and server downs (checking services' health) and how to recover, load balancing, firewall etc...

Reasons:
  • No code block (0.5):
  • User mentioned (1): @Abdul
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: laith drebaty

79523904

Date: 2025-03-20 19:26:09
Score: 1
Natty:
Report link

Adding to Louys answer, the line with minutes should be for today (2025-03-20):

let minutes = Math.floor(video.currentTime / 60) - (hours * 60)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: pbies

79523901

Date: 2025-03-20 19:23:08
Score: 4
Natty:
Report link

No. As of 2025-03-20, zenity doesn't have this feature. See open Gitlab issue: https://gitlab.gnome.org/GNOME/zenity/-/issues/106

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: AvidSeeker

79523898

Date: 2025-03-20 19:21:07
Score: 5.5
Natty: 5.5
Report link

hey im having the some problem i don't know what to do like whats the code look like can someone do that?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: m00n Girl Squirrel girl magic

79523886

Date: 2025-03-20 19:14:06
Score: 1
Natty:
Report link

Found the source and a solution.

My FreeBSD jail was based on release 12.3.
I have created a new jail based on 13.5 and it worked fine.

I assume it could have been caused by an incompatibility with an older version, possibly due to some dependency.

Reasons:
  • Whitelisted phrase (-1): it worked
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Vasco Baptista

79523885

Date: 2025-03-20 19:13:05
Score: 1
Natty:
Report link

What worked for me. fabric v6.6

const fo = new fabric.Polyline();
...
fo.set({
  points: points
})
fo.setBoundingBox();
fo.setDimensions();
fo.setCoords();
Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Ivan Morgun

79523880

Date: 2025-03-20 19:08:04
Score: 0.5
Natty:
Report link

So it turns out my initial intuition about going through the children was correct. Something similar to this where you iterate on the child elements, while perhaps not performant in some cases, offers much better guarantees about redacting all related info.

        // redact any descendant Rects that are not fully contained within the parent
        Queue<Element> redactedChildrenQueue = Queue.from([currentElement]);
        while (redactedChildrenQueue.isNotEmpty) {
          final redactedChild = redactedChildrenQueue.removeFirst();
          final childRect = _getGlobalElementRect(redactedChild);

          if (!childRect.isEmpty && childRect.intersect(elementRect) != childRect) {
            redactionRects.add(childRect);
          }
          redactedChild.visitChildElements((child) {
            redactedChildrenQueue.add(child);
          });
        }

Result where label is redacted:

enter image description here

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Blasterdude8

79523877

Date: 2025-03-20 19:04:03
Score: 1
Natty:
Report link

What i did before was git config --global url."https://".insteadOf "git://", which messed up my config.

What i did to fix this was git config --global --list

Then I saw that i had url.git://.insteadof=https:// in the config

so I used git config --global --unset url.git://.insteadof to remove it, and everything worked fine, hope this helps

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • No code block (0.5):
  • Starts with a question (0.5): What i
  • Low reputation (1):
Posted by: Ahmad Kassabieh

79523866

Date: 2025-03-20 19:00:02
Score: 4
Natty:
Report link

My Code works with a newer version of OpenCV 4.8.0

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tom C

79523863

Date: 2025-03-20 18:58:01
Score: 4.5
Natty:
Report link

simple, install emmet extension

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Learner_KP

79523858

Date: 2025-03-20 18:56:00
Score: 3.5
Natty:
Report link

I got the same error with a problem of cmake version. On windows, use visual cmake.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jean

79523848

Date: 2025-03-20 18:49:59
Score: 2
Natty:
Report link

You can copy your Execute pipeline activity and run it only if the previous activity failed by using the "On Fail" connection. You may also add a Wait between in each pipeline attempt.

Execute pipeline On Fail

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: JayB

79523833

Date: 2025-03-20 18:40:57
Score: 0.5
Natty:
Report link

I do this with Notepad++
(Note this method works regardless of the version of Excel/Office you have.)

  1. Save your work using File => "Save As" and select "CSV-UTF-8" as the file save type.
    (This is important, especially if your spreadsheet has non-English characters.)

  2. Open the .csv file in Notepad++

  3. Have fun with your regex replacements and save when done.

  4. Select the saved .csv file and "Open With" Excel.
    You might have to adjust the column widths and/or row heights, but it's much faster to do it that way than in Excel.

(Side note:)
One of the things I do with my data-conversion spreadsheets is, (after I get the data reasonably normalized, (like data in the same columns, etc.), I create a new first column and use the shift-drag feature to put an "index" in the first column starting with 1 so that I can keep track of the lines, and re-sort them if needed. (My European bank statements come sorted latest to earliest and my financial software wants things sorted earliest to latest.)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Jim JR Harris

79523822

Date: 2025-03-20 18:36:55
Score: 9.5 🚩
Natty: 6
Report link

I have the same issue, any work around ? thanks

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): I have the same issue
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have the same issue
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Trung Lehuynh

79523820

Date: 2025-03-20 18:35:55
Score: 2
Natty:
Report link

Locate your stdc++.h header file in your finder,

Open the file with vscode or any text editor,
Go to the line where cstdalign is included and comment it out.

Or

Re-install command line tools in your mac

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Shreeyash Khalate

79523817

Date: 2025-03-20 18:35:55
Score: 2.5
Natty:
Report link

enter image description here

This is how you can solve the problem I had the same problem
You should select your application from the Target section and select xcode 16.0 from the Project Format section.
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Whitelisted phrase (-1): I had the same
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30004315

79523816

Date: 2025-03-20 18:35:54
Score: 7 🚩
Natty: 4
Report link

Did you find it yet? I have also been looking to build a similar application but need an api to fetch saved posts

Reasons:
  • RegEx Blacklisted phrase (3): Did you find it
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): Did you find it
  • Low reputation (1):
Posted by: Sneha Nagarajan

79523810

Date: 2025-03-20 18:31:53
Score: 0.5
Natty:
Report link

Unfortunately, VS Code doesn't have such a feature. It would require it to detect what you want to do, and whether or not you want to write HTML Code in that JavaScript file. However, there are two workarounds (afaik):

  1. You could create a new temporary HTML file, write it there, then copy+paste it into the JS file (and escape end of strings etc.) OR
  2. You could install GitHub Copilot (however this does send your code to GitHub servers)

Hope this helps!

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • No code block (0.5):
  • Low reputation (1):
Posted by: Justin

79523806

Date: 2025-03-20 18:31:53
Score: 1
Natty:
Report link

A bit late but there are two separate issues here :

I followed one such guide/tutorial aswell, and they're all outdated or straight wrong (imo, likely GTP-written). This had me RTFM.

  1. The ENV variables "KEYCLOAK_USER" and "KEYCLOAK_PASSWORD" are no longer correct. Most tutorials you'll find will thus fail with recent versions of keycloak. From the documentation (https://www.keycloak.org/server/all-config?q=bootstrap) and (https://www.keycloak.org/server/configuration#_creating_the_initial_admin_user), you'll need to use
    • KC_BOOTSTRAP_ADMIN_USERNAME=<username>
    • KC_BOOTSTRAP_ADMIN_PASSWORD=<password>

This should allow you to connect using whatever user/pwd you provided.

  1. While I'm unsure about the cookies issue with only the provided info, it may have to do with you not serving over https. I believe working with http is only going to work in dev mode, not in production mode (for obvious security reasons). (https://www.keycloak.org/server/configuration#_starting_keycloak_in_development_mode)

Tldr : To specify you're in dev mode, in your docker-compose.yml, in the keycloak conf :

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Aekami

79523805

Date: 2025-03-20 18:30:53
Score: 2
Natty:
Report link

I have experiences similar with iOS 18

"[my website] permissions will reset to off when you leave this site"

I don't want this behavior but don't know how to turn this off or if it is even possible.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Dion

79523804

Date: 2025-03-20 18:29:52
Score: 2.5
Natty:
Report link

A solution for this bug is using snap point property in the actionsheet like given below:

This solved the issue for us

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Japjyot Suri

79523803

Date: 2025-03-20 18:28:52
Score: 1
Natty:
Report link
  1. They are refs used internally by Git since version 2.42 that exist to optimize performance.

  2. Git was updated on the remote.

  3. Unsatisfying answer, but you can't.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • High reputation (-1):
Posted by: nullromo

79523797

Date: 2025-03-20 18:26:52
Score: 2.5
Natty:
Report link

Actual solution is to use "WGS84" instead "EPSG:4326"

Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Пётр Георгиев

79523794

Date: 2025-03-20 18:25:51
Score: 1
Natty:
Report link

Sklearn Tuner is designed to use cross-validation (CV) for model selection, not the traditional train-validation-test split. Since you've already provided the cv argument, the tuner will perform cross-validation automatically. Therefore, you can remove the validation_split argument, and your code should work as expected.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Felix Anthonisen

79523792

Date: 2025-03-20 18:22:51
Score: 1
Natty:
Report link

After getting feedback and further analyzing the results, I think the answer is that putting a thread to sleep increases how often Windows reschedules it to different cores, which results in more thread context switches, which causes more cache invalidations (which are very expensive). That's how putting a thread to sleep can hurt cache performance.

In this test, putting the thread to sleep for 1ms in a 3000-sample test caused Windows to re-schedule it to a different core about 2.6 times more that not putting it to sleep:

how often the thread changed cores

The sleeping thread was rescheduled to a different core 2.6 times more often, and the performance cost about 2.4 times more on average, compared to a non-sleeping thread. I'm not sure if you can compare those two numbers so directly but there seems to be a correlation.

Pinning the thread to core 0 significantly reduced the cost of a sleeping thread, presumably because Windows wasn't moving it around between different cores anymore so cache invalidations happened less often (although other processes & their threads probably switched out the cache if they were also running on that core during the sleeping time):

pinning threads to core 0

Thanks to all for your help and hopefully this post can help others.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: greenlagoon

79523782

Date: 2025-03-20 18:17:49
Score: 1
Natty:
Report link

hi im stuck on the same issue.

the documentation dont really helps.

try this

using Range = Android.Util.Range;

var fps = characteristics?.Get(CameraCharacteristics.ControlAeAvailableTargetFpsRanges)!.ToArray<Range>();


for (int i = 0; i < fps.Length; i++)
{
    Console.WriteLine($"FPS Range : {fps[i].Lower} - {fps[i].Upper}");
}
Reasons:
  • Whitelisted phrase (-1): try this
  • RegEx Blacklisted phrase (1.5): im stuck
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SleepyFinch

79523775

Date: 2025-03-20 18:11:48
Score: 3
Natty:
Report link

So it turns out it was a policy issue. One other thing I tried to rule out improper use of the SDK was to change the Secret OCID value. When I did this, It returned a 400 invalid format. This indicated that I was reaching the service ok with the Authorization I had

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: powerdive

79523766

Date: 2025-03-20 18:09:48
Score: 2
Natty:
Report link

KHONOR/CRT-LX3/HNCRT-M1:14/HONORCRT-L03/8.0.0.174C69E5R1P1:user/release-keys 0""2025-02-08 22:47:02.557506292-0800(�� 0ͪ 8�NB)u:r:untrusted_app:s0:c100,c256,c512,c768J com.android.chromeR SIGSEGV " SEGV_MAPERR@ H z desreferencia del puntero nulo� � �� � �� CrAsyncTask #2 x0 ����͏��� x1 � x2 x3 x4 x5 x6 x7 x8 b x9 x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 x20 x21 x22 x23 ���� x24 ����� x25 ��� x26 ������� x27 ���� x28 ��́ x29 ���� lr �闋� sp ���� pc ���� pst ���� "o �� ���� ���� " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"~ �� �闋� ���� " art::Thread::Park(bool, long)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� �￉ ���� ���� "lart::Unsafe_park(_JNIEnv*, _jobject*, unsigned char, long) (.__uniq.319429422067363160645159987129209045680)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"i �� ���� " art_jni_trampoline(p2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ���� ���� "Pjava.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ",java.util.concurrent.ArrayBlockingQueue.poll(2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"2?/java.util.concurrent.ThreadPoolExecutor.getTask(2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"2?/java.util.concurrent.ThreadPoolExecutor.runWorker( 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ��� ���� "2java.util.concurrent.ThreadPoolExecutor$Worker.run(@2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"k 賥 賘� ���� " java.lang.Thread.run(H2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"v �� �芿 ���� " art_quick_invoke_stub(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ��⊿ ���� "\art::ArtMethod::Invoke(art::Thread*, int sin signo*, int sin signo, art::JValue*, char const*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ���� "� _ZN3art9ArtMethod14InvokeInstanceILc86ETpTncJEEENS_6detail12ShortyTraitsIXT_EE4TypeEPNS_6ThreadENS_6ObjPtrINS_6mirror6ObjectEEEDpNS3_IXT0_EE4TypeE(<2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� � ��� ���� ""art::Thread::CreateCallback(void*)(�2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ���� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � � �� Protector de perfil x0 Ƞ��ɏ��� x1 � x2 x3 x4 x5 x6 x7 ����� x8 b x9 ���󓯄�� x10 ���� x11 ���󓯄�� x12 ���# x13 ��ꮇ x14 ԕ���� x15 ŝ�� x16 �ؖ�� x17 ���� x18 ��ű� x19 ����ɏ��� x20 �������� x21 x22 ����� x23 ���� x24 ���� x25 x26 ���� x27 ��? x28 ��? x29 ���� lr �Ę�� sp ���� pc ���� pst ���� "o �� ���� ���� " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"� �Ċ �Ę�� ���ν "6art::ConditionVariable::WaitHoldingLocks(art::Thread*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� �Č�� ���ν "/art::ProfileSaver::RunProfileSaverThread(void*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ���ν " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���ν " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � �� Captador de señales x0 ��������� x1 x2 x3 x4 x5 x6 x7 ����� x8 � x9 ���󓯄�� x10 x11 ���� x12 ��芿 x13 ،芿 x14 ؍芿 x15 0 x16 ����� x17 ����� x18 ���� x19 ����� x20 ����� x21 ����� x22 �� x23 �� x24 ����� x25 ����� x26 �Ñ�� x27 ����� x28 ����� x29 ����� lr ���� sp ����� pc ���� pst ���� "y ت+ ت��� ����� " __rt_sigtimedwait( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"q �� ���� ����� " sigwait64(X2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f" ��� ����� ����� " art::SignalCatcher::Run(void*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ����� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � � �� enlazador:21767_1 x0 x1 ���� x2 ���ҽ x3 �� x4 ��ҕ� x5 � x6 �ְ� x7 x8 x9 ���ҽ x10 ���ҽ x11 ���ҽ x12 ��������� x13 �Ñ�� x14 ���ҽ x15 ���̏��� x16 ����� x17 ���� x18 ���� x19 �����x20 ���ˏ��� x21 ����ˏ��� x22 x23 ���� x24 �����x25 x26 �����x27 ��? x28��? x29 ���ҽ lr ����� sp ���ҽ pc ����� pst ���� "o ��+ ����� ���ҽ " __ioctl( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"n �� ����� ���ҽ " ioctl(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"� �� ��ٕ� ���ҽ "-android::IPCThreadState::talkWithDriver(bool)(� 2 /system/lib64/libbinder.soB d312aa6af7a0e8127cc455a56a824fab"� �� ���ҽ "/android::IPCThreadState::getAndExecuteCommand()( 2 /system/lib64/libbinder.soB d312aa6af7a0e8127cc455a56a824fab"� �� Iڕ� ���ҽ "-android::IPCThreadState::joinThreadPool(bool)(p2 /system/lib64/libbinder.soB d312aa6af7a0e8127cc455a56a824fab"u �� ���ҽ "!android::PoolThread::threadLoop()( 2 /system/lib64/libbinder.soB d312aa6af7a0e8127cc455a56a824fab"w �� ���ҽ "#android::Thread::_threadLoop(void*)(� 2 /system/lib64/libutils.soB ec3bafc07cefa0df137f810b47c4035f"� ��D ����� ���ҽ "/android::AndroidRuntime::javaThreadShell(void*)(� 2#/system/lib64/libandroid_runtime.soB 531fdff56e83e166e89cfc2844b679e1" ��0 ����� ��ҽ " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���ҽ " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � � �� perfetto_hprof_ x0 x1 ����� x2 x3 x4 ��ԩ����� x5 ����� x6 ����� x7 ����� x8 ? x9 ���󓯄�� x10 �% x11 �% x12 �, x13 x14 2 x15 0 x16 ��� x17 A��� x18 ���� x19 ��ҩ����� x20 ����ҏ��� x21 ��� x22 ����� x23 ��� x24 ����� x25 ��� x26 ����� x27 ��? x28��? x29 ����� lr ���� sp ����� pc Ԑ��� pst ���� "l Ԑ+ Ԑ��� ����� " read( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f" �� ����� " void* std::__1::__thread_proxy[abi:nn180000]soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � �� perfetto_hprof_ x0 x1 ����� x2 x3 x4 ��ԩ����� x5 ����� x6 ����� x7 ����� x8 ? x9 ���󓯄�� x10 �% x11 �% x12 �, x13 x14 2 x15 0 x16 ��� x17 A��� x18 ���� x19 ��ҩ����� x20 ����ҏ��� x21 ��� x22 ����� x23 ��� x24 ����� x25 ��� x26 ����� x27 ��? x28��? x29 ����� lr ���� sp ����� pc Ԑ��� pst ���� "l Ԑ+ Ԑ��� ����� " read( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f" �� ����� " void* std::__1::__thread_proxy[abi:nn180000]soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � �� perfetto_hprof_ x0 x1 ����� x2 x3 x4 ��ԩ����� x5 ����� x6 ����� x7 ����� x8 ? x9 ���󓯄�� x10 �% x11 �% x12 �, x13 x14 2 x15 0 x16 ��� x17 A��� x18 ���� x19 ��ҩ����� x20 ����ҏ��� x21 ��� x22 ����� x23 ��� x24 ����� x25 ��� x26 ����� x27 ��? x28��? x29 ����� lr ���� sp ����� pc Ԑ��� pst ���� "l Ԑ+ Ԑ��� ����� " read( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f" �� ����� " void* std::__1::__thread_proxy[abi:nn180000]>, ArtPlugin_Initialize::$_7> >(void*)(� 20/apex/com.android.art/lib64/libperfetto_hprof.soB 9299b6ce82fd6a7f26e3799ece61cd3f" ��0 ����� i��� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ������ ����� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � �� HeapTaskDaemon x0 ����ŏ��� x1 � x2 + x3 د�� x4 x5 x6 x7 ����� x8 b x9 ����ŏ��� x10 ���� x11 ���󓯄�� x12 ڋ�# x13 ���鮇 x14 ������ x15 ŝ�� x16 �ؖ�� x17 ���� x18 ���ҽ x19 ����ҏ��� x20 ����ŏ��� x21 + x22 x23 x24 ����� x25 �������� x26 ������� x27 x28 ����� x29 ����� lr ��狿 sp ���� pc ���� pst � "o �� ���� ���� " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"� ��� ��狿 ���� ":art::ConditionVariable::TimedWait(art::Thread*, long, int)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� �ȿ ��͊� ���� "1art::gc::TaskProcessor::RunAllTasks(art::Thread*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"i �� � ... java.lang.Daemons$Daemon.run(|2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"k 賥 賘� ��� " java.lang.Thread.run(H2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"v �� �芿 ���� " art_quick_invoke_stub(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ��⊿ ��� "\art::ArtMethod::Invoke(art::Thread*, entero sin signo*, entero sin signo, art::JValue*, char const*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� � ... _ZN3art9ArtMethod14InvokeInstanceILc86ETpTncJEEENS_6detail12ShortyTraitsIXT_EE4TypeEPNS_6ThreadENS_6ObjPtrINS_6mirror6ObjectEEEDpNS3_IXT0_EE4TypeE(<2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� � ��� ��� ""art::Thread::CreateCallback(void*)(�2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ��� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � �� � �� FinalizerWatchd x0 �������� x1 � x2 x3 x4 x5 x6 x7 ����� x8 b x9 ���♥�� x10 x11 x12 ��芿 x13 ،芿 x14 ؍芿 x15 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 lr sp pc pst ���� "o �� ���� ��ҽ " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"� �Ċ �Ę�� ��ҽ "6art::ConditionVariable::WaitHoldingLocks(art::Thread*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ����� ��ҽ "eart::Monitor::Wait(art::Thread*, art::ObjPtr, largo, entero, booleano, art::ThreadState)(�82%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"i ȥ� ȥprofit ��ҽ " art_jni_trampoline(X2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ���� ��ҽ "5java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(d2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"s " java.lang.Daemons$Daemon.run(|2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"k 賥 賘� ���ҽ " java.lang.Thread.run(H2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"v �� �芿 ���ҽ " art_quick_invoke_stub(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ��⊿ ���ҽ "\art::ArtMethod::Invoke(art::Thread*, int sin signo*, int sin signo, art::JValue*, char const*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ��ҽҽҽ ҽҽҽ "� _ZN3art9ArtMethod14InvokeInstanceILc86ETpTncJEEENS_6detail12ShortyTraitsIXT_EE4TypeEPNS_6ThreadENS_6ObjPtrINS_6mirror6ObjectEEEDpNS3_IXT0_EE4TypeE(<2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� � ��� ��� ""art::Thread::CreateCallback(void*)(�2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ���� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � �� � �� CrAsyncTask #1 x0 ����ү��� x1 � x2 x3 ���� x4 x5 x6 x7 x8 b x9 ���� x10 ���� x11 ���� x12 쌫# x13 ҩ�뮇 x14 �ү��� x15 ŝ�� x16 �ؖ�� x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 lr sp pc pst ���� "o �� ���� ���� " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"~ �� �闋� ���� " art::Thread::Park(bool, long)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� �� ���� "lart::Unsafe_park(_JNIEnv*, _jobject*, carácter sin signo, largo) (.__uniq.319429422067363160645159987129209045680)(2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"i �� ���� " art_jni_trampoline(p2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ���� ���� "Pjava.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ���� ",java.util.concurrent.ArrayBlockingQueue.poll(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ���� "/java.util.concurrent.ThreadPoolExecutor.getTask(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� �� �� ���� "1java.util.concurrent.ThreadPoolExecutor.runWorker(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ��� ���� "2java.util.concurrent.ThreadPoolExecutor$Worker.run(@2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"k 賥 賘� " java.lang.Thread.run(H2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"v �� �芿 " art_quick_invoke_stub(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ��⊿ ���� "\art::ArtMethod::Invoke(art::Thread*, entero sin signo*, entero sin signo, art::JValue*, constante de carácter*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ��� ��� "� _ZN3art9ArtMethod14InvokeInstanceILc86ETpTncJEEENS_6detail12ShortyTraitsIXT_EE4TypeEPNS_6ThreadENS_6ObjPtrINS_6mirror6ObjectEEEDpNS3_IXT0_EE4TypeE(<2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� � ��� ���� ""art::Thread::CreateCallback(void*)(�2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ���� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � Ϫ � Ϫ SplitCompatBack x0 ����ҏ��� x1 � x2 x3 ���� x4 x5 x6 x7 x8 b x9 ��� x10 ���� x11 ���󓯄�� x12 ҍ�# x13 ן�쮇 x14 ����֥� x15 ŝ�� x16 �ؖ�� x17 ���� x18 ���� x19 ����ҏ��� x20 �ï�% x21 x22 x23 ����� x24 ����� x25 ��� x26 ����ҏ��� x27 ���� x28 ��́ x29 ���� lr �闋� sp ���� pc ���� pst ���� "o �� ���� ���� " syscall( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"~ �� �闋� ���� " art::Thread::Park(bool, long)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� �￉ ���� "lart::Unsafe_park(_JNIEnv*, _jobject*, unsigned char, long) (.__uniq.319429422067363160645159987129209045680)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"i �� �� ���� " art_jni_trampoline(p2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ���� ���� "Pjava.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� �́ ���� ���� "-java.util.concurrent.LinkedBlockingQueue.poll(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ��� ���� "/java.util.concurrent.ThreadPoolExecutor.getTask(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� �� �� ���� "1java.util.concurrent.ThreadPoolExecutor.runWorker(� 2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"� ��� ����� "2java.util.concurrent.ThreadPoolExecutor$Worker.run(@2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"k 賥 賘� ����� " java.lang.Thread.run(H2?/data/misc/apexdata/com.android.art/dalvik-cache/arm64/boot.oat"v �� �芿" art_quick_invoke_stub(¹ 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"¹ ¹ ¹ ¹ "\art::ArtMethod::Invoke(art::Thread*, entero sin signo*, entero sin signo, art::JValue*, constante de carácter*)(¹ 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"¹ ¹ ����� "� _ZN3art9ArtMethod14InvokeInstanceILc86ETpTncJEEENS_6detail12ShortyTraitsIXT_EE4TypeEPNS_6ThreadENS_6ObjPtrINS_6mirror6ObjectEEEDpNS3_IXT0_EE4TypeE(<2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� �ᅥ ���� ����� ""art::Thread::CreateCallback(void*)(�2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ����� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ������ ����� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � �� �� Grupo de subprocesos Jit x0 ����ˏ��� x1 � x2 1 x3 x4 x5 x6 x7 ������� x8 b x9 ���󓯄�� x10 ��ѩ����� x11 ���� x12 ��芿 x13 ,芿 x14 ؍芿 x15 0 x16 �ؖ�� x17 ���� x18 ����� x19 ����ˏ��� x20 ����͏��� x21 1 x22 ����ˏ��� x23 �� x24 ���� x25 x26 ���� x27 ��A x28 ��A x29 ���� lr �Ę�� sp ���� pc ���� pst ���� "o �� ���� ���� " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"� �Ċ �Ę�� ���� "6art::ConditionVariable::WaitHoldingLocks(art::Thread*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"} ��� ����� ���� " art::ThreadPoolWorker::Run()(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ����� ���� "&art::ThreadPoolWorker::Callback(void*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3" ��0 ����� ���� " __pthread_start(void*)(� 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"v �� ����� ���� " __start_thread(@2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f0��������� @��������� � � � � �� �� ReferenceQueueD x0 �������� x1 � x2 x3 x4 x5 x6 x7 ����� x8 b x9 ���󓯄�� x10 x11 x12 x13 ،芿 x14 ؍芿 x15 0 x16 x17 x18 x19 x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 lr sp pc pst ���� "o �� ���� ��ҽ " llamada al sistema( 2./apex/com.android.runtime/lib64/bionic/libc.soB d638ba9bdf4cea2cddd9bd06ae04407f"� �Ċ �Ę�� ��ҽ "6art::ConditionVariable::WaitHoldingLocks(art::Thread*)(� 2%/apex/com.android.art/lib64/libart.soB 629e0ffca501d809c29dbbeef2f512d3"� ��� ����� ��Խ "eart::Monitor::Wait(art::Thread*, art::ObjPtr, largo, int, bool, art::ThreadState)(�82%/apex/com.android.art/lib6

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Filler text (0.5): ���������
  • Filler text (0): ���������
  • Filler text (0): ��������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ��������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ��������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ���������
  • Filler text (0): ��������
  • Low reputation (1):
Posted by: Erika Rios