Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 272 for Digits (0.2 sec)

  1. src/time/format.go

    			}
    
    		case '.', ',': // ,000, or .000, or ,999, or .999 - repeated digits for fractional seconds.
    			if i+1 < len(layout) && (layout[i+1] == '0' || layout[i+1] == '9') {
    				ch := layout[i+1]
    				j := i + 1
    				for j < len(layout) && layout[j] == ch {
    					j++
    				}
    				// String of digits must end here - only fractional second is all digits.
    				if !isDigit(layout, j) {
    					code := stdFracSecond0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. fastapi/param_functions.py

                """
            ),
        ] = _Unset,
        max_digits: Annotated[
            Union[int, None],
            Doc(
                """
                Maximum number of allow digits for strings.
                """
            ),
        ] = _Unset,
        decimal_places: Annotated[
            Union[int, None],
            Doc(
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

        return Digit.INSTANCE;
      }
    
      /**
       * Determines whether a character is a BMP digit according to {@linkplain Character#isDigit(char)
       * Java's definition}. If you only care to match ASCII digits, you can use {@code inRange('0',
       * '9')}.
       *
       * @deprecated Many digits are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code JAVA_DIGIT})
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

        return Digit.INSTANCE;
      }
    
      /**
       * Determines whether a character is a BMP digit according to {@linkplain Character#isDigit(char)
       * Java's definition}. If you only care to match ASCII digits, you can use {@code inRange('0',
       * '9')}.
       *
       * @deprecated Many digits are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code JAVA_DIGIT})
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    		if t == "" {
    			break
    		}
    		if c, t, err = nextRune(t); err != nil {
    			return 0, "", err
    		}
    		if c == '{' {
    			// Any number of digits in braces.
    			// Perl accepts any text at all; it ignores all text
    			// after the first non-hex digit. We require only hex digits,
    			// and at least one.
    			nhex := 0
    			r = 0
    			for {
    				if t == "" {
    					break Switch
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	if hex.DecodedLen(len(val)) > maxLen {
    		Exitf("-B option too long (max %d digits): %s", maxLen, ov)
    	}
    
    	b, err := hex.DecodeString(val)
    	if err != nil {
    		if err == hex.ErrLength {
    			Exitf("-B argument must have even number of digits: %s", ov)
    		}
    		if inv, ok := err.(hex.InvalidByteError); ok {
    			Exitf("-B argument contains invalid hex digit %c: %s", byte(inv), ov)
    		}
    		Exitf("-B argument contains invalid hex: %s", ov)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    			}
    		}
    	}
    	return true, ""
    }
    
    func (ctxt *context) match(name string) bool {
    	if name == "" {
    		return false
    	}
    
    	// Tags must be letters, digits, underscores or dots.
    	// Unlike in Go identifiers, all digits are fine (e.g., "386").
    	for _, c := range name {
    		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
    			return false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation.go

    // * A name must not be empty, or contain '//', or start or end with '/'.
    // * Do not use the file name components '.' and '..'.
    // * Within a file name component, use only ASCII letters, '.', '-' and '_'.
    // * Do not use digits, as that might create an ambiguity with POSIX TZ strings.
    // * A file name component must not exceed 14 characters or start with '-'
    //
    // 0-9 and + characters are tolerated to accommodate legacy compatibility names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    		endpointPort,
    	)
    
    	// The part of name before the "__" can be up to 205 characters (as with
    	// servicePortChainNameBase above). An IPv6 address can be up to 39 characters, and
    	// a port can be up to 5 digits, plus 3 punctuation characters gives a max total
    	// length of 252, well over chainNameBaseLengthMax (240), so truncation is
    	// theoretically possible (though incredibly unlikely).
    	return hashAndTruncate(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // maxLengthMask is a mask for the maxLength value.
    const maxLengthMask = 0x1f << maxLengthShift
    
    // MaxLength returns an Option that limits the maximum length of a
    // demangled string. The maximum length is expressed as a power of 2,
    // so a value of 1 limits the returned string to 2 characters, and
    // a value of 16 limits the returned string to 65,536 characters.
    // The value must be between 1 and 30.
    func MaxLength(pow int) Option {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top