Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for radix (0.09 sec)

  1. guava/src/com/google/common/primitives/UnsignedBytes.java

      public static String toString(byte x, int radix) {
        checkArgument(
            radix >= Character.MIN_RADIX && radix <= Character.MAX_RADIX,
            "radix (%s) must be between Character.MIN_RADIX and Character.MAX_RADIX",
            radix);
        // Benchmarks indicate this is probably not worth optimizing.
        return Integer.toString(toInt(x), radix);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedBytes.java

      public static String toString(byte x, int radix) {
        checkArgument(
            radix >= Character.MIN_RADIX && radix <= Character.MAX_RADIX,
            "radix (%s) must be between Character.MIN_RADIX and Character.MAX_RADIX",
            radix);
        // Benchmarks indicate this is probably not worth optimizing.
        return Integer.toString(toInt(x), radix);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

      while (true) {
        probe_name.resize(probe_prefix_size);
        // TODO(jpienaar): Subtract one so that the initial suffix is 0 instead
        // of 1.
        // TODO(jpienaar): Switch to radix 36 and update tests.
        llvm::APInt(32, val++).toString(probe_name, /*Radix=*/10, /*Signed=*/false);
        if (IsUnique(probe_name)) {
          // Insert/find if prefix with appended number is unique.
          auto probe_name_it = name_to_count_.try_emplace(probe_name, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    		return
    	}
    	if s[0] != '0' {
    		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') {
    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/cmd/compile/internal/types2/expr.go

    		return
    	}
    	if s[0] != '0' {
    		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') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. pkg/controller/servicecidrs/servicecidrs_controller.go

    	} else {
    		logger.Info("Dropping ServiceCIDR out of the queue", "ServiceCIDR", key, "err", err)
    		c.queue.Forget(key)
    		utilruntime.HandleError(err)
    	}
    	return true
    }
    
    // syncCIDRs rebuilds the radix tree based from the informers cache
    func (c *Controller) syncCIDRs() error {
    	serviceCIDRList, err := c.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
    - 18K bytes
    - Viewed (0)
  7. hack/unwanted-dependencies.json

          "github.com/hashicorp/consul": "MPL license not in CNCF allowlist",
          "github.com/hashicorp/errwrap": "MPL license not in CNCF allowlist",
          "github.com/hashicorp/go-immutable-radix": "MPL license not in CNCF allowlist",
          "github.com/hashicorp/go-multierror": "MPL license not in CNCF allowlist",
          "github.com/hashicorp/go-retryablehttp": "MPL license not in CNCF allowlist",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/scalar.go

    	return naf
    }
    
    func (s *Scalar) signedRadix16() [64]int8 {
    	b := s.Bytes()
    	if b[31] > 127 {
    		panic("scalar has high bit set illegally")
    	}
    
    	var digits [64]int8
    
    	// Compute unsigned radix-16 digits:
    	for i := 0; i < 32; i++ {
    		digits[2*i] = int8(b[i] & 15)
    		digits[2*i+1] = int8((b[i] >> 4) & 15)
    	}
    
    	// Recenter coefficients:
    	for i := 0; i < 63; i++ {
    		carry := (digits[i] + 8) >> 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top