Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for fieldsV1 (0.2 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		if !hf.IsPseudo() {
    			return mh.Fields[i:]
    		}
    	}
    	return nil
    }
    
    // PseudoFields returns the pseudo header fields of mh.
    // The caller does not own the returned slice.
    func (mh *http2MetaHeadersFrame) PseudoFields() []hpack.HeaderField {
    	for i, hf := range mh.Fields {
    		if !hf.IsPseudo() {
    			return mh.Fields[:i]
    		}
    	}
    	return mh.Fields
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	}
    	if name := fields[deferStructFnField].Sym.Name; name != "fn" {
    		base.Fatalf("deferStructFnField is %q, not fn", name)
    	}
    
    	n := ir.NewDeclNameAt(src.NoXPos, ir.OTYPE, ir.Pkgs.Runtime.Lookup("_defer"))
    	typ := types.NewNamed(n)
    	n.SetType(typ)
    	n.SetTypecheck(1)
    
    	// build struct holding the above fields
    	typ.SetUnderlying(types.NewStruct(fields))
    	types.CalcStructSize(typ)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
    that field or method <code>f</code>.
    </p>
    
    <p>
    Promoted fields act like ordinary fields
    of a struct except that they cannot be used as field names in
    <a href="#Composite_literals">composite literals</a> of the struct.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    ### Changes
    
    * There are **new parameter** fields supported by Pydantic `Field()` for:
    
        * `Path()`
        * `Query()`
        * `Header()`
        * `Cookie()`
        * `Body()`
        * `Form()`
        * `File()`
    
    * The new parameter fields are:
    
        * `default_factory`
        * `alias_priority`
        * `validation_alias`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124694](https://githu...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Added error handling for seccomp localhost configurations that do not properly set a `localhostProfile`. ([#117020](https://github.com/kubernetes/kubernetes/pull/117020), [@cji](https://github.com/cji))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - Fixed overriding default `KubeletConfig` fields in drop-in configs if not set. ([#121193](https://github.com/kubernetes/kubernetes/pull/121193), [@sohankunkerkar](https://github.com/sohankunkerkar))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    ### Other (Cleanup or Flake)
    
    - When retrieving event resources, the reportingController and reportingInstance fields in the event will contain values. ([#120067](https://github.com/kubernetes/kubernetes/pull/120067), [@HirazawaUi](https://github.com/HirazawaUi)) [SIG Instrumentation]
    
    ## Dependencies
    
    ### Added
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top