Searched refs:sources (Results 1 - 25 of 140) sorted by relevance

123456

/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Dsource_list.rb5 @sources = []
8 attr_reader :sources
23 @sources = @sources.dup
36 @sources << src
41 @sources.clear
51 @sources.each { |s| yield s.uri.to_s }
55 @sources.each(&b)
63 @sources.map { |x| x.uri.to_s }
69 @sources
[all...]
H A Dlocal_remote_options.rb73 # Add the --clear-sources option
76 add_option(:"Local/Remote", '--clear-sources',
77 'Clear the gem sources') do |value, options|
79 Gem.sources = nil
109 Gem.sources = [source]
111 Gem.sources << source unless Gem.sources.include?(source)
117 # Add the --update-sources option
120 add_option(:Deprecated, '-u', '--[no-]update-sources',
/macosx-10.9.5/file-46/file/python/
H A Dsetup.py8 sources = ['py_magic.c']) variable
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dmach_swapon.h38 #warning obsolete header file! Please delete the include from your sources.
H A Dvstat.h39 #warning obsolete header! delete the include from your sources
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_local_remote_options.rb17 args = %w[-l -r -b -B 10 --source http://gems.example.com -p --update-sources]
38 @cmd.handle_options %W[--clear-sources --source #{s}]
39 assert_equal [s.to_s], Gem.sources
46 @cmd.handle_options %W[--clear-sources]
47 assert_equal Gem.default_sources, Gem.sources
82 original_sources = Gem.sources.dup
90 assert_equal original_sources, Gem.sources
98 @cmd.handle_options %W[--update-sources]
102 @cmd.handle_options %W[--no-update-sources]
116 assert_equal [@gem_repo], Gem.sources
[all...]
H A Dtest_gem_source_list.rb18 assert_equal [Gem::Source.new(@uri)], sl.sources
30 assert_equal [source], sl.sources
37 assert_equal [@source], sl.sources
79 assert_equal @sl.sources, []
84 assert_equal @sl.sources, []
H A Dtest_gem_commands_environment_command.rb13 orig_sources = Gem.sources.dup
14 Gem.sources.replace %w[http://gems.example.com]
42 Gem.sources.replace orig_sources
94 orig_sources = Gem.sources.dup
95 Gem.sources.replace %w[http://gems.example.com]
107 Gem.sources.replace orig_sources
/macosx-10.9.5/libxml2-26/libxml2/vms/
H A Dbuild_libxml.com27 $! updated to work with current sources
45 $!- list of sources to be built into the LIBXML library. Compare this list
49 $ sources = "SAX.c entities.c encoding.c error.c parserInternals.c"
50 $ sources = sources + " parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c"
51 $ sources = sources + " valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c"
52 $ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c"
53 $ sources
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/vms/
H A Dbuild_libxml.com27 $! updated to work with current sources
45 $!- list of sources to be built into the LIBXML library. Compare this list
49 $ sources = "SAX.c entities.c encoding.c error.c parserInternals.c"
50 $ sources = sources + " parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c"
51 $ sources = sources + " valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c"
52 $ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c"
53 $ sources
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxslt/library/
H A Dxsltcache.tcl20 variable sources
21 array set sources {}
41 variable sources
85 set stylesheets($ssheet) [xslt::compile $sources($ssheet)]
91 set results($hash) [eval [list $stylesheets($ssheet)] transform [list $sources($src)] $parameters]
111 variable sources
118 if {[info exists sources($src)]} {
119 if {[file mtime $src] < $sources($src,time)} {
124 catch {dom::destroy $sources($src)}
126 set sources(
[all...]
/macosx-10.9.5/xnu-2422.115.4/libsyscall/xcodescripts/
H A Dcompile-syscalls.pl55 my @sources = <$f>;
56 chomp @sources;
82 for my $src (@sources) {
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/unix/
H A Dentropy.c76 int fd = source->sources.file.handle;
105 source->sources.file.handle = -1;
116 int fd = source->sources.usocket.handle;
119 size_t sz_to_recv = source->sources.usocket.sz_to_recv;
131 switch ( source->sources.usocket.status ) {
141 source->sources.usocket.status =
156 source->sources.usocket.status =
161 source->sources.usocket.status =
195 source->sources.usocket.status =
198 source->sources
[all...]
/macosx-10.9.5/ntp-88/lib/isc/unix/
H A Dentropy.c76 int fd = source->sources.file.handle;
105 source->sources.file.handle = -1;
116 int fd = source->sources.usocket.handle;
119 size_t sz_to_recv = source->sources.usocket.sz_to_recv;
131 switch ( source->sources.usocket.status ) {
141 source->sources.usocket.status =
156 source->sources.usocket.status =
161 source->sources.usocket.status =
195 source->sources.usocket.status =
198 source->sources
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/commands/
H A Dsources_command.rb13 super 'sources',
14 'Manage the sources and cache file RubyGems uses to search for gems'
20 add_option '-l', '--list', 'List sources' do |value, options|
29 'Remove all sources (clear the cache)' do |value, options|
84 if Gem.sources.include? source_uri then
88 Gem.sources << source
91 say "#{source_uri} added to sources"
105 unless Gem.sources.include? source_uri then
108 Gem.sources.delete source_uri
111 say "#{source_uri} removed from sources"
[all...]
/macosx-10.9.5/ruby-104/ruby/sample/
H A Dcoverage.rb28 sources = (readlines[sfile] rescue [])
35 if !sources[idx] || sources[idx].chomp != line.chomp
53 covs.zip(sources, pcovs).each_with_index do |(cov, line, pcov), idx|
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/admin/
H A Dcheck-style.sh165 sources=${@}
168 sources=$(find_sources)
172 for file in ${sources}; do
/macosx-10.9.5/cxxfilt-11/
H A Dmerge-lipo30 my @sources = @ARGV[0..$#ARGV-1];
50 foreach my $s (@sources)
87 foreach my $s (@sources) {
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/
H A D39load_namespaces_rt41083.t17 my $p = qr/already has a source, use register_extra_source for additional sources/;
24 [ sort DBICNSTest::RtBug41083->sources ],
45 ok(_chk_extra_sources_warning($warnings), 'expected no extra sources complaint') or diag($warnings);
64 ok(_chk_extra_sources_warning($warnings), 'expected no extra sources complaint') or diag($warnings);
/macosx-10.9.5/ncurses-42/ncurses/Ada95/
H A DMakefile.in44 sources \
/macosx-10.9.5/tcl-102/tcl/tcl/macosx/
H A Dconfigure.ac9 dnl include the configure sources from ../unix:
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A Dconfigure.ac9 dnl include the configure sources from ../unix:
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSourceMap.js82 sources: function() method in class:WebInspector.SourceMap
170 var sources = [];
172 for (var i = 0; i < map.sources.length; ++i) {
173 var originalSourceURL = map.sources[i];
177 sources.push(url);
185 var sourceURL = sources[sourceIndex];
209 sourceURL = sources[sourceIndex];
H A DContentProviders.js97 var sources = [];
100 sources.push(content);
101 if (sources.length == scripts.length)
102 callback(this._concatenateScriptsContent(scripts, sources), false, this._mimeType);
154 _concatenateScriptsContent: function(scripts, sources)
173 content += sources[i];
/macosx-10.9.5/WebKit2-7537.78.2/Platform/gtk/
H A DWorkQueueGtk.cpp189 // Set up the event sources under the mutex since this is shared across multiple threads.
192 Vector<SocketEventSource*> sources; local
195 sources = it->value;
197 sources.append(eventSource);
198 m_eventSources.set(fileDescriptor, sources);
215 Vector<SocketEventSource*> sources = it->value; local
216 for (unsigned i = 0; i < sources.size(); i++)
217 sources[i]->cancel();

Completed in 379 milliseconds

123456