Searched refs:spec (Results 1 - 25 of 453) sorted by relevance

1234567891011>>

/macosx-10.9.5/dtrace-118.1/test/tst/common/docsExamples/
H A Dspecopen.d43 self->spec = speculation();
44 speculate(self->spec);
50 /self->spec/
52 speculate(self->spec);
57 /self->spec/
59 speculate(self->spec);
65 /self->spec && errno != 0/
67 commit(self->spec);
68 self->spec = 0;
73 /self->spec
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/common/speculation/
H A Dtst.DiscardAftDataRec.d41 self->spec = speculation();
42 printf("Speculative buffer ID: %d\n", self->spec);
48 discard(self->spec);
H A Derr.D_DREC_COMM.DataRecAftCommit.d47 self->spec = speculation();
51 /self->spec/
53 speculate(self->spec);
54 printf("Called speculate with id: %d\n", self->spec);
59 /(self->spec) && (self->speculateFlag)/
61 commit(self->spec);
H A Dtst.NoSpecBuffer.d47 self->spec = speculation();
48 printf("Speculative buffer ID: %d\n", self->spec);
53 /(2 == i) && (0 == self->spec)/
55 printf("i: %d\tself->spec: %d", i, self->spec);
60 /(2 == i) && (0 != self->spec)/
62 printf("i: %d\tself->spec: %d", i, self->spec);
H A Derr.D_COMM_DREC.CommitAftDataRec.d41 self->spec = speculation();
42 printf("Speculative buffer ID: %d\n", self->spec);
49 commit(self->spec);
H A Dtst.ExitAftDiscard.d40 self->spec = speculation();
44 /self->spec/
46 speculate(self->spec);
54 discard(self->spec);
H A Dtst.zerosize.d33 self->spec = speculation();
34 speculate(self->spec);
42 speculate(self->spec);
47 speculate(self->spec);
H A Derr.NegativeSpecSize.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
H A Derr.D_EXIT_SPEC.ExitAftSpec.d44 self->spec = speculation();
48 /self->spec/
50 speculate(self->spec);
H A Derr.D_SPEC_DREC.SpecAftDataRec.d44 self->spec = speculation();
48 /self->spec/
51 speculate(self->spec);
H A Derr.D_DREC_COMM.ExitAfterCommit.d40 self->spec = speculation();
44 /self->spec/
46 speculate(self->spec);
54 commit(self->spec);
H A Dtst.SpeculationWithZero.d42 self->spec = speculation();
43 self->spec = speculation();
44 printf("Speculative buffer ID: %d\n", self->spec);
49 speculate(self->spec);
H A Derr.D_PRAGMA_OPTSET.InvalidSpecSize.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
H A Derr.NegativeNspec.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
H A Dtst.DataRecAftDiscard.d43 self->spec = speculation();
47 /self->spec/
49 speculate(self->spec);
50 printf("Called speculate with id: %d\n", self->spec);
55 /(self->spec) && (self->speculateFlag)/
57 discard(self->spec);
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Dsource_specific_file.rb7 @spec = @package.spec
8 @name = @spec.name_tuple
11 attr_reader :spec
18 return @spec if name == @name
20 @spec
23 def download(spec, dir=nil)
24 return @path if spec == @spec
25 raise Gem::Exception, "Unable to download '#{spec
[all...]
H A Dinstaller_test_case.rb59 attr_writer :spec
75 # @spec::
76 # a spec named 'a', intended for regular installs
78 # a spec named 'b', intended for user installs
81 # the path to a built gem from @spec
86 # a Gem::Installer for the @spec that installs into @gemhome
93 @spec = quick_gem 'a' do |spec|
94 util_make_exec spec
97 @user_spec = quick_gem 'b' do |spec|
[all...]
H A Duninstaller.rb39 attr_reader :spec
71 # Performs the uninstall of the gem. This removes the spec, the Gem
83 Gem::Specification.each_spec dirs do |spec|
84 next unless dependency.matches_spec? spec
86 list << spec
89 default_specs, list = list.partition do |spec|
90 spec.default_gem?
93 list, other_repo_specs = list.partition do |spec|
94 @gem_home == spec.base_dir or
95 (@user_install and spec
[all...]
/macosx-10.9.5/CPANInternal-140/Params-Validate/t/
H A D24-tied.t23 my %spec = ( foo => 1 );
26 eval { validate( @p, \%spec ) };
28 is( $@, q{}, 'validate() call succeeded with tied params array and regular hashref spec' );
34 skip 'Params::Validate segfaults with tied hash for spec', 1;
37 tie my %spec, 'Tie::SimpleHash';
39 $spec{foo} = 1;
42 eval { validate( @p, \%spec ) };
44 is( $@, q{}, 'validate() call succeeded with regular params array and tied hashref spec' );
49 skip 'Params::Validate segfaults with tied hash for spec', 1;
52 tie my %spec, 'Ti
[all...]
H A D23-readonly.t22 Readonly my $spec => { foo => 1 };
25 eval { validate( @p, $spec ) };
26 is( $@, q{}, 'validate() call succeeded with Readonly spec hashref' );
30 Readonly my $spec => { type => SCALAR };
33 eval { validate_pos( @p, $spec ) };
34 is( $@, q{}, 'validate_pos() call succeeded with Readonly spec hashref' );
/macosx-10.9.5/dtrace-118.1/test/tst/common/buffering/
H A Dtst.resize3.d56 spec = speculation();
61 speculate(spec);
67 commit(spec);
H A Derr.resize3.d45 spec = speculation();
50 speculate(spec);
56 commit(spec);
/macosx-10.9.5/dtrace-118.1/test/tst/common/drops/
H A Ddrp.DTRACEDROP_SPEC.d35 spec = speculation();
36 speculate(spec);
42 commit(spec);
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_config.rb8 spec = Gem::Specification.find_by_name("a")
9 spec.activate
10 assert_equal "#{spec.full_gem_path}/data/a", Gem.datadir('a')
/macosx-10.9.5/iodbc-42.5/iodbc/admin/
H A DMakefile.am75 libiodbc.spec.in \
82 noinst_SCRIPTS = libiodbc.spec

Completed in 154 milliseconds

1234567891011>>