Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 180 for Odd (0.04 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    # "pip tests" run a similar suite of tests the "nonpip" tests, but do something
    # odd to attempt to validate the quality of the pip package. The wheel is
    # installed into a virtual environment, and then that venv is used to run all
    # bazel tests with a special flag "--define=no_tensorflow_py_deps=true", which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat.go

    //
    // The Int must be odd. The number of significant bits (and nothing else) is
    // leaked through timing side-channels.
    func NewModulusFromBig(n *big.Int) (*Modulus, error) {
    	if b := n.Bits(); len(b) == 0 {
    		return nil, errors.New("modulus must be >= 0")
    	} else if b[0]&1 != 1 {
    		return nil, errors.New("modulus must be odd")
    	}
    	m := &Modulus{}
    	m.nat = NewNat().setBig(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    # "pip tests" run a similar suite of tests the "nonpip" tests, but do something
    # odd to attempt to validate the quality of the pip package. The wheel is
    # installed into a virtual environment, and then that venv is used to run all
    # bazel tests with a special flag "--define=no_tensorflow_py_deps=true", which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

         * `promisedStreamId` to which response frames will be delivered. Push promise frames are sent
         * as a part of the response to `streamId`.
         *
         * @param streamId client-initiated stream ID.  Must be an odd number.
         * @param promisedStreamId server-initiated stream ID.  Must be an even number.
         * @param requestHeaders minimally includes `:method`, `:scheme`, `:authority`, and `:path`.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{VMULOSD, 0xfc0007ff00000000, 0x100001c800000000, 0x0, // Vector Multiply Odd Signed Doubleword VX-form (vmulosd VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    	{VMULOUD, 0xfc0007ff00000000, 0x100000c800000000, 0x0, // Vector Multiply Odd Unsigned Doubleword VX-form (vmuloud VRT,VRA,VRB)
    		[6]*argField{ap_VecReg_6_10, ap_VecReg_11_15, ap_VecReg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/bidi/core.go

    //  - reordering array over line
    //
    // Note that for conformance to the Unicode Bidirectional Algorithm,
    // implementations are only required to generate correct reordering and
    // character directionality (odd or even levels) over a line. Generating
    // identical level arrays over a line is not required. Bidi explicit format
    // codes (LRE, RLE, LRO, RLO, PDF) and BN can be assigned arbitrary levels and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  7. cmd/storage-errors.go

    	}
    	if isSysErrHandleInvalid(err) {
    		return errFileNotFound
    	}
    	if isSysErrIO(err) {
    		return errFaultyDisk
    	}
    	if isSysErrInvalidArg(err) {
    		storageLogIf(context.Background(), err)
    		// For some odd calls with O_DIRECT reads
    		// filesystems can return EINVAL, handle
    		// these as FileNotFound instead.
    		return errFileNotFound
    	}
    	if isSysErrNoSpace(err) {
    		return errDiskFull
    	}
    	return err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/strings/replace.go

    // target string, without overlapping matches. The old string
    // comparisons are done in argument order.
    //
    // NewReplacer panics if given an odd number of arguments.
    func NewReplacer(oldnew ...string) *Replacer {
    	if len(oldnew)%2 == 1 {
    		panic("strings.NewReplacer: odd argument count")
    	}
    	return &Replacer{oldnew: append([]string(nil), oldnew...)}
    }
    
    func (r *Replacer) buildOnce() {
    	r.r = r.build()
    	r.oldnew = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. test/float_lit2.go

    // Float32 conversion rounds to the nearest float32, rounding to even mantissa:
    // between f₁ and f₂, values closer to f₁ round to f₁ and values closer to f₂ are rejected as out of range.
    // f₁ is an odd mantissa, so the halfway point (f₁+f₂)/2 rounds to f₂ and is rejected.
    // The halfway point is (f₁+f₂)/2 = 2¹²⁸ - 2¹⁰³.
    //
    // The same is true of float64, with different constants: s/24/53/ and s/128/1024/.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:39:47 UTC 2016
    - 7.9K bytes
    - Viewed (0)
  10. test-site/activator

      if ! is_cygwin; then
        echo "$(pwd -P)/$TARGET_FILE"
      else
        echo $(cygwinpath "$(pwd -P)/$TARGET_FILE")
      fi
    )
    }
    
    # TODO - Do we need to detect msys?
    
    # Uses uname to detect if we're in the odd cygwin environment.
    is_cygwin() {
      local os=$(uname -s)
      case "$os" in
        CYGWIN*) return 0 ;;
        *)  return 1 ;;
      esac
    }
    
    # This can fix cygwin style /cygdrive paths so we get the
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
Back to top