Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,165 for _lower (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    // and a bool indicating whether the bound is the item's lower bound.
    func (rap *relativeAllocProblem) decode(idx int) (float64, int, bool) {
    	itemIdx, lower := rap.getItemIndex(idx)
    	if lower {
    		return rap.items[itemIdx].relativeLowerBound, itemIdx, lower
    	}
    	return rap.items[itemIdx].relativeUpperBound, itemIdx, lower
    }
    
    func (rap *relativeAllocProblem) getProportion(idx int) float64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

      // Scan the function looking for these ops.
      for (Block& block : getOperation()) {
        for (Operation& op : block) {
          // If the operation is one of the control flow ops we know, lower it.
          // If we lower an operation, then the current basic block will be split,
          // and the operation will be removed, so we should continue looking at
          // subsequent blocks.
          //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

            when:
            succeeds("compileJava")
    
            then:
            bytecodeVersion() == TestJavaClassUtil.getClassVersion(lower.javaVersion)
        }
    
        def 'honors task level compatibility when using toolchain'() {
            given:
            def lower = getLowerJvm()
            def lowerVersion = lower.javaVersion.getMajorVersion()
    
            and:
            goodCode()
            buildFile << """
                java.toolchain {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Range.java

       * than {@code upper}.
       *
       * @throws IllegalArgumentException if {@code lower} is greater than <i>or equal to</i> {@code
       *     upper}
       * @throws ClassCastException if {@code lower} and {@code upper} are not mutually comparable
       * @since 14.0
       */
      public static <C extends Comparable<?>> Range<C> open(C lower, C upper) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. src/strconv/ftoa.go

    	// Either way, call it mantlo << explo-mantbits.
    	// Our lower bound is halfway between, mantlo*2+1 << explo-mantbits-1.
    	var mantlo uint64
    	var explo int
    	if mant > 1<<flt.mantbits || exp == minexp {
    		mantlo = mant - 1
    		explo = exp
    	} else {
    		mantlo = mant*2 - 1
    		explo = exp - 1
    	}
    	lower := new(decimal)
    	lower.Assign(mantlo*2 + 1)
    	lower.Shift(explo - int(flt.mantbits) - 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/unicode/letter.go

    		return properties[uint8(r)]&pLmask == pLu
    	}
    	return isExcludingLatin(Upper, r)
    }
    
    // IsLower reports whether the rune is a lower case letter.
    func IsLower(r rune) bool {
    	// See comment in IsGraphic.
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pLmask == pLl
    	}
    	return isExcludingLatin(Lower, r)
    }
    
    // IsTitle reports whether the rune is a title case letter.
    func IsTitle(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

            String lower = permission.toLowerCase(Locale.ROOT);
            final String aclPrefix;
            if (lower.startsWith(allowPrefix)) {
                lower = lower.substring(allowPrefix.length());
                permission = permission.substring(allowPrefix.length());
                aclPrefix = StringUtil.EMPTY;
            } else if (lower.startsWith(denyPrefix)) {
                lower = lower.substring(denyPrefix.length());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Populates TensorFlow lowering patterns to lower some of the TensorFlow
    // operations that can be represented using other TensorFlow operations.
    // TODO(laurenzo): For some reason, TFLite uses this pass and has exact
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

      }
    
      @CollectionSize.Require(SEVERAL)
      public void testLowerHole() {
        resetWithHole();
        assertEquals(null, navigableSet.lower(a));
        assertEquals(a, navigableSet.lower(b));
        assertEquals(a, navigableSet.lower(c));
      }
    
      @CollectionSize.Require(SEVERAL)
      public void testFloorHole() {
        resetWithHole();
        assertEquals(a, navigableSet.floor(a));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. src/internal/bytealg/equal_ppc64x.s

    	ANDCC	$PAGE_OFFSET, R4, R9
    	SUBC	R5, $8, R12		// 8-len
    	SLD	$3, R12, R14		// (8-len)*8
    	CMPU	R6, R12, CR1		// Enough bytes lower in the page to load lower?
    	CMPU	R9, R12, CR0
    	SUB	R12, R8, R6		// compute lower load address
    	SUB	R12, R4, R9
    	ISEL	CR1LT, R8, R6, R8	// R8 = R6 < 0 ? R8 (&s1) : R6 (&s1 - (8-len))
    	ISEL	CR0LT, R4, R9, R4	// Similar for s2
    	MOVD	(R8), R15
    	MOVD	(R4), R16
    	SLD	R14, R15, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top