Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for Replacer (0.13 sec)

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

    			t.Fatal(err)
    		}
    
    		bs, err := json.Marshal(v1beta1Schema)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		expected := strings.Contains(strings.Replace(string(bs), `"default":null`, `"deleted":null`, -1), `"default":`)
    		if got := schemaHasDefaults(schema); got != expected {
    			t.Errorf("expected %v, got %v for: %s", expected, got, string(bs))
    		}
    	}
    }
    
    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. CHANGELOG/CHANGELOG-1.7.md

    * StatefulSets now include an alpha scaling feature accessible by setting the `spec.podManagementPolicy` field to `Parallel`.  The controller will not wait for pods to be ready before adding the other pods, and will replace deleted pods as needed.  Since parallel scaling creates pods out of order, you cannot depend on predictable membership changes within your set. ([#44899](https://github.com/kubernetes/kubernetes/pull/44899), [@smarterclayton](https://github.com/smarterclayton))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	if !allowEmpty && len(*effect) == 0 {
    		return field.ErrorList{field.Required(fldPath, "")}
    	}
    
    	allErrors := field.ErrorList{}
    	switch *effect {
    	// TODO: Replace next line with subsequent commented-out line when implement TaintEffectNoScheduleNoAdmit.
    	case core.TaintEffectNoSchedule, core.TaintEffectPreferNoSchedule, core.TaintEffectNoExecute:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	if codeStr == "" {
    		codeStr = strconv.Itoa(int(code))
    	}
    	f(fmt.Sprintf("%s_%s_%s", typ, codeStr, name))
    	return err
    }
    
    // A timer is a time.Timer, as an interface which can be replaced in tests.
    type http2timer = interface {
    	C() <-chan time.Time
    	Reset(d time.Duration) bool
    	Stop() bool
    }
    
    // timeTimer adapts a time.Timer to the timer interface.
    type http2timeTimer struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	case ir.OINDEX:
    		n := n.(*ir.IndexExpr)
    		switch {
    		case n.X.Type().IsString():
    			if n.Bounded() && ir.IsConst(n.X, constant.String) && ir.IsConst(n.Index, constant.Int) {
    				// Replace "abc"[1] with 'b'.
    				// Delayed until now because "abc"[1] is not an ideal constant.
    				// See test/fixedbugs/issue11370.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top