Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for radix (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"ddb.console", []_C_int{9, 6}},
    	{"ddb.log", []_C_int{9, 7}},
    	{"ddb.max_line", []_C_int{9, 3}},
    	{"ddb.max_width", []_C_int{9, 2}},
    	{"ddb.panic", []_C_int{9, 5}},
    	{"ddb.profile", []_C_int{9, 9}},
    	{"ddb.radix", []_C_int{9, 1}},
    	{"ddb.tab_stop_width", []_C_int{9, 4}},
    	{"ddb.trigger", []_C_int{9, 8}},
    	{"fs.posix.setuid", []_C_int{3, 1, 1}},
    	{"hw.allowpowerdown", []_C_int{6, 22}},
    	{"hw.byteorder", []_C_int{6, 4}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. go.work.sum

    github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=
    github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=
    github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310 h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=
    github.com/aws/aws-sdk-go v1.35.24 h1:U3GNTg8+7xSM6OAJ8zksiSM4bRqxBWmVwwehvOSNG3A=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. go.mod

    	github.com/gorilla/websocket v1.5.2 // indirect
    	github.com/hashicorp/errwrap v1.1.0 // indirect
    	github.com/hashicorp/go-hclog v1.2.0 // indirect
    	github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
    	github.com/hashicorp/go-multierror v1.1.1 // indirect
    	github.com/hashicorp/go-uuid v1.0.3 // indirect
    	github.com/hashicorp/golang-lru v1.0.2 // indirect
    	github.com/jcmturner/aescts/v2 v2.0.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner.go

    			default:
    				base, prefix = 8, '0'
    				digsep = 1 // leading 0
    			}
    		}
    		digsep |= s.digits(base, &invalid)
    		if s.ch == '.' {
    			if prefix == 'o' || prefix == 'b' {
    				s.errorf("invalid radix point in %s literal", baseName(base))
    				ok = false
    			}
    			s.nextch()
    			seenPoint = true
    		}
    	}
    
    	// fractional part
    	if seenPoint {
    		kind = FloatLit
    		digsep |= s.digits(base, &invalid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  5. src/math/big/natconv.go

    // digit count. Incorrect placement of underscores is reported as an
    // error if there are no other errors. If base != 0, underscores are
    // not recognized and thus terminate scanning like any other character
    // that is not a valid radix point or digit.
    //
    //	number    = mantissa | prefix pmantissa .
    //	prefix    = "0" [ "b" | "B" | "o" | "O" | "x" | "X" ] .
    //	mantissa  = digits "." [ digits ] | digits | "." digits .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    qpon
    
    // quebec : 2013-12-19 PointQuébec Inc
    quebec
    
    // quest : 2015-03-26 XYZ.COM LLC
    quest
    
    // racing : 2014-12-04 Premier Registry Limited
    racing
    
    // radio : 2016-07-21 European Broadcasting Union (EBU)
    radio
    
    // read : 2014-12-18 Amazon Registry Services, Inc.
    read
    
    // realestate : 2015-09-11 dotRealEstate LLC
    realestate
    
    // realtor : 2014-05-29 Real Estate Domains LLC
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. src/encoding/base32/base32.go

    // Package base32 implements base32 encoding as specified by RFC 4648.
    package base32
    
    import (
    	"io"
    	"slices"
    	"strconv"
    )
    
    /*
     * Encodings
     */
    
    // An Encoding is a radix 32 encoding/decoding scheme, defined by a
    // 32-character alphabet. The most common is the "base32" encoding
    // introduced for SASL GSSAPI and standardized in RFC 4648.
    // The alternate "base32hex" encoding is used in DNSSEC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. src/encoding/base64/base64.go

    // Package base64 implements base64 encoding as specified by RFC 4648.
    package base64
    
    import (
    	"encoding/binary"
    	"io"
    	"slices"
    	"strconv"
    )
    
    /*
     * Encodings
     */
    
    // An Encoding is a radix 64 encoding/decoding scheme, defined by a
    // 64-character alphabet. The most common encoding is the "base64"
    // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/controller/repairip.go

    		r.cidrQueue.AddRateLimited(key)
    		return
    	}
    
    	klog.Warningf("Dropping ServiceCIDR %q out of the queue: %v", key, err)
    	r.cidrQueue.Forget(key)
    	runtime.HandleError(err)
    }
    
    // syncCIDRs rebuilds the radix tree based from the informers cache
    func (r *RepairIPAddress) syncCIDRs() error {
    	serviceCIDRList, err := r.serviceCIDRLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/text/scanner/scanner.go

    		if ch == '.' && s.Mode&ScanFloats != 0 {
    			ch = s.next()
    			seenDot = true
    		}
    	}
    
    	// fractional part
    	if seenDot {
    		tok = Float
    		if prefix == 'o' || prefix == 'b' {
    			s.error("invalid radix point in " + litname(prefix))
    		}
    		ch, ds = s.digits(ch, base, &invalid)
    		digsep |= ds
    	}
    
    	if digsep&1 == 0 {
    		s.error(litname(prefix) + " has no digits")
    	}
    
    	// exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top