Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for libName (0.13 sec)

  1. src/go/scanner/scanner.go

    	// fractional part
    	if s.ch == '.' {
    		tok = token.FLOAT
    		if prefix == 'o' || prefix == 'b' {
    			s.error(s.offset, "invalid radix point in "+litname(prefix))
    		}
    		s.next()
    		digsep |= s.digits(base, &invalid)
    	}
    
    	if digsep&1 == 0 {
    		s.error(s.offset, litname(prefix)+" has no digits")
    	}
    
    	// exponent
    	if e := lower(s.ch); e == 'e' || e == 'p' {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. licenses/sigs.k8s.io/yaml/LICENSE

    # The forked go-yaml.v3 library under this project is covered by two
    different licenses (MIT and Apache):
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
Back to top