Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for 0o (0.18 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedNotGiven

    00000330  a6 7b 2c 92 7f db 58 c8  fa f9 2d 6b 00 25 dc 0a  |.{,...X...-k.%..|
    00000340  aa 13 e8 40 f3 fd 47 23  f6 bf 1c 30 fc 91 18 95  |...@..G#...0....|
    00000350  ac a8 82 3d f5 ef 17 03  03 00 99 7e 30 4f f1 00  |...=.......~0O..|
    00000360  1e dd eb c6 54 d2 f5 f7  21 aa 6b b0 83 0c fa 8b  |....T...!.k.....|
    00000370  12 af ac 15 3e 54 b6 1c  85 9b 0c 80 02 d8 e3 5f  |....>T........._|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/math/big/ratconv.go

    // floating-point number optionally followed by an exponent.
    // If a fraction is provided, both the dividend and the divisor may be a
    // decimal integer or independently use a prefix of “0b”, “0” or “0o”,
    // or “0x” (or their upper-case variants) to denote a binary, octal, or
    // hexadecimal integer, respectively. The divisor may not be signed.
    // If a floating-point number is provided, it may be in decimal form or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    \t]*)(?:null|~)[ \t]*(?=$|,|]|})/im,lookbehind:!0,alias:'important'},string:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)("|')(?:(?!\2)[^\\\r\n]|\\.)*\2(?=[ \t]*(?:$|,|]|}))/m,lookbehind:!0,greedy:!0},number:{pattern:/([:\-,[{]\s*(?:![^\s]+)?[ \t]*)[+-]?(?:0x[\da-f]+|0o[0-7]+|(?:\d+\.?\d*|\.?\d+)(?:e[+-]?\d+)?|\.inf|\.nan)[ \t]*(?=$|,|]|})/im,lookbehind:!0},tag:/![^\s]+/,important:/[&*][\w]+/,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./};...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    		return
    	}
    	radix := s[1]
    	if radix == 'b' || radix == 'B' {
    		check.versionErrorf(lit, go1_13, "binary literal")
    		return
    	}
    	if radix == 'o' || radix == 'O' {
    		check.versionErrorf(lit, go1_13, "0o/0O-style octal literal")
    		return
    	}
    	if lit.Kind != token.INT && (radix == 'x' || radix == 'X') {
    		check.versionErrorf(lit, go1_13, "hexadecimal floating-point literal")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/math/big/int.go

    //
    // The base argument must be 0 or a value between 2 and [MaxBase].
    // For base 0, the number prefix determines the actual base: A prefix of
    // “0b” or “0B” selects base 2, “0”, “0o” or “0O” selects base 8,
    // and “0x” or “0X” selects base 16. Otherwise, the selected base is 10
    // and no prefix is accepted.
    //
    // For bases <= 36, lower and upper case letters are considered the same:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    		}
    	case "0x":
    		// possibly a hexadecimal float
    		i := strings.LastIndexByte(x, 'P')
    		if i == -1 {
    			return lit // nothing to do
    		}
    		x = x[:i] + "p" + x[i+1:]
    	case "0O":
    		x = "0o" + x[2:]
    	case "0o":
    		return lit // nothing to do
    	case "0B":
    		x = "0b" + x[2:]
    	case "0b":
    		return lit // nothing to do
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    		return
    	}
    	radix := s[1]
    	if radix == 'b' || radix == 'B' {
    		check.versionErrorf(lit, go1_13, "binary literal")
    		return
    	}
    	if radix == 'o' || radix == 'O' {
    		check.versionErrorf(lit, go1_13, "0o/0O-style octal literal")
    		return
    	}
    	if lit.Kind != syntax.IntLit && (radix == 'x' || radix == 'X') {
    		check.versionErrorf(lit, go1_13, "hexadecimal floating-point literal")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/fmt/scan.go

    // It is called only if the verb is %v.
    func (s *ss) scanBasePrefix() (base int, digits string, zeroFound bool) {
    	if !s.peek("0") {
    		return 0, decimalDigits + "_", false
    	}
    	s.accept("0")
    	// Special cases for 0, 0b, 0o, 0x.
    	switch {
    	case s.peek("bB"):
    		s.consume("bB", true)
    		return 0, binaryDigits + "_", true
    	case s.peek("oO"):
    		s.consume("oO", true)
    		return 0, octalDigits + "_", true
    	case s.peek("xX"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. cmd/testdata/xl-meta-merge.zip

    £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ äªPartASizes‘Ñ ä¤SizeÑ ä¥MTimeÓ ¹ôb Îf­§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¬content-type¸application/octet-stream¤etagÙ 9fe7a344ef4227d3e537¡vÎeçnÐÎÍ  ‚Ù$73c9f651-f023-4566-b012-cc537fdb7ce2Ä’A0§i ˆ»°u•‡ðU ^sF" :5›…— ú >õ’È4> . çòH¯icaMLNpG¾ÙìpöÊ 4 ,A¼yL„cÁÐÚîÑðÍÉzêê ¼yL„c·ÀÀôñßÜïÖGþr Ž‡´’ª€¬µˆ G[ðõ‹©lI pNÈGš“ 0 $ ²€ùáDq µjuqZœÒÙ$1f163718-9bc5-4b01-bff7-5d8cf09caf10Ä’A0§i ˆ»°u•‡ðU ^sF" :5›…— ú >õ’È4>...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. doc/go_spec.html

    <p>
    An integer literal is a sequence of digits representing an
    <a href="#Constants">integer constant</a>.
    An optional prefix sets a non-decimal base: <code>0b</code> or <code>0B</code>
    for binary, <code>0</code>, <code>0o</code>, or <code>0O</code> for octal,
    and <code>0x</code> or <code>0X</code> for hexadecimal
    [<a href="#Go_1.13">Go 1.13</a>].
    A single <code>0</code> is considered a decimal zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top