Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for oneof (0.04 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                            oneOf:
                              stringMatch:
                                exact: iss
                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.claims
                        - key: iss
                        value:
                          listMatch:
                            oneOf:
                              stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/visitor.go

    		}
    		for i := range s.ValueValidation.AnyOf {
    			m.visitNestedValueValidation(&s.ValueValidation.AnyOf[i])
    		}
    		for i := range s.ValueValidation.OneOf {
    			m.visitNestedValueValidation(&s.ValueValidation.OneOf[i])
    		}
    		if s.ValueValidation.Not != nil {
    			m.visitNestedValueValidation(s.ValueValidation.Not)
    		}
    	}
    
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    		ret.AllOf = append(ret.AllOf, *v.AllOf[i].toKubeOpenAPI())
    	}
    	for i := range v.AnyOf {
    		ret.AnyOf = append(ret.AnyOf, *v.AnyOf[i].toKubeOpenAPI())
    	}
    	for i := range v.OneOf {
    		ret.OneOf = append(ret.OneOf, *v.OneOf[i].toKubeOpenAPI())
    	}
    	ret.Not = v.Not.toKubeOpenAPI()
    }
    
    func (vv *NestedValueValidation) toKubeOpenAPI() *spec.Schema {
    	if vv == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/deepcopy.go

    	if in.AllOf != nil {
    		in, out := &in.AllOf, &out.AllOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    
    	if in.OneOf != nil {
    		in, out := &in.OneOf, &out.OneOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.AnyOf != nil {
    		in, out := &in.AnyOf, &out.AnyOf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                    - key: payload
                    - key: aud
                    value:
                      orMatch:
                        valueMatchers:
                        - listMatch:
                            oneOf:
                              orMatch:
                                valueMatchers:
                                - stringMatch:
                                    exact: audiences
                                - stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.AnyOf[i], s, sPath, vPath.Child("anyOf").Index(i), opts)...)
    	}
    	for i := range v.OneOf {
    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.OneOf[i], s, sPath, vPath.Child("oneOf").Index(i), opts)...)
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

      message AffineParams {
        float scale = 1;
        int32 zero_point = 2;
      }
    
      // Params to quantize the axis. Only one of the field can be used.
      message PerAxisParams {
        oneof params_oneof {
          // min/max of the ranges.
          MinMax min_max = 1;
    
          // affine parameters to quantize the per axis value.
          AffineParams affine_params = 2;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    		},
    		{
    			name: "oneOf",
    			in: &apiextensions.JSONSchemaProps{
    				OneOf: []apiextensions.JSONSchemaProps{
    					{Type: "boolean"},
    					{Type: "string"},
    				},
    			},
    			expected: new(spec.Schema),
    			// not supported by openapi v2
    			// expected: &spec.Schema{
    			// 	SchemaProps: spec.SchemaProps{
    			// 		OneOf: []spec.Schema{
    			// 			*spec.BooleanProperty(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/deepcopy.go

    	if in.AllOf != nil {
    		in, out := &in.AllOf, &out.AllOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    
    	if in.OneOf != nil {
    		in, out := &in.OneOf, &out.OneOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.AnyOf != nil {
    		in, out := &in.AnyOf, &out.AnyOf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. pkg/zdsapi/zds.proto

    */
    
    // Sent from CNI to ztunnel
    message WorkloadRequest {
      oneof payload {
        AddWorkload add = 1;
        KeepWorkload keep = 5;
        DelWorkload del = 2;
        SnapshotSent snapshot_sent = 3;
      }
    }
    
    // Sent from ztunnel to CNI
    message WorkloadResponse {
      oneof payload {
        Ack ack = 1;
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top