Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,172 for conditional (0.19 sec)

  1. pkg/istio-agent/xds_proxy.go

    		//
    		// To prevent these issues, we need to either:
    		// 1. Apply backpressure directly to Envoy requests or Istiod pushes
    		// 2. Make part of the system unbounded
    		//
    		// (1) is challenging because we cannot do a conditional Recv (for Envoy requests), and changing
    		// the control plane requires substantial changes. Instead, we make the requests channel
    		// unbounded. This is the least likely to cause issues as the messages we store here are the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. docs/recipes.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client: OkHttpClient = OkHttpClient.Builder()
              .cache(Cache(
                  directory = cacheDirectory,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/html.go

            ...document.querySelectorAll('polygon'),
        ];
    
        // Iterate over the svgParts specifically looking for white and black fill/stroke to be toggled.
        // The verbose conditional is intentional here so that we do not mutate any svg path, ellipse, or polygon that is of any color other than white or black.
        svgParts.forEach(el => {
            if (el.attributes.stroke.value === 'white') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat.go

    func (out *Nat) ExpShortVarTime(x *Nat, e uint, m *Modulus) *Nat {
    	// For short exponents, precomputing a table and using a window like in Exp
    	// doesn't pay off. Instead, we do a simple conditional square-and-multiply
    	// chain, skipping the initial run of zeroes.
    	xR := NewNat().set(x).montgomeryRepresentation(m)
    	out.set(xR)
    	for i := bits.UintSize - bitLen(e) + 1; i < bits.UintSize; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/scalar_fiat.go

    //
    // Bounds: [[0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff], [0x0 ~> 0xffffffffffffffff]]
    type fiatScalarNonMontgomeryDomainFieldElement [4]uint64
    
    // fiatScalarCmovznzU64 is a single-word conditional move.
    //
    // Postconditions:
    //
    //	out1 = (if arg1 = 0 then arg2 else arg3)
    //
    // Input Bounds:
    //
    //	arg1: [0x0 ~> 0x1]
    //	arg2: [0x0 ~> 0xffffffffffffffff]
    //	arg3: [0x0 ~> 0xffffffffffffffff]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 35.6K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MOVFD", argLength: 1, reg: fp11, asm: "MOVFD"},  // float32 -> float64
    		{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"},  // float64 -> float32
    
    		// conditional instructions, for lowering shifts
    		{name: "CMOVWHSconst", argLength: 2, reg: gp1flags1, asm: "MOVW", aux: "Int32", resultInArg0: true}, // replace arg0 w/ const if flags indicates HS, arg1=flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  9. src/internal/bytealg/index_ppc64x.s

    // This works on power8 and above. The loads and
    // compares are done in big endian order
    // since that allows the used of VCLZD, and allows
    // the same implementation to work on big and little
    // endian platforms with minimal conditional changes.
    
    // NOTE: There is a power9 implementation that
    // improves performance by 10-15% on little
    // endian for some of the benchmarks.
    // Unrolled index2to16 loop by 4 on ppc64le/power9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (GTZ (MOVWconst [c]) yes no) && c <= 0 => (First no yes)
    (GEZ (MOVWconst [c]) yes no) && c >= 0 => (First yes no)
    (GEZ (MOVWconst [c]) yes no) && c <  0 => (First no yes)
    
    // conditional move
    (CMOVZ _ f (MOVWconst [0])) => f
    (CMOVZ a _ (MOVWconst [c])) && c!=0 => a
    (CMOVZzero _ (MOVWconst [0])) => (MOVWconst [0])
    (CMOVZzero a (MOVWconst [c])) && c!=0 => a
    (CMOVZ a (MOVWconst [0]) c) => (CMOVZzero a c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
Back to top