Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for max8 (0.1 sec)

  1. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			nodeInfo: framework.NewNodeInfo(
    				newResourcePod(framework.Resource{MilliCPU: 9, Memory: 19})),
    			name:                      "init container fits because it's the max, not sum, of containers and init containers",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    step: The step to write the summary for.
    tag: Scalar. Used to build the `tag` attribute of the summary values.
    tensor: 2-D of shape `[batch_size, frames]`.
    sample_rate: The sample rate of the signal in hertz.
    max_outputs: Max number of batch elements to generate audio for.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer,
        TF_Int64Tensor:$step,
        TF_StrTensor:$tag,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. src/main/resources/suggest_indices/_cloud/suggest_analyzer.json

            ]
          },
          "stopword_en_filter": {
            "type": "stop",
            "stopwords": "_english_"
          },
          "content_length_filter": {
            "type": "length",
            "max": 30
          },
          "limit_token_count_filter": {
            "type": "limit",
            "max_token_count": 2147483647
          },
          "stemmer_en_filter": {
            "type": "stemmer",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    	// http://docs.aws.amazon.com/AmazonS3/latest/API/multiobjectdeleteapi.html
    	if r.ContentLength <= 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMissingContentLength), r.URL)
    		return
    	}
    
    	// The max. XML contains 100000 object names (each at most 1024 bytes long) + XML overhead
    	const maxBodySize = 2 * 100000 * 1024
    
    	if r.ContentLength > maxBodySize {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. src/main/resources/suggest_indices/_aws/suggest_analyzer.json

            ]
          },
          "stopword_en_filter": {
            "type": "stop",
            "stopwords": "_english_"
          },
          "content_length_filter": {
            "type": "length",
            "max": 30
          },
          "limit_token_count_filter": {
            "type": "limit",
            "max_token_count": 2147483647
          },
          "stemmer_en_filter": {
            "type": "stemmer",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Mar 24 12:55:37 UTC 2021
    - 57.4K bytes
    - Viewed (0)
  6. src/main/resources/suggest_indices/suggest_analyzer.json

            ]
          },
          "stopword_en_filter": {
            "type": "stop",
            "stopwords": "_english_"
          },
          "content_length_filter": {
            "type": "length",
            "max": 30
          },
          "limit_token_count_filter": {
            "type": "limit",
            "max_token_count": 2147483647
          },
          "stemmer_en_filter": {
            "type": "stemmer",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  7. src/main/resources/suggest_indices/suggest_analyzer.json

    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Oct 03 02:51:59 UTC 2019
    - 57.3K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'.
    	// Example:
    	// "object.x must be less than max ("+string(params.max)+")"
    	// +optional
    	MessageExpression string
    }
    
    // Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
    // +structType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	return "http: request body too large"
    }
    
    type maxBytesReader struct {
    	w   ResponseWriter
    	r   io.ReadCloser // underlying reader
    	i   int64         // max bytes initially, for MaxBytesError
    	n   int64         // max bytes remaining
    	err error         // sticky error
    }
    
    func (l *maxBytesReader) Read(p []byte) (n int, err error) {
    	if l.err != nil {
    		return 0, l.err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	}
    	if !c.haveVers {
    		// First message, be extra suspicious: this might not be a TLS
    		// client. Bail out before reading a full 'body', if possible.
    		// The current max version is 3.3 so if the version is >= 16.0,
    		// it's probably not real.
    		if (typ != recordTypeAlert && typ != recordTypeHandshake) || vers >= 0x1000 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top