Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for subfield (0.46 sec)

  1. fastapi/_compat.py

                field.type_, BaseModel
            ):
                if field.sub_fields is not None:  # type: ignore[attr-defined]
                    for sub_field in field.sub_fields:  # type: ignore[attr-defined]
                        if not is_pv1_scalar_field(sub_field):
                            return False
                return True
            if _annotation_is_sequence(field.type_):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    	case reflect.Struct:
    		aFields := a.NumField()
    		bFields := b.NumField()
    		if aFields != bFields {
    			fatalTypeError(t, path, a, b, "mismatched field count")
    		}
    		for i := 0; i < aFields; i++ {
    			aField := a.Field(i)
    			bField := b.Field(i)
    			if aField.Name != bField.Name {
    				fatalTypeError(t, path, a, b, fmt.Sprintf("mismatched field name %d: %s %s", i, aField.Name, bField.Name))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. src/encoding/gob/debug.go

    		// Field number 0 is CommonType
    		deb.delta(1)
    		com := deb.common()
    		// Field number 1 is slice of FieldType
    		deb.delta(1)
    		numField := int(deb.uint())
    		field := make([]*fieldType, numField)
    		for i := 0; i < numField; i++ {
    			field[i] = new(fieldType)
    			deb.delta(1) // field 0 of fieldType: name
    			field[i].Name = deb.string()
    			deb.delta(1) // field 1 of fieldType: id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation_test.go

    		}
    	}
    
    	// check that anything other than name and generateName of ObjectMeta in metadata properties is forbidden
    	tt := reflect.TypeOf(metav1.ObjectMeta{})
    	for i := 0; i < tt.NumField(); i++ {
    		property := tt.Field(i).Name
    		s := &Structural{
    			Generic: Generic{
    				Type: "object",
    			},
    			Properties: map[string]Structural{
    				property: {},
    			},
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    func setOwnerReference(v reflect.Value, o *metav1.OwnerReference) error {
    	if err := runtime.SetField(o.APIVersion, v, "APIVersion"); err != nil {
    		return err
    	}
    	if err := runtime.SetField(o.Kind, v, "Kind"); err != nil {
    		return err
    	}
    	if err := runtime.SetField(o.Name, v, "Name"); err != nil {
    		return err
    	}
    	if err := runtime.SetField(o.UID, v, "UID"); err != nil {
    		return err
    	}
    	if o.Controller != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

                if (inputDirectory != null) {
                    setField(backedObject, "inputDirectory", inputDirectory);
                }
                JavaMethod.of(backedObject, Void.class, "processGrammarsOnCommandLine").invoke(backedObject);
                return JavaMethod.of(backedObject, Integer.class, "getNumErrors").invoke(backedObject);
            }
    
            private static void setField(Object object, String fieldName, File value) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/testdata/v1reflect.gox

    <type 34 [] <type -11>>) <type 30>; FieldByName (name <type -16>) (? <type 30>, ? <type -15>); FieldByNameFunc (match <type 35 (? <type -16>) <type -15>>) (? <type 30>, ? <type -15>); In (i <type -11>) <type 26>; Key () <type 26>; Len () <type -11>; NumField () <type -11>; NumIn () <type -11>; NumOut () <type -11>; Out (i <type -11>) <type 26>; .reflect.runtimeType () <type 36 *<type 22>>; .reflect.common () <type 37 *<type 4>>; .reflect.uncommon () <type 38 *<type 12>>; }>>; Func <type 1>; Index <type...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

    import org.gradle.kotlin.dsl.support.bytecode.InternalNameOf
    import org.gradle.kotlin.dsl.support.bytecode.LDC
    import org.gradle.kotlin.dsl.support.bytecode.NEW
    import org.gradle.kotlin.dsl.support.bytecode.PUTFIELD
    import org.gradle.kotlin.dsl.support.bytecode.RETURN
    import org.gradle.kotlin.dsl.support.bytecode.addKmProperty
    import org.gradle.kotlin.dsl.support.bytecode.internalName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            when:
            allowFileSystemAccess(false)
            snapshot = read(someFile)
            then:
            assertIsFileSnapshot(snapshot, someFile)
    
            def missingSubfile = someFile.file("subfile/which/is/deep.txt")
            when:
            snapshot = read(missingSubfile)
            then:
            assertIsMissingFileSnapshot(snapshot, missingSubfile)
        }
    
        def "can read a missing file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

    import static org.objectweb.asm.Opcodes.INVOKEVIRTUAL;
    import static org.objectweb.asm.Opcodes.IRETURN;
    import static org.objectweb.asm.Opcodes.NEW;
    import static org.objectweb.asm.Opcodes.POP;
    import static org.objectweb.asm.Opcodes.PUTFIELD;
    import static org.objectweb.asm.Opcodes.PUTSTATIC;
    import static org.objectweb.asm.Opcodes.RETURN;
    import static org.objectweb.asm.Opcodes.SWAP;
    import static org.objectweb.asm.Type.getMethodDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top