Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 542 for Maximum (0.26 sec)

  1. src/internal/zstd/zstd.go

    	headerSize := windowDescriptorSize + dictionaryIdSize + fcsFieldSize
    
    	if _, err := io.ReadFull(r.r, r.scratch[:headerSize]); err != nil {
    		return r.wrapNonEOFError(relativeOffset, err)
    	}
    
    	// Figure out the maximum amount of data we need to retain
    	// for backreferences.
    	var windowSize uint64
    	if !singleSegment {
    		// Window descriptor. RFC 3.1.1.1.2.
    		windowDescriptor := r.scratch[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    		out.VendorExtensible.AddExtension("x-kubernetes-int-or-string", true)
    		out.Type = spec.StringOrArray{"integer", "string"}
    	}
    	out.Nullable = in.Nullable
    	out.Format = in.Format
    	out.Title = in.Title
    	out.Maximum = in.Maximum
    	out.ExclusiveMaximum = in.ExclusiveMaximum
    	out.Minimum = in.Minimum
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = in.MaxLength
    	out.MinLength = in.MinLength
    	out.Pattern = in.Pattern
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Ordering.java

       *
       * <p><b>Java 8+ users:</b> Use {@code Streams.stream(iterator).max(thisComparator).get()} instead
       * (but note that it does not guarantee which tied maximum element is returned).
       *
       * @param iterator the iterator whose maximum element is to be determined
       * @throws NoSuchElementException if {@code iterator} is empty
       * @throws ClassCastException if the parameters are not <i>mutually comparable</i> under this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    )
    
    const (
    	// MaxZipFile is the maximum size in bytes of a module zip file. The
    	// go command will report an error if either the zip file or its extracted
    	// content is larger than this.
    	MaxZipFile = 500 << 20
    
    	// MaxGoMod is the maximum size in bytes of a go.mod file within a
    	// module zip file.
    	MaxGoMod = 16 << 20
    
    	// MaxLICENSE is the maximum size in bytes of a LICENSE file within a
    	// module zip file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types.go

    	// maximum duration they will honor per the --cluster-signing-duration CLI
    	// flag to the Kubernetes controller manager.
    	//
    	// Certificate signers may not honor this field for various reasons:
    	//
    	//   1. Old signer that is unaware of the field (such as the in-tree
    	//      implementations prior to v1.22)
    	//   2. Signer whose configured maximum is shorter than the requested duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/internal/trace/generation.go

    			return err
    		}
    
    		// Read the string's length.
    		len, err := binary.ReadUvarint(r)
    		if err != nil {
    			return err
    		}
    		if len > go122.MaxStringSize {
    			return fmt.Errorf("invalid string size %d, maximum is %d", len, go122.MaxStringSize)
    		}
    
    		// Copy out the string.
    		n, err := io.CopyN(&sb, r, int64(len))
    		if n != int64(len) {
    			return fmt.Errorf("failed to read full string: read %d but wanted %d", n, len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // Bisect supports the following command-line flags:
    //
    //	-max=M
    //
    // Stop after finding M minimal change sets. The default is no maximum, meaning to run until
    // all changes that provoke a failure have been identified.
    //
    //	-maxset=S
    //
    // Disallow change sets larger than S elements. The default is no maximum.
    //
    //	-timeout=D
    //
    // If the target runs for longer than duration D, stop the target and interpret that as a failure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. internal/s3select/unused-errors.go

    //
    // /////////////////////////////////////////////////////////////////////
    func errExpressionTooLong(err error) *s3Error {
    	return &s3Error{
    		code:       "ExpressionTooLong",
    		message:    "The SQL expression is too long: The maximum byte-length for the SQL expression is 256 KB.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errColumnTooLong(err error) *s3Error {
    	return &s3Error{
    		code:       "ColumnTooLong",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/internal/fuzz/fuzz.go

    	// after discovering a crasher. If zero, there will be no time limit. If
    	// MinimizeTimeout and MinimizeLimit are both zero, then minimization will
    	// be disabled.
    	MinimizeTimeout time.Duration
    
    	// MinimizeLimit is the maximum number of calls to the fuzz function to be
    	// made while minimizing after finding a crash. If zero, there will be no
    	// limit. Calls to the fuzz function made when minimizing also count toward
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/RegularImmutableMap.java

       * saving space.
       */
      @VisibleForTesting static final double MAX_LOAD_FACTOR = 1.2;
    
      /**
       * Maximum allowed false positive probability of detecting a hash flooding attack given random
       * input.
       */
      @VisibleForTesting static final double HASH_FLOODING_FPP = 0.001;
    
      /**
       * Maximum allowed length of a hash table bucket before falling back to a j.u.HashMap based
       * implementation. Experimentally determined.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top