Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for filterFast (0.09 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            AdditionalClasspath fastFiltered = filterFast(classpath, modulepath, unfiltered);
    
            if (fastFiltered.isEmpty()) {
                return fastFiltered;
            }
    
            return filterSlow(classpath, modulepath, fastFiltered);
        }
    
        /**
         * Filters additional modules based on jar file names.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        APFloat cst_value = *cst.value_begin<APFloat>();
    
        // Affine op.
        Value filter = fc_op.getFilter();
        Value bias = fc_op.getBias();
        DenseFPElementsAttr filter_cst, bias_cst;
        if (!matchPattern(filter, m_Constant(&filter_cst))) {
          // The filter maybe quantized, then we should set it to the real constant.
          auto dq = llvm::dyn_cast_or_null<DequantizeOp>(filter.getDefiningOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    }
    
    internal fun Exception.withSuppressed(suppressed: List<Exception>): Throwable =
      apply {
        for (e in suppressed) addSuppressed(e)
      }
    
    internal inline fun <T> Iterable<T>.filterList(predicate: T.() -> Boolean): List<T> {
      var result: List<T> = emptyList()
      for (i in this) {
        if (predicate(i)) {
          if (result.isEmpty()) result = mutableListOf()
          (result as MutableList<T>).add(i)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top