HomeSort by relevance Sort by last modified time
    Searched defs:Distribution (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
Distribution.java 17 package org.apache.commons.math.distribution;
26 public interface Distribution {
29 * to this distribution, this method returns P(X ≤ x). In other words,
30 * this method represents the (cumulative) distribution function, or
31 * CDF, for this distribution.
33 * @param x the value at which the distribution function is evaluated.
35 * distribution takes a value less than or equal to <code>x</code>
43 * to this distribution, this method returns P(x0 &le; X &le; x1).
47 * @return the probability that a random variable with this distribution
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudfront/
test_connection.py 5 from boto.cloudfront.distribution import Distribution, DistributionConfig, DistributionSummary
98 <Distribution xmlns="http://cloudfront.amazonaws.com/doc/2010-11-01/">
115 </Distribution>
129 <Distribution xmlns="http://cloudfront.amazonaws.com/doc/2010-11-01/">
146 </Distribution>
152 self.assertTrue(isinstance(response, Distribution))
168 <Distribution xmlns="http://cloudfront.amazonaws.com/doc/2010-11-01/">
182 <Comment>example.com distribution</Comment>
185 </Distribution>
    [all...]
test_signed_urls.py 6 from boto.cloudfront.distribution import Distribution
32 self.dist = Distribution()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_dumb.py 16 from distutils.core import Distribution
57 dist = Distribution({'name': 'foo', 'version': '0.1',
test_build_py.py 9 from distutils.core import Distribution
35 dist = Distribution({"packages": ["pkg"],
72 # create the distribution files.
85 dist = Distribution({"packages": ["pkg"],
test_build_scripts.py 7 from distutils.core import Distribution
45 dist = Distribution()
test_install_scripts.py 7 from distutils.core import Distribution
18 dist = Distribution()
62 dist = Distribution()
test_bdist_rpm.py 11 from distutils.core import Distribution
63 dist = Distribution({'name': 'foo', 'version': '0.1',
108 dist = Distribution({'name': 'foo', 'version': '0.1',
test_upload.py 9 from distutils.core import Distribution
76 dist = Distribution()
89 dist = Distribution()
test_cmd.py 7 from distutils.dist import Distribution
18 dist = Distribution()
test_config.py 9 from distutils.core import Distribution
62 self.dist = Distribution()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_dumb.py 16 from distutils.core import Distribution
57 dist = Distribution({'name': 'foo', 'version': '0.1',
test_build_py.py 9 from distutils.core import Distribution
35 dist = Distribution({"packages": ["pkg"],
72 # create the distribution files.
85 dist = Distribution({"packages": ["pkg"],
test_build_scripts.py 7 from distutils.core import Distribution
45 dist = Distribution()
test_install_scripts.py 7 from distutils.core import Distribution
18 dist = Distribution()
62 dist = Distribution()
test_bdist_rpm.py 11 from distutils.core import Distribution
63 dist = Distribution({'name': 'foo', 'version': '0.1',
108 dist = Distribution({'name': 'foo', 'version': '0.1',
test_upload.py 9 from distutils.core import Distribution
76 dist = Distribution()
89 dist = Distribution()
test_cmd.py 7 from distutils.dist import Distribution
18 dist = Distribution()
test_config.py 9 from distutils.core import Distribution
62 self.dist = Distribution()
  /external/caliper/examples/src/main/java/examples/
ArraySortBenchmark.java 33 @Param private Distribution distribution; field in class:ArraySortBenchmark
39 values = distribution.create(length);
50 public enum Distribution {
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
core.py 5 indirectly provides the Distribution and Command classes, although they are
20 from distutils.dist import Distribution
64 Distribution instance; find and parse config files; parse the command
69 The Distribution instance might be an instance of a class supplied via
71 supplied, then the Distribution class (in dist.py) is instantiated.
73 attributes of the Distribution instance.
88 driven entirely by the Distribution object (which each command object
96 # Determine the distribution class -- either caller-supplied or
97 # our Distribution (see below).
102 klass = Distribution
    [all...]
  /external/v8/tools/
run-deopt-fuzzer.py 13 # with the distribution.
89 print "Using random distribution with seed %d" % seed
100 F1: Factor of the first derivation of the distribution function.
101 F2: Factor of the second derivation of the distribution function.
102 With F1 and F2 set to 0, the distribution will be equal.
125 # Project the distribution into the interval [0:M].
129 # distribution.
134 # Difference factor between actual and equal distribution.
142 def Distribution(options):
179 result.add_option("--distribution-factor1", help=("Factor of the first
    [all...]

Completed in 759 milliseconds

1 2 3