Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for _objects (0.2 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    ## Changelog since v1.27.0
    
    ## Changes by Kind
    
    ### Bug or Regression
    
    - Fixes a regression in 1.27.0 that resulted in "missing metadata in converted object" errors when modifying objects for multi-version custom resource definitions with a conversion strategy of `None`. ([#117305](https://github.com/kubernetes/kubernetes/pull/117305), [@ncdc](https://github.com/ncdc)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    	DeploymentLabels *structpb.Struct `protobuf:"bytes,14,opt,name=deploymentLabels,proto3" json:"deploymentLabels,omitempty"`
    	// Labels that are added to Pilot pods.
    	//
    	// See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    The sequence of execution before FastAPI 0.106.0 was like this diagram:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		case instrumentMove:
    			fn = ir.Syms.Msanmove
    		default:
    			panic("unreachable")
    		}
    		needWidth = true
    	} else if base.Flag.Race && t.NumComponents(types.CountBlankFields) > 1 {
    		// for composite objects we have to write every address
    		// because a write might happen to any subobject.
    		// composites with only one element don't have subobjects, though.
    		switch kind {
    		case instrumentRead:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		return opts
    	}
    
    	// If the old object had an invalid API group in the data source or data source reference, continue to allow it in the new object
    	opts.AllowInvalidAPIGroupInDataSourceOrRef = allowInvalidAPIGroupInDataSourceOrRef(&oldPvc.Spec)
    
    	if oldPvc.Spec.VolumeAttributesClassName != nil {
    		// If the old object had a volume attributes class, continue to validate it in the new object.
    		opts.EnableVolumeAttributesClass = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    strokeWidth",[["stroke",["stroke-width"]]],{type:["length","number","percentage"]}),objectFit:({addUtilities:i})=>{i({".object-contain":{"object-fit":"contain"},".object-cover":{"object-fit":"cover"},".object-fill":{"object-fit":"fill"},".object-none":{"object-fit":"none"},".object-scale-down":{"object-fit":"scale-down"}})},objectPosition:P("objectPosition",[["object",["object-position"]]]),padding:P("padding",[["p",["padding"]],[["px",["padding-left","padding-right"]],["py",["padding-top","padd...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. pkg/registry/core/service/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store).AllowCreateOnUpdate()
    	test.TestUpdate(
    		// valid
    		validService(),
    		// updateFunc
    		func(obj runtime.Object) runtime.Object {
    			object := obj.(*api.Service)
    			object.Spec = api.ServiceSpec{
    				Selector:        map[string]string{"bar": "baz2"},
    				ClusterIP:       api.ClusterIPNone,
    				ClusterIPs:      []string{api.ClusterIPNone},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    
    <pre>
    make([]int, 50, 100)
    new([100]int)[0:50]
    </pre>
    
    <p>
    Like arrays, slices are always one-dimensional but may be composed to construct
    higher-dimensional objects.
    With arrays of arrays, the inner arrays are, by construction, always the same length;
    however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top