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

1 2

  /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
  /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()
support.py 13 from distutils.core import Distribution
105 - a Distribution instance using keywords
108 It returns the package directory and the distribution
114 dist = Distribution(attrs=kw)
test_install.py 15 from distutils.core import Distribution
39 dist = Distribution({"name": "foopkg"})
101 dist = Distribution({'name': 'xx'})
127 dist = Distribution({'name': 'xx', 'extra_path': 'path,dirs'})
155 dist = Distribution({'name': 'xx'})
  /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()
support.py 13 from distutils.core import Distribution
105 - a Distribution instance using keywords
108 It returns the package directory and the distribution
114 dist = Distribution(attrs=kw)
test_install.py 15 from distutils.core import Distribution
39 dist = Distribution({"name": "foopkg"})
101 dist = Distribution({'name': 'xx'})
127 dist = Distribution({'name': 'xx', 'extra_path': 'path,dirs'})
155 dist = Distribution({'name': 'xx'})
  /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...]
cmd.py 56 from distutils.dist import Distribution
58 if not isinstance(dist, Distribution):
59 raise TypeError, "dist must be a Distribution instance"
63 self.distribution = dist
68 # commands fall back on the Distribution's behaviour. None means
69 # "not defined, check self.distribution's copy", while 0 or 1 mean
101 return getattr(self.distribution, attr)
297 src_cmd_obj = self.distribution.get_command_obj(src_cmd)
306 """Wrapper around Distribution's 'get_command_obj()' method: find
311 cmd_obj = self.distribution.get_command_obj(command, create
    [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.
87 print "Using random distribution with seed %d" % seed
98 F1: Factor of the first derivation of the distribution function.
99 F2: Factor of the second derivation of the distribution function.
100 With F1 and F2 set to 0, the distribution will be equal.
123 # Project the distribution into the interval [0:M].
127 # distribution.
132 # Difference factor between actual and equal distribution.
140 def Distribution(options):
174 result.add_option("--distribution-factor1", help=("Factor of the first
    [all...]

Completed in 226 milliseconds

1 2