Searched refs:fetch (Results 1 - 25 of 168) sorted by relevance

1234567

/macosx-10.10/ruby-106/ruby/lib/drb/
H A Dtimeridconv.rb38 def fetch(key, dv=@sentinel) method in class:DRb.TimerIdConv.TimerHolder2
60 return @curr.fetch(key, @renew.fetch(key, @gc.fetch(key, @sentinel)))
90 @holder.fetch(ref)
/macosx-10.10/ruby-106/ruby/lib/yaml/
H A Ddbm.rb24 fetch( key )
38 # fetch( key, ifnone = nil )
39 # fetch( key, &block )
46 def fetch( keystr, ifnone = nil ) method in class:YAML.DBM
76 keys.collect { |k| fetch( k ) }
96 del_keys.delete_if { |k| yield( k, fetch( k ) ) == false }
112 keys.each { |k| yield k, fetch( k ) }
142 keys.each { |k| h[ self.fetch( k ) ] = k }
208 keys.each { |k| a.push [ k, self.fetch( k ) ] }
217 keys.each { |k| h[ k ] = self.fetch(
[all...]
/macosx-10.10/ruby-106/ruby/sample/drb/
H A Ddqout.rb2 distributed Ruby --- fetch
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dstore-int.h39 ssize_t (*fetch)(struct krb5_storage_data*, void*, size_t); member in struct:krb5_storage_data
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dcssmmds.cpp41 mCommon = common.fetch(Attribute("ModuleID") == mMyGuid, CSSMERR_CSSM_MDS_ERROR);
/macosx-10.10/CPANInternal-159.1/DBIx-ContextualFetch-1.03/t/
H A D01.t31 { # fetch
33 my @got1 = $sth->fetch;
34 is $got1[1], "Fred", 'fetch @';
35 my $got2 = $sth->fetch;
36 is $got2->[1], "Barney", 'fetch $';
95 $sth->fetch;
98 $sth->fetch;
/macosx-10.10/ruby-106/ruby/test/
H A Dtest_tsort.rb8 fetch(node).each(&block)
16 fetch(node).each(&block)
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/other/
H A Dtest-gdbm-1.tcl16 puts stdout "$key [gdbm fetch $db $key]"
22 set data [gdbm fetch $db $key]
38 set data [gdbm fetch $db $key]
H A Dtest-gdbm-2.tcl41 set data [gdbm fetch $db $key]
59 set data [gdbm fetch $db $key]
/macosx-10.10/ruby-106/ruby/test/drb/
H A Dut_timerholder.rb16 assert_equal(holder.fetch(key), nil)
18 assert_equal(holder.fetch(key), self)
20 assert_equal(holder.fetch(key), true)
/macosx-10.10/ruby-106/ruby/sample/
H A Dmine.rb64 if fetch(x,y) == 1 then @over = 1; return end
78 def fetch(x,y) method in class:Board.open
90 fetch(x-1,y-1)+fetch(x,y-1)+fetch(x+1,y-1)+
91 fetch(x-1,y) + fetch(x+1,y)+
92 fetch(x-1,y+1)+fetch(x,y+1)+fetch(
[all...]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_stream_ui.rb160 reporter.fetch 'a.gem', 1024
168 reporter.fetch 'a.gem', 1024
182 reporter.fetch 'a.gem', 1024
189 reporter.fetch 'a.gem', 1024
197 reporter.fetch 'a.gem', 1024
206 reporter.fetch 'a.gem', 1024
215 reporter.fetch 'a.gem', nil
224 reporter.fetch 'a.gem', 0
235 reporter.fetch 'a.gem', 1024
/macosx-10.10/xnu-2782.1.97/bsd/man/man9/
H A DMakefile15 fetch.9 \
/macosx-10.10/ruby-106/ruby/ext/dl/
H A Dextconf.rb38 size = types.fetch(size) {size}
/macosx-10.10/CPANInternal-159.1/DBIx-ContextualFetch-1.03/lib/DBIx/
H A DContextualFetch.pm57 sub fetch { subroutine
98 push @row, $cur while $sth->fetch;
126 my $row_ref = $sth->fetch;
127 my @row = $sth->fetch;
142 fetch methods to fix this oversight. It also adds a few new methods for
185 =head2 fetch
187 $row_ref = $sth->fetch;
188 @row = $sth->fetch;
190 A context sensitive version of fetch(). When in scalar context, it will
/macosx-10.10/BerkeleyDB-21/db/test/
H A Ddbm.tcl45 set d [berkdb fetch $str]
58 set d [berkdb fetch $key]
89 set d [berkdb fetch $key]
H A Dndbm.tcl48 set d [$db fetch $str]
61 set d [$db fetch $key]
104 set d [$db fetch $key]
/macosx-10.10/ruby-106/ruby/lib/rinda/
H A Drinda.rb76 def fetch(k) method in class:Rinda.Tuple
77 @tuple.fetch(k)
150 return false unless tuple.respond_to?(:fetch)
154 it = tuple.fetch(k)
/macosx-10.10/ruby-106/ruby/test/psych/
H A Dtest_yamldbm.rb94 assert_equal('bar', @yamldbm.fetch('foo'))
95 assert_nil @yamldbm.fetch('bar')
96 assert_equal('baz', @yamldbm.fetch('bar', 'baz'))
97 assert_equal('foobar', @yamldbm.fetch('bar') {|key| 'foo' + key })
/macosx-10.10/tcl-105/tcl_ext/tclresource/
H A DMakefile40 fetch extract wipe::
/macosx-10.10/ruby-106/ruby/ext/fiddle/
H A Dextconf.rb43 size = types.fetch(size) {size}
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/amazon-s3/
H A Dxsxp.tcl35 # xsxp::fetch $pxml $path ?$part?
177 proc fetch {pxml path {part %ALL}} { procedure
228 error "xsxp::fetch did not find requested PCDATA"
247 lappend res [fetch $pxml $path $part]
253 namespace export xsxp parse prettyprint fetch
/macosx-10.10/tcl-105/tcl_ext/
H A DFetch.make125 fetch_targets := fetch extract wipe install-license
151 fetch:: SRCROOT = $(CURDIR)
152 fetch:: $(SRCROOT)/$(Project)$(UrlExt)
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/lib/Class/DBI/
H A DIterator.pm29 Then, rather than having to fetch all the results at the same time, you
30 can fetch them one at a time, potentially saving a considerable amount
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D046RRDs.t55 RRDs::fetch($DB, "MAX",

Completed in 230 milliseconds

1234567