Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,074 for Validation (0.13 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java

     */
    package org.codelibs.fess.app.web.admin.duplicatehost;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pkg/registry/networking/ipaddress/strategy.go

    	return false
    }
    
    // ValidateUpdate is the default update validation for an end user.
    func (ipAddressStrategy) ValidateUpdate(ctx context.Context, new, old runtime.Object) field.ErrorList {
    	newIPAddress := new.(*networking.IPAddress)
    	oldIPAddress := old.(*networking.IPAddress)
    	errList := validation.ValidateIPAddress(newIPAddress)
    	errList = append(errList, validation.ValidateIPAddressUpdate(newIPAddress, oldIPAddress)...)
    	return errList
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. pkg/registry/node/runtimeclass/strategy.go

    }
    
    // Canonicalize normalizes the object after validation.
    func (strategy) Canonicalize(obj runtime.Object) {
    	_ = obj.(*node.RuntimeClass)
    }
    
    // ValidateUpdate is the default update validation for an end user.
    func (strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	newObj := obj.(*node.RuntimeClass)
    	errorList := validation.ValidateRuntimeClass(newObj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 09 08:17:32 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

    package org.codelibs.fess.app.web.admin.dataconfig;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.validation.CustomSize;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java

     */
    package org.codelibs.fess.app.web.admin.pathmap;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
      hosts:
      - testing-01.com # Expected: no validation error since this host exists
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. pkg/registry/networking/servicecidr/strategy.go

    	return nil
    }
    
    // ValidateUpdate is the default update validation for an end user.
    func (serviceCIDRStrategy) ValidateUpdate(ctx context.Context, new, old runtime.Object) field.ErrorList {
    	newServiceCIDR := new.(*networking.ServiceCIDR)
    	oldServiceCIDR := old.(*networking.ServiceCIDR)
    	errList := validation.ValidateServiceCIDR(newServiceCIDR)
    	errList = append(errList, validation.ValidateServiceCIDRUpdate(newServiceCIDR, oldServiceCIDR)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix.yaml

    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: istio-system
    spec:
      gateways:
        - istio-system/testing-gateway
      hosts:
        - testing-01.com # Expected: no validation error because this host exists
      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  9. pkg/registry/storage/csinode/strategy.go

    	newCSINodeObj := obj.(*storage.CSINode)
    	oldCSINodeObj := old.(*storage.CSINode)
    	validateOptions := validation.CSINodeValidationOptions{
    		AllowLongNodeID: true,
    	}
    
    	errorList := validation.ValidateCSINode(newCSINodeObj, validateOptions)
    	return append(errorList, validation.ValidateCSINodeUpdate(newCSINodeObj, oldCSINodeObj, validateOptions)...)
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 26 00:30:42 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_gateways.yaml

    metadata:
      name: httpbin
    spec:
      hosts:
      - "*"
      gateways:
      - httpbin-gateway # Expected: no validation error since this gateway exists
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin-bogus
    spec:
      hosts:
      - "*"
      gateways:
      - httpbin-gateway-bogus # Expected: validation error since this gateway does not exist
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top