Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for PROPERTY (0.17 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="CD001" type="string" offset="36865"/>
        </magic>
        <glob pattern="*.iso"/>
      </mime-type>
    
      <mime-type type="application/x-itunes-bplist">
        <_comment>Apple iTunes Binary Property List</_comment>
        <sub-class-of type="application/x-bplist"/>
      </mime-type>
    
      <mime-type type="application/x-itunes-ipa">
        <sub-class-of type="application/zip"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	valueSet := make(sets.Set[string])
    	valuesPath := fldPath.Child("values")
    	if len(rq.Values) == 0 {
    		allErrs = append(allErrs, field.Required(valuesPath, ""))
    	}
    
    	// Validate set property of Values field
    	for i, value := range rq.Values {
    		if valueSet.Has(value) {
    			allErrs = append(allErrs, field.Duplicate(valuesPath.Index(i), value))
    		}
    		valueSet.Insert(value)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.9.md

    ### Other notable changes
    
    * CustomResourceDefinitions: OpenAPI v3 validation schemas containing `$ref`references are no longer permitted (valid references could not be constructed previously because property ids were not permitted either). Before upgrading, ensure CRD definitions do not include those `$ref` fields. ([#58438](https://github.com/kubernetes/kubernetes/pull/58438), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.10.md

    * CustomResourceDefinitions: OpenAPI v3 validation schemas containing `$ref`references are no longer permitted (valid references could not be constructed previously because property ids were not permitted either). Before upgrading, ensure CRD definitions do not include those `$ref` fields. ([#58438](https://github.com/kubernetes/kubernetes/pull/58438), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

        * The new support for ORM mode fixes issues/adds features related to ORMs with lazy-loading, hybrid properties, dynamic/getters (using `@property` decorators) and several other use cases.
        * This applies to ORMs like SQLAlchemy, Peewee, Tortoise ORM, GINO ORM and virtually any other.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top