Markus Winter
Markus Winter
When this gets merged, #6498 is probably obsolete
Currently there is no other way of providing a new link in the ComputerSet page other than directly in core. So maybe it makes sense to have some kind of...
Downstream PR: https://github.com/jenkinsci/role-strategy-plugin/pull/228 This is just a PoC with the FormChecker copied over (with some not so nice code as one method called by FormChecker has changed between 2.303 as...
Role strategy is already implementing the API Just the `@Override` annotation is not there yet https://github.com/jenkinsci/role-strategy-plugin/blob/master/src/main/java/org/jenkinsci/plugins/rolestrategy/RoleBasedProjectNamingStrategy.java#L72 The workaround mentioned is for the a case when the old method is called.
For the real platform there is the platformlabeler plugin that dynamically adds various labels like architecture, os, osversion and combinations
> I like this idea. I have started with new plugin 'extra-node-columns-plugin' on my local development. And this was one of thinks too. I was inspired by https://github.com/jenkinsci/extra-columns-plugin My preferred...
> However, when the label limit is high (even the default 5), it makes the column too wide, reducing the other column too much: > > when the limit is...
I don't think that the computer class should use the newly introduced method. It is not required. The existence of the temporarilyofflinecause in the Node class is so that after...
With #236 this becomes obsolete
Using TreeSet has also the disadvantage that is has worse performance compared to HashSet. So a TreeSet should only be used when writing the config xml or when generating the...