Searched refs:options (Results 201 - 225 of 3434) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/lib/
H A Dfileutils.rb15 # cd(dir, options)
16 # cd(dir, options) {|dir| .... }
18 # mkdir(dir, options)
19 # mkdir(list, options)
20 # mkdir_p(dir, options)
21 # mkdir_p(list, options)
22 # rmdir(dir, options)
23 # rmdir(list, options)
24 # ln(old, new, options)
25 # ln(list, destdir, options)
1622 def FileUtils.options singleton method in class:copy_entry
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dauth.c63 #include "auth-options.h"
77 extern ServerOptions options;
110 if (!options.use_pam)
113 if (!options.use_pam && spw != NULL && auth_shadow_acctexpired(spw))
130 if (!options.use_pam && passwd && *passwd) {
160 if (options.chroot_directory == NULL ||
161 strcasecmp(options.chroot_directory, "none") == 0) {
181 if (options.num_deny_users > 0 || options.num_allow_users > 0 ||
182 options
[all...]
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDDevicePlugIn.h196 @param options Option bits to be passed down to the user client.
199 IOReturn (*open)(void * self, IOOptionBits options);
205 @param options Option bits to be passed down to the user client.
208 IOReturn (*close)(void * self, IOOptionBits options);
248 @param options Reserved for future use. Ignored in current implementation. Set to zero.
251 IOReturn (*copyMatchingElements)(void * self, CFDictionaryRef matchingDict, CFArrayRef * pElements, IOOptionBits options);
267 @param options Reserved for future use. Ignored in current implementation. Set to zero.
271 uint32_t timeout, IOHIDValueCallback callback, void * context, IOOptionBits options);
288 @param options Reserved for future use. Ignored in current implementation. Set to zero.
292 uint32_t timeout, IOHIDValueCallback callback, void * context, IOOptionBits options);
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/commands/
H A Dcert_command.rb38 'Add a trusted certificate.') do |cert, options|
39 options[:add] << cert
44 'subject contains FILTER') do |filter, options|
47 options[:list] << filter
52 'subject contains FILTER') do |filter, options|
53 options[:remove] << filter
58 'certificate for EMAIL_ADDR') do |email_address, options|
59 options[:build] << email_address
63 'Signing certificate for --sign') do |cert, options|
64 options[
[all...]
H A Dpristine_command.rb19 'condition') do |value, options|
20 options[:all] = value
25 'in addition to regular gems') do |value, options|
26 options[:extensions] = value
30 'Only restore executables') do |value, options|
31 options[:only_executables] = value
67 specs = if options[:all] then
71 Gem::Specification.find_all_by_name gem_name, options[:version]
77 "Failed to find gems #{options[:args]} #{options[
[all...]
H A Dquery_command.rb20 'Check for installed gem') do |value, options|
21 options[:installed] = value
24 add_option('-I', 'Equivalent to --no-installed') do |value, options|
25 options[:installed] = false
32 'provided REGEXP') do |value, options|
33 options[:name] = /#{value}/i
37 'Display detailed information of gem(s)') do |value, options|
38 options[:details] = value
42 'Display only gem names') do |value, options|
43 options[
[all...]
H A Dsetup_command.rb21 'Used for changelog processing' do |version, options|
22 options[:previous_version] = version
27 'Will not affect gem repository location' do |prefix, options|
28 options[:prefix] = File.expand_path prefix
33 'Mainly used for packaging RubyGems' do |destdir, options|
34 options[:destdir] = File.expand_path destdir
38 'Install into vendorlibdir not sitelibdir' do |vendor, options|
39 options[:site_or_vendor] = vendor ? :vendorlibdir : :sitelibdir
44 'If ruby is ruby18, gem will be gem18' do |value, options|
45 options[
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rubygems/
H A Drdoc.rb145 # and following the given +options+.
149 def document generator, options, destination
152 options = options.dup
153 options.exclude ||= [] # TODO maybe move to RDoc::Options#finish
154 options.setup_generator generator
155 options.op_dir = destination
156 options.finish
158 generator = options.generator.new @rdoc.store, options
[all...]
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorkerScriptLoader.cpp69 ThreadableLoaderOptions options; local
70 options.allowCredentials = AllowStoredCredentials;
71 options.crossOriginRequestPolicy = crossOriginRequestPolicy;
72 options.sendLoadCallbacks = SendCallbacks;
74 WorkerThreadableLoader::loadResourceSynchronously(static_cast<WorkerContext*>(scriptExecutionContext), *request, *this, options); local
87 ThreadableLoaderOptions options;
88 options.allowCredentials = AllowStoredCredentials;
89 options.crossOriginRequestPolicy = crossOriginRequestPolicy;
90 options.sendLoadCallbacks = SendCallbacks;
94 m_threadableLoader = ThreadableLoader::create(scriptExecutionContext, this, *request, options);
[all...]
/macosx-10.9.5/ruby-104/ruby/sample/openssl/
H A Decho_cli.rb7 options = ARGV.getopts("p:c:k:C:")
10 port = options["p"] || "2000"
11 cert_file = options["c"]
12 key_file = options["k"]
13 ca_path = options["C"]
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_commands_fetch_command.rb23 @cmd.options[:args] = [@a2.name]
48 @cmd.options[:args] = [@a2.name]
49 @cmd.options[:version] = req('>= 0.1')
73 @cmd.options[:args] = [@a2.name]
74 @cmd.options[:prerelease] = true
96 @cmd.options[:args] = [@a2.name]
97 @cmd.options[:prerelease] = true
98 @cmd.options[:version] = "2.a"
117 @cmd.options[:args] = [@a2.name]
118 @cmd.options[
[all...]
H A Dtest_gem_command.rb62 @cmd.add_option('-h', '--help [COMMAND]', 'Get help on COMMAND') do |value, options|
63 options[:help] = value
68 @cmd.when_invoked do |options|
69 assert options[:help], "Help options should default true"
119 assert_equal ["--awesome=true"], @cmd.options[:build_args]
127 @cmd.add_option('-h', '--help [COMMAND]', 'Get help on COMMAND') do |value, options|
128 options[:help] = true
139 assert_match(/\[options\]/, @ui.output)
150 @cmd.add_option('-h', '--help [COMMAND]', 'Get help on COMMAND') do |value, options|
[all...]
/macosx-10.9.5/system_cmds-597.90.1/mkfile.tproj/
H A Dmkfile.c58 char *options = "nv"; local
69 usage(prog_name, options);
71 /* Get options */
74 while ((c=getopt(argc, argv, options)) != EOF)
83 usage(prog_name, options);
87 /* Stop getting options
91 usage(prog_name, options);
115 usage(prog_name, options);
120 usage(prog_name, options);
211 usage (prog_name, options)
[all...]
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/mkfile.tproj/
H A Dmkfile.c58 char *options = "nv"; local
69 usage(prog_name, options);
71 /* Get options */
74 while ((c=getopt(argc, argv, options)) != EOF)
83 usage(prog_name, options);
87 /* Stop getting options
91 usage(prog_name, options);
115 usage(prog_name, options);
120 usage(prog_name, options);
211 usage (prog_name, options)
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dchgrp.c167 getids(register char* s, char** e, Key_t* key, int options) argument
181 options |= OPT_CHOWN;
186 if (options & OPT_CHOWN)
191 if (*z || !(options & OPT_NUMERIC))
211 if (*z || !(options & OPT_NUMERIC))
227 register int options = 0; local
260 options |= OPT_CHOWN;
263 if (options & OPT_CHOWN)
281 options |= OPT_VERBOSE;
284 options |
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_rake_application.rb9 @app.options.rakelib = []
20 @app.options.show_tasks = :tasks
21 @app.options.show_task_pattern = //
31 @app.options.show_tasks = :tasks
32 @app.options.show_task_pattern = //
44 @app.options.show_tasks = :tasks
45 @app.options.show_task_pattern = //
57 @app.options.show_tasks = :tasks
58 @app.options.show_task_pattern = //
72 @app.options
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/telnetd.tproj/
H A Ddefs.h179 #define TD_OPTIONS 0x10 /* Report just telnet options */
195 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
196 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
197 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
198 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
205 #define set_my_state_do(opt) (options[opt] |= MY_STATE_DO)
206 #define set_my_state_will(opt) (options[opt] |= MY_STATE_WILL)
207 #define set_my_want_state_do(opt) (options[opt] |= MY_WANT_STATE_DO)
208 #define set_my_want_state_will(opt) (options[opt] |= MY_WANT_STATE_WILL)
210 #define set_my_state_dont(opt) (options[op
[all...]
/macosx-10.9.5/cups-372.4/cups/backend/
H A Dusb.c50 const char *resource, char *options,
97 char *options, /* I - Device options/serial number */
113 (void)options;
129 * printer-uri job-id user title copies options [file]
144 resource[1024], /* Resource info (device and options) */
145 *options; /* Pointer to options */ local
183 _("Usage: %s job-id user title copies options [file]"),
189 * Extract the device name and options fro
94 print_device(const char *uri, const char *hostname, const char *resource, char *options, int print_fd, int copies, int argc, char *argv[]) argument
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dwaitpid.c73 waitpid(pid, statusPtr, options)
78 int options; /* OR'ed combination of WNOHANG and
101 if (!(options & WUNTRACED) && (WIFSTOPPED(waitPtr->status))) {
121 * combinations of options by invoking wait instead of wait3).
126 if (options & WNOHANG) {
129 if (options != 0) {
135 result = wait3(&status, options, 0);
147 if (!(options & WUNTRACED) && (WIFSTOPPED(status))) {
/macosx-10.9.5/CPANInternal-140/Params-Validate/lib/Params/
H A DValidatePP.pm78 local $options ||= _get_options( (caller(0))[0] )
79 unless defined $options;
95 unless ($actual >= $min && ( $options->{allow_extra} || $actual <= $max ) )
98 ( $options->{allow_extra} ?
102 my $val = $options->{allow_extra} ? $min : $max;
107 $options->{on_fail}->
168 $options->{on_fail}->($error);
200 $options->{on_fail}->($error);
213 local $options = _get_options( (caller(0))[0] ) unless defined $options;
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/gensprep/
H A Dgensprep.c64 static UOption options[]={ variable
100 "Usage: %s [-options] [file_name]\n"
149 /* preset then read command line options */
150 options[DESTDIR].value=u_getDataDirectory();
151 options[SOURCEDIR].value="";
152 options[UNICODE_VERSION].value="0"; /* don't assume the unicode version */
153 options[BUNDLE_NAME].value = DATA_NAME;
154 options[NORMALIZE].value = "";
156 argc=u_parseArgs(argc, argv, sizeof(options)/sizeof(options[
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/perf/normperf/
H A Dnormperf.h28 typedef int32_t (*NormFn)(const UChar* src,int32_t srcLen, UChar* dest,int32_t dstLen, int32_t options, UErrorCode* status);
29 typedef int32_t (*QuickCheckFn)(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status);
42 int32_t options; member in class:QuickCheckPerfFunction
49 retVal = (*fn)(lines[i].name,lines[i].len,mode, options, status);
53 retVal = (*fn)(lines[i].name,-1,mode, options, status);
59 retVal = (*fn)(src,srcLen,mode, options, status);
61 retVal = (*fn)(src,-1,mode, options, status);
77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) {
113 int32_t options; member in class:NormPerfFunction
187 int32_t options; member in class:NormalizerPerformanceTest
257 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
261 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
265 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
268 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
272 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
276 ICUQuickCheck(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
283 ICUIsNormalized(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
290 ICUNormNFD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
294 ICUNormNFC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
298 ICUNormNFKD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
301 ICUNormNFKC(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
305 ICUNormFCD(const UChar* src, int32_t srcLen,UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
309 ICUQuickCheck(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
313 ICUIsNormalized(const UChar* src,int32_t srcLen, UNormalizationMode mode, int32_t options, UErrorCode* status) argument
320 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
324 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
328 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
331 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
335 WinNormNFD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
339 WinNormNFC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
343 WinNormNFKD(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
346 WinNormNFKC(const UChar* src, int32_t srcLen, UChar* dest, int32_t dstLen, int32_t options, UErrorCode* status) argument
[all...]
/macosx-10.9.5/smb-697.95.1/smbutil/
H A Dview.c103 uint64_t options = 0; local
111 options |= kSMBOptionSessionOnly;
114 options |= kSMBOptionNoPrompt;
117 options |= kSMBOptionAllowGuestAuth;
120 if (options & kSMBOptionOnlyAuthMask)
122 options |= kSMBOptionUseGuestOnlyAuth;
123 options |= kSMBOptionNoPrompt;
126 if (options & kSMBOptionOnlyAuthMask)
128 options |= kSMBOptionUseAnonymousOnlyAuth;
129 options |
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/test/
H A Dunit.rb35 @options = nil
44 return @options if @options
46 options = {}
48 setup_options(opts, options)
51 args = @init_hook.call(args, options) if @init_hook
52 non_options(args, options)
54 @options = options
55 if @options[
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/
H A Dstart.pl31 # --noclean test [server [options]]
36 # options - alternate options for the server
37 # NOTE: options must be specified with '-- "<option list>"',
43 # else in the file is ignored. If "options" is already set,
46 my $usage = "usage: $0 [--noclean] [--restart] test-directory [server-directory [server-options]]";
52 my $options = $ARGV[2];
78 &start_server($server, $options);
106 my $options = "";
109 $options
[all...]

Completed in 299 milliseconds

1234567891011>>