Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for radic (0.05 sec)

  1. src/mdo/reader-stax.vm

            entities.put("ni", "\u220b");
            entities.put("prod", "\u220f");
            entities.put("sum", "\u2211");
            entities.put("minus", "\u2212");
            entities.put("lowast", "\u2217");
            entities.put("radic", "\u221a");
            entities.put("prop", "\u221d");
            entities.put("infin", "\u221e");
            entities.put("ang", "\u2220");
            entities.put("and", "\u2227");
            entities.put("or", "\u2228");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

            entities.put("ni", "\u220b");
            entities.put("prod", "\u220f");
            entities.put("sum", "\u2211");
            entities.put("minus", "\u2212");
            entities.put("lowast", "\u2217");
            entities.put("radic", "\u221a");
            entities.put("prop", "\u221d");
            entities.put("infin", "\u221e");
            entities.put("ang", "\u2220");
            entities.put("and", "\u2227");
            entities.put("or", "\u2228");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⤏":                           "\u290f",
    	"⥤":                            "\u2964",
    	"∽̱":                            "\u223d\u0331",
    	"ŕ":                          "\u0155",
    	"√":                           "\u221a",
    	"⦳":                        "\u29b3",
    	"⟩":                            "\u27e9",
    	"⦒":                           "\u2992",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"rAtail;":                          '\U0000291C',
    		"rBarr;":                           '\U0000290F',
    		"rHar;":                            '\U00002964',
    		"racute;":                          '\U00000155',
    		"radic;":                           '\U0000221A',
    		"raemptyv;":                        '\U000029B3',
    		"rang;":                            '\U000027E9',
    		"rangd;":                           '\U00002992',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"nabla":    "\u2207",
    	"isin":     "\u2208",
    	"notin":    "\u2209",
    	"ni":       "\u220B",
    	"prod":     "\u220F",
    	"sum":      "\u2211",
    	"minus":    "\u2212",
    	"lowast":   "\u2217",
    	"radic":    "\u221A",
    	"prop":     "\u221D",
    	"infin":    "\u221E",
    	"ang":      "\u2220",
    	"and":      "\u2227",
    	"or":       "\u2228",
    	"cap":      "\u2229",
    	"cup":      "\u222A",
    	"int":      "\u222B",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/ParseRequest.java

    import com.google.common.annotations.GwtCompatible;
    
    /** A string to be parsed as a number and the radix to interpret it in. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class ParseRequest {
      final String rawValue;
      final int radix;
    
      private ParseRequest(String rawValue, int radix) {
        this.rawValue = rawValue;
        this.radix = radix;
      }
    
      static ParseRequest fromString(String stringValue) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedLongs.java

        }
        if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX) {
          throw new NumberFormatException("illegal radix: " + radix);
        }
    
        int maxSafePos = ParseOverflowDetection.maxSafeDigits[radix] - 1;
        long value = 0;
        for (int pos = 0; pos < string.length(); pos++) {
          int digit = Character.digit(string.charAt(pos), radix);
          if (digit == -1) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/UnsignedLongs.java

        }
        if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX) {
          throw new NumberFormatException("illegal radix: " + radix);
        }
    
        int maxSafePos = ParseOverflowDetection.maxSafeDigits[radix] - 1;
        long value = 0;
        for (int pos = 0; pos < string.length(); pos++) {
          int digit = Character.digit(string.charAt(pos), radix);
          if (digit == -1) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

        for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) {
          for (int i = 0; i <= 0xff; i++) {
            assertThat(UnsignedBytes.parseUnsignedByte(Integer.toString(i, radix), radix))
                .isEqualTo((byte) i);
          }
          assertParseFails(Integer.toString(1000, radix), radix);
          assertParseFails(Integer.toString(-1, radix), radix);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

        for (long a : UNSIGNED_INTS) {
          for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) {
            assertThat(UnsignedInts.parseUnsignedInt(Long.toString(a, radix), radix))
                .isEqualTo((int) a);
          }
        }
      }
    
      public void testParseIntWithRadixLimits() {
        // loops through all legal radix values.
        for (int radix = Character.MIN_RADIX; radix <= Character.MAX_RADIX; radix++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top