- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 135 for validators (0.09 sec)
-
CHANGELOG/CHANGELOG-1.23.md
- Turn on CSIMigrationAzureDisk by default on 1.23 ([#104670](https://github.com/kubernetes/kubernetes/pull/104670), [@andyzhangx](https://github.com/andyzhangx)) - Update the system-validators library to v1.6.0 ([#106323](https://github.com/kubernetes/kubernetes/pull/106323), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle and Node]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.22.md
- Update the setcap image to buster-v2.0.1. ([#102377](https://github.com/kubernetes/kubernetes/pull/102377), [@xmudrii](https://github.com/xmudrii)) - Update the system-validators library to v1.5.0. Includes validation for `seccomp` and fixes a stdout/stderr problem in the Docker validator. ([#103390](https://github.com/kubernetes/kubernetes/pull/103390), [@ironyman](https://github.com/ironyman)) - Updates the following images to pick up CVE fixes:
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- google.golang.org/genproto/googleapis/rpc: e6fa225 → a0af3ef - google.golang.org/grpc: v1.68.1 → v1.72.1 - k8s.io/gengo/v2: 1244d31 → 85fd79d - k8s.io/kube-openapi: c8a335a → f3f2b99 - k8s.io/system-validators: v1.9.1 → v1.10.1 - k8s.io/utils: 3ea5e8c → 4c0f3b2 - sigs.k8s.io/json: 9aa6b5e → cfa47c3 - sigs.k8s.io/kustomize/api: v0.19.0 → v0.20.1 - sigs.k8s.io/kustomize/cmd/config: v0.19.0 → v0.20.1
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.26.md
- Updated creation of `LoadBalancer` services, for there to be fewer AWS security group rules in most cases. ([#112267](https://github.com/kubernetes/kubernetes/pull/112267), [@sjenning](https://github.com/sjenning)) - Updated the system-validators library to v1.8.0 ([#112026](https://github.com/kubernetes/kubernetes/pull/112026), [@pacoxu](https://github.com/pacoxu))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Mar 14 16:24:51 UTC 2024 - 425.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.17.md
- golang.org/x/perf: 6e6d33e - golang.org/x/xerrors: a985d34 - gopkg.in/alecthomas/kingpin.v2: v2.2.6 - gopkg.in/cheggaaa/pb.v1: v1.0.25 - gopkg.in/resty.v1: v1.12.0 - grpc.go4.org: 11d0a25 - k8s.io/system-validators: v1.0.4 - mvdan.cc/interfacer: c200402 - mvdan.cc/lint: adc824a - mvdan.cc/unparam: fbb5962 - sourcegraph.com/sqs/pbtypes: d3ebe8f #### Changed
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Jan 28 10:44:33 UTC 2021 - 346.2K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/validation/UriType.java
*/ ProtocolType protocolType(); /** * The validation error message. * * @return the error message */ String message() default "{org.lastaflute.validator.constraints.UriType.message}"; /** * The validation groups. * * @return the validation groups */ Class<?>[] groups() default {}; /** * The payload for constraint.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
public class CustomSizeValidatorTest extends UnitFessTestCase { private CustomSizeValidator validator; @Override public void setUp() throws Exception { super.setUp(); validator = new CustomSizeValidator(); } public void test_constructor() { assertNotNull(validator); } public void test_isValid_nullValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
assertTrue(validator.determineValid(null)); assertTrue(validator.determineValid("")); assertTrue(validator.determineValid(" ")); assertTrue(validator.determineValid(" ")); assertTrue(validator.determineValid("\t")); assertTrue(validator.determineValid("\n")); } public void test_initialize() { final CronExpression cronExpression = null; validator.initialize(cronExpression);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java
public class FuturesGetCheckedBenchmark { private enum Validator { NON_CACHING_WITH_CONSTRUCTOR_CHECK(nonCachingWithConstructorCheckValidator()), NON_CACHING_WITHOUT_CONSTRUCTOR_CHECK(nonCachingWithoutConstructorCheckValidator()), WEAK_SET(weakSetValidator()), ; final GetCheckedTypeValidator validator; Validator(GetCheckedTypeValidator validator) { this.validator = validator; } } private enum Result {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/graph/InvalidatableSet.java
private final Supplier<Boolean> validator; private final Set<E> delegate; private final Supplier<String> errorMessage; static <E> InvalidatableSet<E> of( Set<E> delegate, Supplier<Boolean> validator, Supplier<String> errorMessage) { return new InvalidatableSet<>( checkNotNull(delegate), checkNotNull(validator), checkNotNull(errorMessage)); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 1.8K bytes - Viewed (0)