Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for MaxLength (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	// computes the max length of for each phase use line
    	maxLength := 0
    	e.visitAll(func(p *phaseRunner) error {
    		if !p.Hidden && !p.RunAllSiblings {
    			length := len(p.use)
    			if maxLength < length {
    				maxLength = length
    			}
    		}
    		return nil
    	})
    
    	// prints the list of phases indented by level and formatted using the maxlength
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	if v == nil {
    		return
    	}
    
    	ret.Format = v.Format
    	ret.Maximum = v.Maximum
    	ret.ExclusiveMaximum = v.ExclusiveMaximum
    	ret.Minimum = v.Minimum
    	ret.ExclusiveMinimum = v.ExclusiveMinimum
    	ret.MaxLength = v.MaxLength
    	ret.MinLength = v.MinLength
    	ret.Pattern = v.Pattern
    	ret.MaxItems = v.MaxItems
    	ret.MinItems = v.MinItems
    	ret.UniqueItems = v.UniqueItems
    	ret.MultipleOf = v.MultipleOf
    	if v.Enum != 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/zz_generated.deepcopy.go

    		*out = new(float64)
    		**out = **in
    	}
    	if in.Minimum != nil {
    		in, out := &in.Minimum, &out.Minimum
    		*out = new(float64)
    		**out = **in
    	}
    	if in.MaxLength != nil {
    		in, out := &in.MaxLength, &out.MaxLength
    		*out = new(int64)
    		**out = **in
    	}
    	if in.MinLength != nil {
    		in, out := &in.MinLength, &out.MinLength
    		*out = new(int64)
    		**out = **in
    	}
    	if in.MaxItems != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

          exclusiveMinimum: true
          externalDocs:
            description: descriptionValue
            url: urlValue
          format: formatValue
          id: idValue
          items:
          - {}
          maxItems: 16
          maxLength: 13
          maxProperties: 21
          maximum: 9.5
          minItems: 17
          minLength: 14
          minProperties: 22
          minimum: 11.5
          multipleOf: 19.5
          nullable: true
          oneOf:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

                            final long maxLength = contentLengthHelper.getMaxLength(responseData.getMimeType());
                            if (responseData.getContentLength() > maxLength) {
                                throw new MaxLengthExceededException("The content length (" + responseData.getContentLength()
                                        + " byte) is over " + maxLength + " byte. The url is " + filePath);
                            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. tests/test_sub_callbacks.py

                                                    "format": "uri",
                                                    "minLength": 1,
                                                    "maxLength": 2083,
                                                },
                                                {"type": "null"},
                                            ],
                                        }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/openapi/adaptor.go

    }
    
    func (s *Schema) MaxItems() *int64 {
    	return s.Schema.MaxItems
    }
    
    func (s *Schema) MinLength() *int64 {
    	return s.Schema.MinLength
    }
    
    func (s *Schema) MaxLength() *int64 {
    	return s.Schema.MaxLength
    }
    
    func (s *Schema) MinProperties() *int64 {
    	return s.Schema.MinProperties
    }
    
    func (s *Schema) MaxProperties() *int64 {
    	return s.Schema.MaxProperties
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	}
    }
    
    func summarizeData(data []byte, maxLength int) string {
    	switch {
    	case len(data) == 0:
    		return "<empty>"
    	case data[0] == '{':
    		if len(data) > maxLength {
    			return string(data[:maxLength]) + " ..."
    		}
    		return string(data)
    	default:
    		if len(data) > maxLength {
    			return hex.EncodeToString(data[:maxLength]) + " ..."
    		}
    		return hex.EncodeToString(data)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

            externalDocs:
              description: descriptionValue
              url: urlValue
            format: formatValue
            id: idValue
            items:
            - {}
            maxItems: 16
            maxLength: 13
            maxProperties: 21
            maximum: 9.5
            minItems: 17
            minLength: 14
            minProperties: 22
            minimum: 11.5
            multipleOf: 19.5
            nullable: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tests/test_additional_responses_custom_model_in_callback.py

                                | IsDict(
                                    {
                                        "title": "Callback Url",
                                        "maxLength": 2083,
                                        "minLength": 1,
                                        "type": "string",
                                        "format": "uri",
                                    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top