Searched refs:output (Results 226 - 250 of 1481) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/lib/webrick/httpauth/
H A Dhtpasswd.rb73 # Flush the password database. If +output+ is given the database will
76 def flush(output=nil)
77 output ||= @path
78 tmp = Tempfile.new("htpasswd", File::dirname(output))
82 File::rename(tmp.path, output)
/macosx-10.10.1/ruby-106/ruby/test/misc/
H A Dtest_ruby_mode.rb34 output = IO.popen([*EMACS, tmp.path, *exprs, err:[:child, :out]], "r") {|e| e.read}
38 return result, output
50 result, output = run_emacs(source, EXPR_INDENT, EXPR_SAVE)
51 assert_match(/^Wrote /, output)
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_commands_which_command.rb21 assert_equal "#{@foo_bar.full_gem_path}/lib/foo_bar.rb\n", @ui.output
34 assert_equal '', @ui.output
50 assert_equal "#{@foo_bar.full_gem_path}/lib/foo_bar.rb\n", @ui.output
64 assert_equal '', @ui.output
H A Dtest_gem_commands_query_command.rb35 assert_equal expected, @ui.output
63 assert_equal expected, @ui.output
82 assert_equal expected, @ui.output
101 assert_equal expected, @ui.output
138 assert_equal expected, @ui.output
181 assert_equal expected, @ui.output
194 assert_equal "true\n", @ui.output
207 assert_equal "false\n", @ui.output
222 assert_equal "true\n", @ui.output
235 assert_equal '', @ui.output
[all...]
H A Dtest_gem_commands_dependency_command.rb28 @ui.output
63 assert_equal expected, @ui.output
76 assert_equal "No gems found matching foo (>= 0)\n", @ui.output
92 assert_equal "bar --version '> 1'\n", @ui.output
118 assert_equal expected, @ui.output
147 assert_equal expected, @ui.output
166 assert_equal '', @ui.output
189 assert_equal "Gem foo-2\n bar (> 1)\n\n", @ui.output
207 assert_equal "Gem a-1\n\n", @ui.output
226 assert_equal "Gem a-2.a\n\n", @ui.output
[all...]
H A Dtest_gem_commands_sources_command.rb34 assert_equal expected, @ui.output
69 assert_equal expected, @ui.output
98 assert_equal expected, @ui.output
117 assert_equal expected, @ui.output
156 assert_equal expected, @ui.output
177 assert_equal expected, @ui.output
194 assert_equal expected, @ui.output
212 assert_equal expected, @ui.output
231 assert_equal expected, @ui.output
259 assert_equal "source cache successfully updated\n", @ui.output
[all...]
/macosx-10.10.1/vim-55/src/
H A Dos_vms_fix.com55 $ write sys$output "OS_VMS_FIX - DECC->VAXC pre-processor directive convert script"
56 $ write sys$output "Usage: @OS_VMS_FIX <filename_1> <filename_2> <...>"
57 $ write sys$output " @OS_VMS_FIX <filename with wildcard> <...>"
58 $ write sys$output ""
59 $ write sys$output "Example: @OS_VMS_FIX *.c *.h [.proto]*.pro"
60 $ write sys$output "Please note, you can define up to 8 parameters."
61 $ write sys$output ""
111 $ write sys$output "Parsing ''arg'..."
170 $ write sys$output "Filtering ''file'..."
178 $ open /write output 'tm
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/bind/serial/
H A DTupleSerialBinding.java72 TupleOutput output = getTupleOutput(object);
73 objectToKey(object, output);
74 outputToEntry(output, key);
H A DTupleSerialKeyCreator.java75 TupleOutput output = getTupleOutput(null);
78 if (createSecondaryKey(primaryKeyInput, dataInput, output)) {
79 outputToEntry(output, indexKeyEntry);
113 * keys which are optionally present, no tuple entry should be output to
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DPersistKeyAssigner.java51 * the Long sequence value using that format, the output data can then
58 RecordOutput output = new RecordOutput(catalog, rawAccess);
59 keyFieldFormat.writeObject(value, output, rawAccess);
60 TupleBase.outputToEntry(output, key);
H A DPersistEntityBinding.java112 RecordOutput output = new RecordOutput(catalog, rawAccess);
113 output.writePackedInt(format.getId());
114 format.writeObject(entity, output, rawAccess);
115 TupleBase.outputToEntry(output, data);
121 * Write the primary key field as a special case since the output
125 RecordOutput output = new RecordOutput(catalog, rawAccess);
128 format.writePriKey(entity, output, rawAccess);
129 TupleBase.outputToEntry(output, key);
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dutf8.c64 utf8_convert (bool to_utf, char const *input, char **output)
75 *output = xstrdup (input);
83 ob = *output = xmalloc (outlen);
63 utf8_convert(bool to_utf, char const *input, char **output) argument
/macosx-10.10.1/groff-38/groff/src/preproc/eqn/
H A Dspecial.cpp53 void output();
77 p->output();
105 void special_box::output() function in class:special_box
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgdataconsumer.py46 output = []
48 consumer = CGDataConsumerCreate(output, (putBytes, release))
62 self.failIfEqual(len(output), 0)
/macosx-10.10.1/ruby-106/ruby/lib/rexml/dtd/
H A Dentitydecl.rb44 def write( output, indent )
45 indent( output, indent )
46 output << to_s
/macosx-10.10.1/libxml2-26/libxml2/doc/
H A Dapibuild.py1711 def serialize_enum(self, output, name):
1713 output.write(" <enum name='%s' file='%s'" % (name,
1722 output.write(" value='%s'" % (val));
1724 output.write(" type='%s'" % info[2]);
1726 output.write(" info='%s'" % escape(info[1]));
1727 output.write("/>\n")
1729 def serialize_macro(self, output, name):
1731 output.write(" <macro name='%s' file='%s'>\n" % (name,
1737 output.write(" <info>%s</info>\n" % (escape(desc)))
1742 output
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/krb5/
H A Dprf.c48 krb5_data input, output; local
125 ret = krb5_crypto_prf(context, crypto, &input, &output);
135 tsize = min(dol, output.length);
136 memcpy(p, output.data, tsize);
139 krb5_data_free(&output);
/macosx-10.10.1/libxslt-13/libxslt/doc/
H A Dapibuild.py1506 def serialize_enum(self, output, name):
1508 output.write(" <enum name='%s' file='%s'" % (name,
1517 output.write(" value='%s'" % (val));
1519 output.write(" type='%s'" % info[2]);
1521 output.write(" info='%s'" % escape(info[1]));
1522 output.write("/>\n")
1524 def serialize_macro(self, output, name):
1526 output.write(" <macro name='%s' file='%s'>\n" % (name,
1532 output.write(" <info>%s</info>\n" % (escape(desc)))
1537 output
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dpunyref.c131 char output[] )
147 output[out++] = (char)
158 /* that have been output. */
160 if (b > 0) output[out++] = delimiter;
195 output[out++] = encode_digit(t + (q - t) % (base - t), 0);
199 output[out++] = encode_digit(q, case_flags && case_flags[j]);
219 punycode_uint output[],
234 /* copy the first b code points to the output. */
242 output[out++] = input[j];
251 /* out is the number of code points in the output arra
215 punycode_decode( punycode_uint input_length, const char input[], punycode_uint *output_length, punycode_uint output[], unsigned char case_flags[] ) argument
[all...]
/macosx-10.10.1/file_cmds-242/mtree/
H A Dcreate.c82 static void output(int, int *, const char *, ...) __printflike(3, 4);
180 output(indent, &offset, "type=%s", inotype(p->fts_statp->st_mode));
185 output(indent, &offset, "uname=%s", pw->pw_name);
195 output(indent, &offset, "uid=%u", p->fts_statp->st_uid);
201 output(indent, &offset, "gname=%s", gr->gr_name);
211 output(indent, &offset, "gid=%u", p->fts_statp->st_gid);
214 output(indent, &offset, "mode=%#o", p->fts_statp->st_mode & MBITS);
216 output(indent, &offset, "nlink=%u", p->fts_statp->st_nlink);
218 output(indent, &offset, "size=%jd",
221 output(inden
425 output(int indent, int *offset, const char *fmt, ...) function
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/gssapi/
H A Dtest_gssscram.c177 gss_buffer_desc cn, input, output, output2; local
224 &output, NULL, NULL);
229 if (output.length == 0)
230 errx(1, "output.length == 0");
232 maj_stat = gss_decapsulate_token(&output, GSS_SCRAM_MECHANISM, &output2);
243 gss_release_buffer(&min_stat, &output);
252 &output, NULL, NULL);
259 in.length = output.length;
260 in.data = output.value;
266 gss_release_buffer(&min_stat, &output);
[all...]
/macosx-10.10.1/OpenSSL098-52/src/test/
H A Dtestenc.com20 $ write sys$output "cat"
27 $ write sys$output "base64"
34 $ define/user sys$output 'test'-cipher-commands
39 $ write sys$output i
52 $ write sys$output i," base64"
/macosx-10.10.1/curl-83.1.2/curl/packages/vms/
H A Dmake_pcsi_curl_kit_name.com49 $ write sys$output "The logical name GNV_PCSI_PRODUCER needs to be defined."
50 $ write sys$output "This should be set to the common abbreviation or name of"
51 $ write sys$output "the entity creating this kit. If you are an individual"
52 $ write sys$output "then use your initials."
58 $ write sys$output "The logical name GNV_PCSI_PRODUCER_FULL_NAME needs to"
59 $ write sys$output "be defined. This should be set to the full name of"
60 $ write sys$output "the entity creating this kit. If you are an individual"
61 $ write sys$output "then use your name."
62 $ write sys$output "EX: DEFINE GNV_PCSI_PRODUCER_FULL_NAME ""First M. Last"""
66 $ write sys$output "*****"
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dconfigure.com14 $ write sys$output "Configuring for Alpha target"
20 []bfd-in2.h /output=[]bfd.h
84 $ write sys$output "Configuring for Vax target"
90 []bfd-in2.h /output=[]bfd.h
153 $ write sys$output "Generated `bfd.h' from `bfd-in2.h'."
167 $ write sys$output "Generated `targmatch.h'"
214 $ write sys$output "Generated `config.h'"
/macosx-10.10.1/sudo-73/src/
H A Dlbuf.c83 lbuf_init(lbuf, output, indent, continuation)
85 int (*output)__P((const char *));
89 lbuf->output = output;
250 lbuf->output(" ");
252 /* NUL-terminate cp for the output function and restore afterwards */
255 lbuf->output(cp);
270 lbuf->output(lbuf->continuation);
272 lbuf->output("\n");
294 lbuf->output(lbu
[all...]

Completed in 311 milliseconds

1234567891011>>