Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 225 for DIGIT (0.04 sec)

  1. src/main/resources/fess_message.properties

    constraints.LuhnCheck.message               = The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed.
    constraints.Mod10Check.message              = The check digit for ${value} is invalid, Modulo 10 checksum failed.
    constraints.Mod11Check.message              = The check digit for ${value} is invalid, Modulo 11 checksum failed.
    constraints.ModCheck.message                = The check digit for ${value} is invalid, ${modType} checksum failed.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue9036.go

    // Expects to see error messages on 'p' exponents
    // for non-hexadecimal floats.
    
    package main
    
    import "fmt"
    
    const (
    	x1 = 1.1    // float
    	x2 = 1e10   // float
    	x3 = 0x1e10 // integer (e is a hex digit)
    )
    
    const x4 = 0x1p10 // valid hexadecimal float
    const x5 = 1p10   // ERROR "'p' exponent requires hexadecimal mantissa|invalid prefix"
    const x6 = 0P0    // ERROR "'P' exponent requires hexadecimal mantissa|invalid prefix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 805 bytes
    - Viewed (0)
  3. src/html/template/css.go

    			b, s = append(b, s[1:1+n]...), s[1+n:]
    		}
    	}
    	return b
    }
    
    // isHex reports whether the given character is a hex digit.
    func isHex(c byte) bool {
    	return '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F'
    }
    
    // hexDecode decodes a short hex digit sequence: "10" -> 16.
    func hexDecode(s []byte) rune {
    	n := '\x00'
    	for _, c := range s {
    		n <<= 4
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         */
        @Test
        void testMng6572() {
            String a = "20190126.230843"; // resembles a SNAPSHOT
            String b = "1234567890.12345"; // 10 digit number
            String c = "123456789012345.1H.5-beta"; // 15 digit number
            String d = "12345678901234567890.1H.5-beta"; // 20 digit number
    
            checkVersionsOrder(a, b);
            checkVersionsOrder(b, c);
            checkVersionsOrder(a, c);
            checkVersionsOrder(c, d);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InetAddresses.java

          throw new NumberFormatException();
        }
        int octet = 0;
        for (int i = start; i < end; i++) {
          octet *= 10;
          int digit = Character.digit(ipString.charAt(i), 10);
          if (digit < 0) {
            throw new NumberFormatException();
          }
          octet += digit;
        }
        if (octet > 255) {
          throw new NumberFormatException();
        }
        return (byte) octet;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/fmt/scan.go

    	}
    	return ""
    }
    
    // hexDigit returns the value of the hexadecimal digit.
    func hexDigit(d rune) (int, bool) {
    	digit := int(d)
    	switch digit {
    	case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    		return digit - '0', true
    	case 'a', 'b', 'c', 'd', 'e', 'f':
    		return 10 + digit - 'a', true
    	case 'A', 'B', 'C', 'D', 'E', 'F':
    		return 10 + digit - 'A', true
    	}
    	return -1, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue14636.go

    	checkLinkOutput("0x", "usage")
    	checkLinkOutput("0x0", "-B argument must have even number of digits")
    	checkLinkOutput("0x00", "usage")
    	checkLinkOutput("0xYZ", "-B argument contains invalid hex digit")
    	checkLinkOutput("0x"+strings.Repeat("00", 32), "usage")
    	checkLinkOutput("0x"+strings.Repeat("00", 33), "-B option too long (max 32 digits)")
    }
    
    func checkLinkOutput(buildid string, message string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //     \\d   matches any decimal digit
    //     \\D   matches any character that's not a decimal digit
    //     \\f   matches \f
    //     \\n   matches \n
    //     \\r   matches \r
    //     \\s   matches any ASCII whitespace, including \n
    //     \\S   matches any character that's not a whitespace
    //     \\t   matches \t
    //     \\v   matches \v
    //     \\w   matches any letter, _, or decimal digit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_stack_test.go

    	klog.Flush()
    	// Strip varying header. Code location should be constant and something
    	// that needs to be tested.
    	output := buffer.String()
    	output = regexp.MustCompile(`^.* ([^[:space:]]*.go:[[:digit:]]*)\] `).ReplaceAllString(output, `xxx $1] `)
    	fmt.Print(output)
    
    	// Output:
    	// xxx runtime_stack_test.go:60] "test" err="fake error" logger="UnhandledError" request=42
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top