Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for Yield (0.07 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return t.goString(0, "")
    }
    
    func (t *Typed) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sTyped:\n%s\n%s", indent, "", field,
    		t.Name.goString(indent+2, "Name: "),
    		t.Type.goString(indent+2, "Type: "))
    }
    
    // Qualified is a name in a scope.
    type Qualified struct {
    	Scope AST
    	Name  AST
    
    	// The LocalName field is true if this is parsed as a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	ok(func() { clear(v.Field(1).Field(0)) })           // .t1.Y
    	bad(func() { clear(v.Field(1).Field(1)) })          // .t1.t0
    	ok(func() { clear(v.Field(1).Field(1).Field(0)) })  // .t1.t0.W
    	ok(func() { clear(v.Field(2)) })                    // .T2
    	ok(func() { clear(v.Field(2).Field(0)) })           // .T2.Z
    	bad(func() { clear(v.Field(2).Field(1)) })          // .T2.namedT0
    	bad(func() { clear(v.Field(2).Field(1).Field(0)) }) // .T2.namedT0.W
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							FieldPath: ".field1",
    						},
    					},
    				},
    			},
    			errors: field.ErrorList{
    				{
    					Type:  field.ErrorTypeDuplicate,
    					Field: "root.field2",
    				},
    				{
    					Type:  field.ErrorTypeRequired,
    					Field: "root.field3",
    				},
    				{
    					Type:  field.ErrorTypeForbidden,
    					Field: "root.field1",
    				},
    			},
    		},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/api/pod/util_test.go

    		// ObjectMeta is generic and therefore should never have a field with a specific resource's name;
    		// it contains cycles so it's easiest to just skip it.
    		if name == "ObjectMeta" {
    			break
    		}
    		for i := 0; i < tp.NumField(); i++ {
    			field := tp.Field(i)
    			resourcePaths.Insert(sets.List[string](collectResourcePaths(t, resourcename, path.Child(field.Name), field.Name, field.Type))...)
    		}
    	case reflect.Interface:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	// In the latter case, we must have field.offset = 0,
    	// so v.ptr + field.offset is still the correct address.
    	ptr := add(v.ptr, field.Offset, "same as non-reflect &v.field")
    	return Value{typ, ptr, fl}
    }
    
    // FieldByIndex returns the nested field corresponding to index.
    // It panics if evaluation requires stepping through a nil
    // pointer or a field that is not a struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                // GENERATE public <type> <getter>() { if (<field> == null) { <field> = <services>>.get(<service-type>>); } return <field> }
                final String getterName = getter.getName();
                Type returnType = getType(getter.getReturnType());
                String methodDescriptor = getMethodDescriptor(returnType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  7. fastapi/applications.py

                        license name used for the API.
                    * `identifier`: (`str`) An [SPDX](https://spdx.dev/) license expression
                        for the API. The `identifier` field is mutually exclusive of the `url`
                        field. Available since OpenAPI 3.1.0, FastAPI 0.99.0.
                    * `url`: (`str`) A URL to the license used for the API. This MUST be
                        the format of a URL.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	// Note: even if pod name is a field, we have to use labels,
    	// because field selector doesn't support "IN" operator.
    	l, err := labels.NewRequirement("name", selection.In, names)
    	if err != nil {
    		panic("Labels requirement must validate successfully")
    	}
    	return storage.SelectionPredicate{
    		Label:    labels.Everything().Add(*l),
    		Field:    fields.Everything(),
    		GetAttrs: getPodAttrs,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	rulen, matchn int,
    ) (matchHTTPRoutes *OverlappingMatchValidationForHTTPRoute) {
    	// skip current match if no match field for current route
    	if match == nil {
    		return nil
    	}
    	// skip current match if no URI field
    	if match.Uri == nil {
    		return nil
    	}
    	// store all httproute with prefix match uri
    	tmpPrefix := match.Uri.GetPrefix()
    	if tmpPrefix != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // printing. Erroneous packages will have a non-empty ImportPath and
    // a non-nil Error field; other information may or may not be missing
    // (zeroed).
    //
    // The -export flag causes list to set the Export field to the name of a
    // file containing up-to-date export information for the given package,
    // and the BuildID field to the build ID of the compiled package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top