Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,440 for nfield (0.21 sec)

  1. src/cmd/doc/doc_test.go

    			`return true != true`,
    		},
    		nil,
    	},
    
    	// Field.
    	{
    		"field",
    		[]string{p, `ExportedType.ExportedField`},
    		[]string{
    			`type ExportedType struct`,
    			`ExportedField int`,
    			`Comment before exported field`,
    			`Comment on line with exported field`,
    			`other fields elided`,
    		},
    		nil,
    	},
    
    	// Field with -u.
    	{
    		"method with -u",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    	return validationMatch{path: field.NewPath(path[0], path[1:]...), errorType: field.ErrorTypeRequired}
    }
    func invalid(path ...string) validationMatch {
    	return validationMatch{path: field.NewPath(path[0], path[1:]...), errorType: field.ErrorTypeInvalid}
    }
    func invalidtypecode(path ...string) validationMatch {
    	return validationMatch{path: field.NewPath(path[0], path[1:]...), errorType: field.ErrorTypeTypeInvalid}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Header", Type, 0},
    		{"Header.AccessTime", Field, 0},
    		{"Header.ChangeTime", Field, 0},
    		{"Header.Devmajor", Field, 0},
    		{"Header.Devminor", Field, 0},
    		{"Header.Format", Field, 10},
    		{"Header.Gid", Field, 0},
    		{"Header.Gname", Field, 0},
    		{"Header.Linkname", Field, 0},
    		{"Header.ModTime", Field, 0},
    		{"Header.Mode", Field, 0},
    		{"Header.Name", Field, 0},
    		{"Header.PAXRecords", Field, 10},
    		{"Header.Size", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_test.go

    			wantErrs: field.ErrorList{
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "profiles[0].plugins.score.enabled[0]",
    				},
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "profiles[0].plugins.score.enabled[1]",
    				},
    				&field.Error{
    					Type:  field.ErrorTypeInvalid,
    					Field: "profiles[0].plugins.score.enabled[2]",
    				},
    				&field.Error{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation.go

    func validateAttacher(attacher string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(attacher) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, attacher))
    	}
    	return allErrs
    }
    
    // validateSource tests if the source is valid for VolumeAttachment.
    func validateVolumeAttachmentSource(source *storage.VolumeAttachmentSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. schema/index_test.go

    			Class: "UNIQUE",
    			Fields: []schema.IndexOption{
    				{Field: &schema.Field{Name: "FieldD"}},
    				// Note: Duplicate Columns
    				{Field: &schema.Field{Name: "FieldD"}},
    			},
    		},
    		"uniq_field_e1_e2": {
    			Name:  "uniq_field_e1_e2",
    			Class: "UNIQUE",
    			Fields: []schema.IndexOption{
    				{Field: &schema.Field{Name: "FieldE1"}},
    				{Field: &schema.Field{Name: "FieldE2"}},
    			},
    		},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/FieldUtil.java

         * @see #getString(Field, Object)
         */
        public static String getString(final Field field) throws IllegalAccessRuntimeException {
            assertArgumentNotNull("field", field);
    
            return getString(field, null);
        }
    
        /**
         * {@link Field}の値を {@link String}として取得します。
         *
         * @param field
         *            フィールド。{@literal null}であってはいけません
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. src/mdo/model-v3.vm

        public ${type} ${pfx}${cap}() {
          #if ( $field.to != "String" && $field.type == "java.util.List" && $field.multiplicity == "*" )
            return new WrapperList<${field.to}, ${packageModelV4}.${field.to}>(
                        () -> getDelegate().get${cap}(), l -> update(getDelegate().with${cap}(l)),
                        d -> new ${field.to}(d, this), ${field.to}::getDelegate);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/mdo/model.vm

            #if ( $field.type == "String" )
                    this.${field.name} = "${field.defaultValue}";
            #elseif ( $field.type != "java.util.List" && $field.type != "java.util.Properties" )
                    this.${field.name} = ${field.defaultValue};
            #end
          #end
        #end
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation.go

    	var allErrs field.ErrorList
    	allItems := sets.New[T]()
    	for i, item := range slice {
    		idxPath := fldPath.Index(i)
    		if allItems.Has(item) {
    			allErrs = append(allErrs, field.Duplicate(idxPath, item))
    		} else {
    			allErrs = append(allErrs, validateItem(item, idxPath)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top