Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 232 for factories (0.12 sec)

  1. src/math/big/nat.go

    			c = 0
    		}
    	}
    	if c != 0 {
    		subVV(z[:n], z[n:], m)
    	} else {
    		copy(z[:n], z[n:])
    	}
    	return z[:n]
    }
    
    // Fast version of z[0:n+n>>1].add(z[0:n+n>>1], x[0:n]) w/o bounds checks.
    // Factored out for readability - do not use outside karatsuba.
    func karatsubaAdd(z, x nat, n int) {
    	if c := addVV(z[0:n], z, x); c != 0 {
    		addVW(z[n:n+n>>1], z[n:], c)
    	}
    }
    
    // Like karatsubaAdd, but does subtract.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    In this context, that means you may not need a Gradle plugin to replace a Maven one.
    For example, the Maven Enforcer plugin allows you to control dependency versions and environmental factors, but these things can easily be configured in a normal Gradle build script.
    
    
    [[migmvn:custom_plugins]]
    == Dealing with uncommon and custom plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		if !primaryExists {
    			// The primary label key does not exist. This should not happen
    			// within our supported version skew range, when no external
    			// components/factors modifying the node object. Ignore this case.
    			continue
    		}
    		if secondaryExists && primaryValue != secondaryValue {
    			// Secondary label exists, but not consistent with the primary
    			// label. Need to reconcile.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm64/asm.go

    			return val | int64(o1), noExtReloc, isOk
    		} else if (val>>24)&0x3b == 0x39 {
    			// Mach-O ARM64_RELOC_PAGEOFF12
    			// patch ldr/str(b/h/w/d/q) (integer or vector) instructions, which have different scaling factors.
    			// Mach-O uses same relocation type for them.
    			shift := uint32(val) >> 30
    			if shift == 0 && (val>>20)&0x048 == 0x048 { // 128-bit vector load
    				shift = 4
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  5. doc/asm.html

    </li>
    
    <li>
    <code>64(DI)(BX*2)</code>: The location at address <code>DI</code> plus <code>BX*2</code> plus 64.
    These modes accept only 1, 2, 4, and 8 as scale factors.
    </li>
    
    </ul>
    
    <p>
    When using the compiler and assembler's
    <code>-dynlink</code> or <code>-shared</code> modes,
    any load or store of a fixed memory location such as a global variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  6. guava/src/com/google/common/base/Preconditions.java

       *    throw new BadException(badMsg(...));
       * }
       *
       * The alternative natural refactorings into void or Exception-returning methods are much slower.
       * This is a big deal - we're talking factors of 2-8 in microbenchmarks, not just 10-20%. (This is
       * a hotspot optimizer bug, which should be fixed, but that's a separate, big project).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. src/math/big/int.go

    	}
    
    	for {
    		if b.Cmp(intOne) == 0 {
    			return j
    		}
    		if len(a.abs) == 0 {
    			return 0
    		}
    		a.Mod(&a, &b)
    		if len(a.abs) == 0 {
    			return 0
    		}
    		// a > 0
    
    		// handle factors of 2 in 'a'
    		s := a.abs.trailingZeroBits()
    		if s&1 != 0 {
    			bmod8 := b.abs[0] & 7
    			if bmod8 == 3 || bmod8 == 5 {
    				j = -j
    			}
    		}
    		c.Rsh(&a, s) // a = 2^s*c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

       *    throw new BadException(badMsg(...));
       * }
       *
       * The alternative natural refactorings into void or Exception-returning methods are much slower.
       * This is a big deal - we're talking factors of 2-8 in microbenchmarks, not just 10-20%. (This is
       * a hotspot optimizer bug, which should be fixed, but that's a separate, big project).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/math/big/float_test.go

    // by the sign of the value to be rounded. Test that rounding happens after
    // the sign of a result has been set.
    // This test uses specific values that are known to fail if rounding is
    // "factored" out before setting the result sign.
    func TestFloatArithmeticRounding(t *testing.T) {
    	for _, test := range []struct {
    		mode       RoundingMode
    		prec       uint
    		x, y, want int64
    		op         byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            verify_size(window_strides.size(), "window strides") &&
            verify_size(padding.size(), "padding entries") &&
            verify_size(lhs_dilation.size(), "lhs dilation factors") &&
            verify_size(rhs_dilation.size(), "rhs dilation factors")))
        return std::nullopt;
    
      xla::Window window;
      for (size_t i = 0; i < window_dimensions.size(); i++) {
        auto dim = window.add_dimensions();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top