Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for defaulting (0.41 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                  }
                ],
                "description": "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false."
              },
              "definitions": {
                "additionalProperties": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	options             Options
    	optsFunc            func(*Options)
    	signingKey          *jose.JSONWebKey
    	pubKeys             []*jose.JSONWebKey
    	claims              string
    	want                *user.DefaultInfo
    	wantSkip            bool
    	wantErr             string
    	wantInitErr         string
    	wantHealthErrPrefix string
    	claimToResponseMap  map[string]string
    	openIDConfig        string
    	fetchKeysFromRemote bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    * AWS: Handle kube-down case where the LaunchConfig is dangling ([#30816](https://github.com/kubernetes/kubernetes/pull/30816), [@zmerlynn](https://github.com/zmerlynn))
    * kubectl will no longer do client-side defaulting on create and replace. ([#30250](https://github.com/kubernetes/kubernetes/pull/30250), [@krousey](https://github.com/krousey))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    			}
    		}
    		if len(tc.metricsTarget) > 0 {
    			obj.Items[0].Spec.Metrics = append(obj.Items[0].Spec.Metrics, tc.metricsTarget...)
    		}
    
    		if len(obj.Items[0].Spec.Metrics) == 0 {
    			// manually add in the defaulting logic
    			obj.Items[0].Spec.Metrics = []autoscalingv2.MetricSpec{
    				{
    					Type: autoscalingv2.ResourceMetricSourceType,
    					Resource: &autoscalingv2.ResourceMetricSource{
    						Name: v1.ResourceCPU,
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		t, il.Exprs.goString(indent+2, "Exprs: "))
    }
    
    // DefaultArg holds a default argument for a local name.
    type DefaultArg struct {
    	Num int
    	Arg AST
    }
    
    func (da *DefaultArg) print(ps *printState) {
    	if !ps.llvmStyle {
    		fmt.Fprintf(&ps.buf, "{default arg#%d}::", da.Num+1)
    	}
    	ps.print(da.Arg)
    }
    
    func (da *DefaultArg) Traverse(fn func(AST) bool) {
    	if fn(da) {
    		da.Arg.Traverse(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

            activation_fn,
            strides,
            dilations,
        )
        saved_model_save.save(model, self._input_saved_model_path)
    
        # Generate model input data.
        rng = np.random.default_rng(seed=1234)
        static_input_shape = [dim if dim is not None else 2 for dim in input_shape]
        input_data = ops.convert_to_tensor(
            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top