Questions tagged [cls]

A Common Language Specification (CLS) defines how computer programs can be turned into bytecode

90 questions
2
votes
2 answers

C# classes interoperate with other .NET languages

Is there a way to ensure that other .NET languages will interoperate with my C# classes ?
Ron_B
  • 66
  • 7
2
votes
2 answers

How to make numerical field name CLS compliant?

I am working on .net framework 3.5 and using RDLC files for reporting in my project. Problem that I am facing is that in my Dataset I have a numerically named field "63" and whenever I am using it in my RDLC file its showing me this error "A field…
Rahul
  • 1,070
  • 3
  • 21
  • 47
2
votes
1 answer

Extjs4 disable "Delete" button by default but when select any row enable the button

I have two "delete" button on top of a grid, one is red another is gray. When no row selected, the button is the gray one. Otherwise, it shows the red one. How to do that using Extjs4?
LLL
  • 23
  • 3
1
vote
2 answers

PageSpeed-Insights Reports High CLS when Nothing is Shifting?

I've had low CLS on Google PageSpeed-Insights (mobile screen size) for a long time but recently its jumped quite high. I cant find any shifts in the page loading pictures. Chrome Lighthouse test shows low or zero CLS and Google Search Console shows…
stephenla
  • 21
  • 2
1
vote
1 answer

Create side-by-side environments in Latex

I am trying to create three environments that are beside one another and do not fill the entire page as seen in the attached image. Within each environment, I am trying to add the cvref function, attached is the necessary cls…
Varun Jain
  • 95
  • 1
  • 7
1
vote
1 answer

Image jumps during page load object-fit: cover

For example, here https://cs.daihatsu-club.net/vozidlo/daihatsu-materia-8 when I set Network throttling to Slow 3G in Chrome Developer Tools, you can see how the wedding photo loads and displays first by filling the 300x200px reserved for IMG at the…
Pavel
  • 25
  • 1
  • 8
1
vote
0 answers

NextJS - JSON File produce Column Layout Shift?

Hey guys Im on the hunt for page speed ;), and literally just the CLS (Columns Layout Shift) breaks my neck... I have a JSON file which holds all the content for my page and it gets loaded dynamically to my Components like: (easy example, in…
Alx
  • 11
  • 1
1
vote
2 answers

How to reduce CLS issue: more than 0.25 (desktop)

At present,97 URLs are affected by CLS issue more than 0.25 (desktop) and 85 URLs affected by LCP issue: longer than 4s (mobile) on our website. Website - www.sopact.com to look into it. How can we fix these issues? Thank you in advance.
Richa
  • 21
  • 1
  • 5
1
vote
0 answers

CLS for a HTML static website with a lot of pages

I have a question regarding the latest core web vitals. How exactly it works on a HTML static website with a lot of pages? I made some tests, but the results which I get are really weird. Are these results related to the whole website or only to…
1
vote
0 answers

How can you resize an Iframe properly without having to much layout shifts?

There will be a Google Update in May this year where CLS (cumulative layout shifting) becomes an important ranking factor. On our site we embed some iframes (mostly live tickers etc.). At some point we used fixed height and width values for these…
user2718671
  • 2,866
  • 9
  • 49
  • 86
1
vote
0 answers

Improving CLS and having a responsive image

I've been struggling with improving the CLS on a website. So I've tried to add a parent container so the image will adjust to the size of that container. See below: .cls-parent { width: 100%; } .cls-container { display: block; width:…
SDK95
  • 11
  • 1
1
vote
0 answers

Experience tab to measure CLS not visible in Devtools

I am trying to fix CLS on my site. Lighthouse shows CLS issues but when I try to find CLS in the Performance tab, there is nothing there. I heard that CLS won't appear in the Performance tab unless there are actual CLS issues, but in this case…
1
vote
1 answer

Are special tokens [CLS] [SEP] absolutely necessary while fine tuning BERT?

I am following the tutorial https://www.depends-on-the-definition.com/named-entity-recognition-with-bert/ to do Named Entity Recognition with BERT. While fine-tuning, before feeding the tokens to the model, the author does: input_ids =…
N G
  • 13
  • 3
1
vote
0 answers

Wrong metadata when using cls-hooked

I have an app that connects to the MQTT, I want to publish 1200 devices with the id of each device as a metadata. the following is the code "use-strict" const RSVP = require('rsvp'); const Mqtt = require('mqtt'); const cls =…
1
vote
0 answers

Why my Cls-hooked current context is coming out to be same as previous context when accessed at ORM hooks level?

I've a couple of micro-services written and I wanna pass some user context in each request from one service to another and so forth to next. My aim is to use this set context at each place where there is a DB write operation in any service (I…