Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 228 for Upper (0.03 sec)

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

    			Subsystem: subsystem,
    			Name:      "work_estimated_seats",
    			Help:      "Number of estimated seats (maximum of initial and final seats) associated with requests in API Priority and Fairness",
    			// the upper bound comes from the maximum number of seats a request
    			// can occupy which is currently set at 10.
    			Buckets:        []float64{1, 2, 4, 10},
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

            return supertypeOf(newArrayType(lowerBounds[0]));
          } else {
            Type[] upperBounds = wildcard.getUpperBounds();
            checkArgument(upperBounds.length == 1, "Wildcard should have only one upper bound.");
            return subtypeOf(newArrayType(upperBounds[0]));
          }
        }
        return JavaVersion.CURRENT.newArrayType(componentType);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

            int result = comparator.compare(version1, version2);
            if (inclusive) {
                return result <= 0;
            } else {
                // For non inclusive upper bound, we also check that the prefix does not match
                if (result <= -1) {
                    return !version1.toString().startsWith(version2.toString());
                } else {
                    return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
     * In both cases, if the pattern starts with an upper-case letter, it will be used to match
     * simple class name;
     * otherwise, it will be used to match full qualified class name.
     */
    public class TestSelectionMatcher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

        return success();
      }
    };
    
    using FoldBroadcastInDimBeforeMulOp =
        FoldBroadcastInDimBeforeBinaryElementwiseOp<mhlo::MulOp>;
    
    // Constant folds mhlo.mul, this folder doesn't have an upper limit on how many
    // elements can be folded.
    LogicalResult ConstantFoldMul(mhlo::MulOp op, PatternRewriter &rewriter) {
      ShapedType type = mlir::dyn_cast<ShapedType>(op.getType());
      Type etype = type.getElementType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/strconv/atof.go

    		if ok {
    			if !trunc {
    				return f, n, nil
    			}
    			// Even if the mantissa was truncated, we may
    			// have found the correct result. Confirm by
    			// converting the upper mantissa bound.
    			fUp, ok := eiselLemire32(mantissa+1, exp, neg)
    			if ok && f == fUp {
    				return f, n, nil
    			}
    		}
    	}
    
    	// Slow fallback.
    	var d decimal
    	if !d.set(s[:n]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  7. cmd/batch-handlers_gen.go

    				}
    			}
    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BatchJobRequest) Msgsize() (s int) {
    	s = 1 + 3 + msgp.StringPrefixSize + len(z.ID) + 5 + msgp.StringPrefixSize + len(z.User) + 8 + msgp.TimeSize + 10
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/math/big/natconv.go

    // the count value is used to determine the fractional part.
    //
    // For bases <= 36, lower and upper case letters are considered the same:
    // The letters 'a' to 'z' and 'A' to 'Z' represent digit values 10 to 35.
    // For bases > 36, the upper case letters 'A' to 'Z' represent the digit
    // values 36 to 61.
    //
    // A result digit count > 0 corresponds to the number of (non-prefix) digits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  9. src/cmd/internal/objabi/reloctype.go

    	// TODO(mundaym): remove once variants can be serialized - see issue 14218.
    	R_PCRELDBL
    
    	// Loong64.
    
    	// R_LOONG64_ADDR_HI resolves to the sign-adjusted "upper" 20 bits (bit 5-24) of an
    	// external address, by encoding it into the instruction.
    	// R_LOONG64_ADDR_LO resolves to the low 12 bits of an external address, by encoding
    	// it into the instruction.
    	R_LOONG64_ADDR_HI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                      type: string
                    error:
                      description: error is the last observed error during snapshot creation,
                        if any. This field could be helpful to upper level controllers(i.e.,
                        application controller) to decide whether they should continue on
                        waiting for the snapshot to be created based on the type of error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
Back to top