Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 168 for medan (0.11 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
        Failure getFailure();
    
        /**
         * Returns an exception that can be thrown when this problem should result in an error.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    	}
    	c *= 11.0 // allowed slack: 40% to 60% - we don't need to be perfectly random
    	mean := .5 * REP
    	stddev := .5 * math.Sqrt(REP)
    	low := int(mean - c*stddev)
    	high := int(mean + c*stddev)
    	for i := 0; i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Graph.java

                        cycle.removeLast();
                        stateMap.put(v, DfsState.VISITED);
                    } else if (state == DfsState.VISITING) {
                        // we are already visiting this vertex, this mean we have a cycle
                        int pos = cycle.lastIndexOf(v);
                        List<String> ret = cycle.subList(pos, cycle.size());
                        ret.add(v);
                        return ret;
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

      } else if (type == DT_QINT8) {
        qmin = -128.0;
        qmax = 127.0;
      } else {
        return absl::InvalidArgumentError("Only int8 and uint8 are considered.");
      }
      return std::make_pair((qmin - mean) / std, (qmax - mean) / std);
    }
    
    absl::Status RegisterCustomBuiltinOps(
        const std::vector<std::string> extra_tf_opdefs) {
      for (const auto& tf_opdefs_string : extra_tf_opdefs) {
        OpDef opdef;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. internal/rest/client.go

    			snapshot := *v
    			req.GetBody = func() (io.ReadCloser, error) {
    				r := snapshot
    				return io.NopCloser(&r), nil
    			}
    		default:
    			// This is where we'd set it to -1 (at least
    			// if body != NoBody) to mean unknown, but
    			// that broke people during the Go 1.8 testing
    			// period. People depend on it being 0 I
    			// guess. Maybe retry later. See Issue 18117.
    		}
    		// For client requests, Request.ContentLength of 0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/lib/panels.libsonnet

          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('s')
          + custom.withDrawStyle('bars')
          + timeSeries.standardOptions.withOverrides([
            fieldOverride.byRegexp.new('/mean/i')
            + fieldOverride.byRegexp.withProperty(
              'custom.fillOpacity',
              0
            )
            + fieldOverride.byRegexp.withProperty(
              'custom.lineStyle',
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

            def baselineResults = new BaselineVersion(name)
            baselineResults.results.name = name
            def rawResults = results.buildResult(name)
            def shift = rawResults.totalTime.median.value * maxPercentageShift / 100
            baselineResults.results.addAll(rawResults.collect {
                new MeasuredOperation([totalTime: Amount.valueOf(it.totalTime.value + shift, it.totalTime.units), exception: it.exception])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

      rewriter.replaceOp(concat_op, output_reshape_op.getResult());
    
      return success();
    }
    
    // ================== mean ========================
    
    // Currently NNAPI does not support mean op with different scales (quantization
    // cases), and in TFLite avg_pool will ensure the input & output has the same
    // scales.
    LogicalResult ReduceMeanToAvgPool::matchAndRewrite(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      // Tries to legalize the specified TensorFlow op, if supported.
      //
      // Emits an error and returns failure if an error is encountered during
      // conversion. Note that success return value doesn't mean successful
      // legalization.
      mlir::LogicalResult LegalizeOp();
    
      // Converts the given operand to expression of kind kConstant or kXlaOp.
      // Emits a remark and returns expression of kind kInvalid on failure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

                    }
                    cycle.removeLast();
                    stateMap.put(v, DfsState.VISITED);
                } else if (state == DfsState.VISITING) {
                    // we are already visiting this vertex, this mean we have a cycle
                    int pos = cycle.lastIndexOf(v.label);
                    List<String> ret = cycle.subList(pos, cycle.size());
                    ret.add(v.label);
                    return ret;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top