Searched refs:specs (Results 1 - 25 of 105) sorted by last modified time

12345

/macosx-10.10.1/bless-103/libbless/
H A Dbless.h755 BLUpdateBooterFileSpec *specs,
/macosx-10.10.1/bless-103/libbless/HFS/
H A DBLUpdateBooter.c44 BLUpdateBooterFileSpec *specs,
43 BLUpdateBooter(BLContextPtr context, const char * device, BLUpdateBooterFileSpec *specs, int32_t specCount) argument
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/vmx/
H A Dvmx_cpu.c75 vmx_is_cr0_valid(vmx_specs_t *specs) argument
78 return (0 == ((~cr0 & specs->cr0_fixed_0)|(cr0 & ~specs->cr0_fixed_1)));
86 vmx_is_cr4_valid(vmx_specs_t *specs) argument
89 return (0 == ((~cr4 & specs->cr4_fixed_0)|(cr4 & ~specs->cr4_fixed_1)));
136 vmx_specs_t *specs = &current_cpu_datap()->cpu_vmx.specs; local
141 if (specs->initialized)
144 specs
[all...]
H A Dvmx_cpu.h41 boolean_t initialized; /* the specs have already been read */
59 vmx_specs_t specs; /* this phys CPU's VMX specifications */ member in struct:vmx_cpu
/macosx-10.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.js327 var gutters = cm.display.gutters, specs = cm.options.gutters;
329 for (var i = 0; i < specs.length; ++i) {
330 var gutterClass = specs[i];
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcodemirror.js327 var gutters = cm.display.gutters, specs = cm.options.gutters;
329 for (var i = 0; i < specs.length; ++i) {
330 var gutterClass = specs[i];
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.81/lib/DateTime/Format/Builder/
H A DParser.pm223 my ( $options, @specs ) = @_;
227 # Organise the specs, and transform them into parsers.
228 my ( $lengths, $others ) = $class->sort_parsers( $options, \@specs );
292 my ( $options, $specs ) = @_;
295 for my $spec (@$specs) {
402 my $parser = $class->create_single_parser( %specs );
550 If any of the specs are not code or hash references, then it
/macosx-10.10.1/CPANInternal-159.1/DateTime-Format-Builder-0.81/lib/DateTime/Format/
H A DBuilder.pm59 # Turn groups of parser specs in to groups of parsers
61 my $specs = $args{groups};
64 for my $label ( keys %$specs ) {
65 my $parsers = $specs->{$label};
/macosx-10.10.1/cups-408/cups/systemv/
H A Dcupstestppd.c2941 const char *specs[1000]; /* Specifiers for profiles */ local
3043 specs[i]);
3057 specs[num_profiles] = attr->spec;
/macosx-10.10.1/IOPCIFamily-239.1.2/
H A DIOPCIMessagedInterruptController.cpp648 OSArray * specs; local
656 specs = OSDynamicCast(OSArray, device->getProperty(gIOInterruptSpecifiersKey));
658 if (!myName || !controllers || !specs) return (kIOReturnBadArgument);
661 (spec = OSDynamicCast(OSData, specs->getObject(index)))
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/
H A Ddependency_installer.rb186 specs = @available.all_specs
189 keep_names = specs.map { |spec| spec.full_name }
196 dependency_list.add(*specs)
197 to_do = specs.dup
202 dependency_list.specs.reject! { |spec|
268 # +version+. Returns an Array of specs and sources required for
H A Dspecification.rb665 specs = {}
667 specs[spec.full_name] ||= spec
670 specs[spec.full_name] ||= spec
673 @@all = specs.values
675 # After a reset, make sure already loaded specs
677 specs = {}
678 Gem.loaded_specs.each_value{|s| specs[s] = true}
679 @@all.each{|s| s.activated = true if specs[s]}
725 # Adds multiple specs to the known specifications.
727 def self.add_specs *specs
[all...]
H A Dserver.rb14 # * "/specs.#{Gem.marshal_version}.gz" - specs name/version/platform index
15 # * "/latest_specs.#{Gem.marshal_version}.gz" - latest specs
70 <%= values["specs"].map { |v| "<a href=\"##{v["name"]}\">#{v["name"]}</a>" }.join ', ' %>.
74 <% values["specs"].each do |spec| %>
481 specs = latest_specs.sort.map do |spec|
486 specs = Marshal.dump specs
489 specs = Gem.gzip specs
797 def specs(req, res) method
[all...]
H A Dspec_fetcher.rb16 # Cache of latest specs
21 # Cache of all released specs
23 attr_reader :specs # :nodoc:
26 # Cache of prerelease specs
41 @dir = File.join Gem.user_home, '.gem', 'specs'
49 @specs = {}
56 :released => @specs,
82 list.each do |source, specs|
83 found[source] = specs.select do |tup|
102 found.each do |source, specs|
[all...]
H A Dinstaller.rb287 @specs ||= begin
288 specs = []
292 specs << spec if spec
295 specs
H A Dtest_case.rb463 Gem::Specification.map # HACK: force specs to (re-)load before we write
539 # Install the provided specs
541 def install_specs(*specs)
542 Gem::Specification.add_specs(*specs)
547 # Installs the provided default specs including writing the spec file
549 def install_default_gems(*specs)
550 install_default_specs(*specs)
552 specs.each do |spec|
560 # Install the provided default specs
562 def install_default_specs(*specs)
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/
H A Drubygems.rb169 # finds the _latest_ version... regardless of loaded specs and their deps
267 specs = Gem::Dependency.new(name, requirements).matching_specs(true)
270 "can't find gem #{name} (#{requirements})" if specs.empty?
272 specs = specs.find_all { |spec|
276 unless spec = specs.last
1103 # Loads the default specs.
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_dependency_installer.rb313 Gem.done_installing do |installer, specs|
316 assert_equal [@a1, @b1], specs
981 def assert_resolve expected, *specs
983 util_setup_spec_fetcher(*specs)
987 inst.find_spec_by_name_and_version specs.first.name
994 def assert_resolve_pre expected, *specs
997 util_setup_spec_fetcher(*specs)
1000 spec = specs.first
H A Dtest_gem_server.rb272 data = StringIO.new "GET /specs.#{Gem.marshal_version} HTTP/1.0\r\n\r\n"
275 @server.specs @req, @res
287 data = StringIO.new "GET /specs.#{Gem.marshal_version} HTTP/1.0\r\n\r\n"
303 server.specs @req, @res
311 data = StringIO.new "GET /specs.#{Gem.marshal_version}.gz HTTP/1.0\r\n\r\n"
314 @server.specs @req, @res
H A Dtest_gem_source.rb27 @prerelease_specs, @specs = all.partition { |g| g.prerelease? }
35 s_zip = util_gzip(Marshal.dump(Gem::NameTuple.to_basic(@specs)))
38 @fetcher.data["#{@gem_repo}specs.#{v}.gz"] = s_zip
66 root = File.join Gem.user_home, '.gem', 'specs'
126 cache_dir = File.join Gem.user_home, '.gem', 'specs', 'gems.example.com%80'
129 cache_file = File.join cache_dir, "specs.#{Gem.marshal_version}"
141 cache_dir = File.join Gem.user_home, '.gem', 'specs', 'gems.example.com%80'
163 cache_dir = File.join Gem.user_home, '.gem', 'specs', 'gems.example.com%80'
H A Dtest_gem_spec_fetcher.rb28 @prerelease_specs, @specs = all.partition { |g| g.prerelease? }
36 s_zip = util_gzip(Marshal.dump(Gem::NameTuple.to_basic(@specs)))
39 @fetcher.data["#{@gem_repo}specs.#{v}.gz"] = s_zip
180 specs, _ = @sf.available_specs(:latest)
182 assert_equal [@source], specs.keys
183 assert_equal @latest_specs, specs[@source].sort
187 specs, _ = @sf.available_specs(:released)
189 assert_equal [@source], specs.keys
191 assert_equal @released, specs[@source].sort
195 specs,
[all...]
/macosx-10.10.1/apache-793/httpd/modules/dav/main/
H A Dmod_dav.h870 ** spec->name == NULL is the defined end-sentinel for a list of specs.
889 const dav_liveprop_spec *specs; member in struct:__anon5900
/macosx-10.10.1/ruby-106/ruby/lib/rubygems/commands/
H A Dpristine_command.rb67 specs = if options[:all] then
75 if specs.to_a.empty? then
87 specs.each do |spec|
H A Dquery_command.rb105 specs = Gem::Specification.find_all { |s|
109 spec_tuples = specs.map do |spec|
200 def entry_details entry, detail_tuple, specs, platforms
213 spec_loaded_from entry, spec, specs
241 name_tuples, specs = entry_tuples.flatten.partition do |item|
248 entry_details entry, detail_tuple, specs, platforms
273 def spec_loaded_from entry, spec, specs
276 if specs.length == 1 then
281 specs.each do |s|
H A Dspecification_command.rb58 specs = []
93 specs << Gem::Package.new(gem).spec rescue nil
96 if specs.empty? then
97 specs.push(*dep.matching_specs)
105 specs.push(*found.map { |spec,| spec })
108 if specs.empty? then
114 specs = [specs.sort_by { |s| s.version }.last]
117 specs.each do |s|

Completed in 267 milliseconds

12345