Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for oldB (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			}
    		}
    		old := fn(tc.storedRule)
    		resource := fn(tc.updatedRule)
    
    		t.Run(tc.name, func(t *testing.T) {
    			ctx := context.TODO()
    			errs := validateCustomResourceDefinitionUpdate(ctx, resource, old, validationOptions{
    				preexistingExpressions: findPreexistingExpressions(&old.Spec),
    				celEnvironmentSet:      envSet,
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	}
    	for _, old := range oldPod.Spec.EphemeralContainers {
    		if new, ok := newContainerIndex[old.Name]; !ok {
    			allErrs = append(allErrs, field.Forbidden(specPath, fmt.Sprintf("existing ephemeral containers %q may not be removed\n", old.Name)))
    		} else if !apiequality.Semantic.DeepEqual(old, *new) {
    			specDiff := cmp.Diff(old, *new)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.13.md

      - The `--experimental-encryption-provider-config` flag is deprecated in favor of `--encryption-provider-config`. The old flag is accepted with a warning but will be removed in 1.14. ([#71206](https://github.com/ku...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    {e}fullscreen`}};rl.names=[":fullscreen"];vg.exports=rl});var Sg=v((A4,kg)=>{l();var xA=Ht(),il=class extends xA{possible(){return super.possible().concat(["-moz- old","-ms- old"])}prefixed(e){return e==="-webkit-"?"::-webkit-input-placeholder":e==="-ms-"?"::-ms-input-placeholder":e==="-ms- old"?":-ms-input-placeholder":e==="-moz- old"?":-moz-placeholder":`::${e}placeholder`}};il.names=["::placeholder"];kg.exports=il});var Ag=v((_4,Cg)=>{l();var kA=Ht(),nl=class extends kA{prefixed(e){return e==...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  5. src/net/http/h2_bundle.go

    	cc.mu.Lock()
    	defer cc.mu.Unlock()
    
    	old := cc.goAway
    	cc.goAway = f
    
    	// Merge the previous and current GoAway error frames.
    	if cc.goAwayDebug == "" {
    		cc.goAwayDebug = string(f.DebugData())
    	}
    	if old != nil && old.ErrCode != http2ErrCodeNo {
    		cc.goAway.ErrCode = old.ErrCode
    	}
    	last := f.LastStreamID
    	for streamID, cs := range cc.streams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    		newService:         makeServiceWithClusterIp("", []string{"10.0.0.10"}),
    		expectedClusterIP:  "",
    		expectedClusterIPs: nil,
    	}, {
    		name:               "update - user cleared clusterIPs", // *MUST* REMAIN FOR OLD CLIENTS
    		oldService:         makeServiceWithClusterIp("10.0.0.10", []string{"10.0.0.10"}),
    		newService:         makeServiceWithClusterIp("10.0.0.10", nil),
    		expectedClusterIP:  "10.0.0.10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.11.md

    * kubectl no longer renders a List as suffix kind name for CRD resources ([#62512](https://github.com/kubernetes/kubernetes/pull/62512), [@dixudx](https://github.com/dixudx))
    * Restored old behavior to the `--template` flag in `get.go`. In old releases, providing a `--template` flag value and no `--output` value implicitly assigned a default value ("go-template") to `--output`, printing using the provided template argument.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicCompareAndSwap32 ptr old new_ mem)
    	// result: (LoweredAtomicCas32 [1] ptr old new_ mem)
    	for {
    		ptr := v_0
    		old := v_1
    		new_ := v_2
    		mem := v_3
    		v.reset(OpPPC64LoweredAtomicCas32)
    		v.AuxInt = int64ToAuxInt(1)
    		v.AddArg4(ptr, old, new_, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicCompareAndSwap64(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.15.md

    - Fix the bug PIP's DNS is deleted if no DNS label service annotation isn't set. ([#87310](https://github.com/kubernetes/kubernetes/pull/87310), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    - Fix: set nil cache entry based on old cache ([#87593](https://github.com/kubernetes/kubernetes/pull/87593), [@aramase](https://github.com/aramase)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
Back to top