Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for kustomize (0.37 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.29.0 → v0.30.3
    - sigs.k8s.io/knftables: v0.0.14 → v0.0.17
    - sigs.k8s.io/kustomize/api: 6ce0bf3 → v0.17.2
    - sigs.k8s.io/kustomize/cmd/config: v0.11.2 → v0.14.1
    - sigs.k8s.io/kustomize/kustomize/v5: 6ce0bf3 → v5.4.2
    - sigs.k8s.io/kustomize/kyaml: 6ce0bf3 → v0.17.1
    - sigs.k8s.io/yaml: v1.3.0 → v1.4.0
    
    ### Removed
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:49:57 UTC 2025
    - 429.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

    - k8s.io/utils: a36077c → d93618c
    - sigs.k8s.io/apiserver-network-proxy/konnectivity-client: v0.1.1 → v0.1.2
    - sigs.k8s.io/kustomize/api: v0.13.2 → 6ce0bf3
    - sigs.k8s.io/kustomize/cmd/config: v0.11.1 → v0.11.2
    - sigs.k8s.io/kustomize/kustomize/v5: v5.0.1 → 6ce0bf3
    - sigs.k8s.io/kustomize/kyaml: v0.14.1 → 6ce0bf3
    
    ### Removed
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.17.md

    - Correct a reference to a not/no longer used kustomize subcommand in the documentation ([#82535](https://github.com/kubernetes/kubernetes/pull/82535), [@demobox](https://github.com/demobox))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  4. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            ComponentCustomizer customizer = new ComponentCustomizer() {
                @Override
                public void customize(org.lastaflute.di.core.ComponentDef componentDef) {
                    // Mock implementation
                }
            };
            pagerCreator.setPagerCustomizer(customizer);
            assertSame(customizer, pagerCreator.getPagerCustomizer());
    
            // Set null customizer
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/validation/CustomSize.java

     */
    @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
    @Retention(RUNTIME)
    @Documented
    @Constraint(validatedBy = CustomSizeValidator.class)
    public @interface CustomSize {
    
        /**
         * The error message when validation fails.
         * @return the error message
         */
        String message() default "{jakarta.validation.constraints.Size.message}";
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.16.md

    - Make kubectl get `--ignore-not-found` continue processing when encountering error. ([#82120](https://github.com/kubernetes/kubernetes/pull/82120), [@soltysh](https://github.com/soltysh))
    - Correct a reference to a not/no longer used kustomize subcommand in the documentation ([#82535](https://github.com/kubernetes/kubernetes/pull/82535), [@demobox](https://github.com/demobox))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 345.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

            final CustomSize annotation = field.getAnnotation(CustomSize.class);
    
            assertEquals("Annotation type should be CustomSize", CustomSize.class, annotation.annotationType());
        }
    
        // Test all annotation methods exist
        public void test_annotationMethods() {
            try {
                final Method messageMethod = CustomSize.class.getMethod("message");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        @Required
        @UriType(protocolType = ProtocolType.WEB)
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String urls;
    
        /**
         * URL patterns to include during crawling.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedUrls;
    
        /**
         * URL patterns to exclude during crawling.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/CustomCipherSuites.java

        // Configure cipher suites to demonstrate how to customize which cipher suites will be used for
        // an OkHttp request. In order to be selected a cipher suite must be included in both OkHttp's
        // connection spec and in the SSLSocket's enabled cipher suites array. Most applications should
        // not customize the cipher suites list.
        List<CipherSuite> customCipherSuites = asList(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Mar 14 21:57:42 UTC 2019
    - 6.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

                assertTrue("NPE is acceptable for null context in this implementation", true);
            }
        }
    
        private CustomSize createBasicAnnotation() {
            return new CustomSize() {
                @Override
                public Class<? extends Annotation> annotationType() {
                    return CustomSize.class;
                }
    
                @Override
                public String message() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top