Displaying 9 results from an estimated 9 matches for "caseinsensit".
2019 Feb 22
3
[PATCH 2/2] Cygwin: implement case-insensitive Unicode user and group name matching
On Wed, 20 Feb 2019 at 23:54, Corinna Vinschen <vinschen at redhat.com> wrote:
> The previous revert enabled case-insensitive user names again. This
> patch implements the case-insensitive user and group name matching.
> To allow Unicode chars, implement the matcher using wchar_t chars in
> Cygwin-specific code. Keep the generic code changes as small as possible.
> Cygwin:
2019 Feb 22
2
[PATCH 2/2] Cygwin: implement case-insensitive Unicode user and group name matching
...n_util.c b/openbsd-compat/bsd-cygwin_util.c
index f721fca9d998..1e4cdc9280d4 100644
--- a/openbsd-compat/bsd-cygwin_util.c
+++ b/openbsd-compat/bsd-cygwin_util.c
@@ -128,7 +128,7 @@ free_windows_environment(char **p)
*/
static int
-__match_pattern (const wchar_t *s, const wchar_t *pattern, int caseinsensitive)
+__match_pattern (const wchar_t *s, const wchar_t *pattern)
{
for (;;) {
/* If at end of pattern, accept if also at end of string. */
@@ -152,8 +152,7 @@ __match_pattern (const wchar_t *s, const wchar_t *pattern, int caseinsensitive)
*/
for (; *s; s++)
if (*s == *pattern...
2019 Feb 20
3
[PATCH 0/2] Cygwin: allow user and group case-insensitive Unicode strings
Windows usernames are case-insensitive and almost any Unicode character
is allowed in a username. The user should be able to login with her
username given in any case and not be refused. However, this opens up
a security problem in terms of the sshd_config Match rules. The match
rules for user and group names have to operate case-insensitive as well,
otherwise the user can override her settings
2012 Aug 01
2
[LLVMdev] [RFC] New command line parsing/generating framework for clang and lld.
...prefix of a potential Option for each prefix in
// Prefixes.
list<string> Prefixes = prefixes;
// The name of this Option without any prefixes or postfixes. This is what
// typo correction is checked against.
string Name = name;
// Is Name case insensitive.
bit IsCaseInsensitive = 0;
// Should this Option be hidden from the default help.
bit IsHidden = 0;
// Used as a tiebraker when multiple Options share the same prefix. Higher
// values are picked first.
int Priority = 0;
// The single Option that this Option is an alias of.
Option Alias...
2012 Aug 09
0
[LLVMdev] [RFC] New command line parsing/generating framework for clang and lld.
...x in
> // Prefixes.
> list<string> Prefixes = prefixes;
>
> // The name of this Option without any prefixes or postfixes. This is what
> // typo correction is checked against.
> string Name = name;
>
> // Is Name case insensitive.
> bit IsCaseInsensitive = 0;
>
> // Should this Option be hidden from the default help.
> bit IsHidden = 0;
>
> // Used as a tiebraker when multiple Options share the same prefix. Higher
> // values are picked first.
> int Priority = 0;
>
> // The single Option that th...
2007 Aug 23
0
10 commits - libswfdec/swfdec_as_function.c libswfdec/swfdec_as_object.c test/trace
...ev/null and b/test/trace/array-properties-6.swf differ
diff --git a/test/trace/array-properties-6.swf.trace b/test/trace/array-properties-6.swf.trace
new file mode 100644
index 0000000..1425f73
--- /dev/null
+++ b/test/trace/array-properties-6.swf.trace
@@ -0,0 +1,56 @@
+_global.Array = function
+ CASEINSENSITIVE = number : 1
+ DESCENDING = number : 2
+ NUMERIC = number : 16
+ RETURNINDEXEDARRAY = number : 8
+ UNIQUESORT = number : 4
+ __proto__ (hp) = _global.Object.__proto__
+ constructor (hp) = _global.Object.constructor
+ prototype (hp) = object
+ __proto__ (hp) = _global.Object.prototype
+...
2004 Nov 19
8
Error with wine-20041019
When I start a windows application using wine (currently wine-20041019)
on RedHat 9, I receive the following:
[jmmckee@server jmmckee]$ wine sol
Please use the registry key HKEY_CURRENT_CONFIG\Software\Fonts\LogPixels
to set the screen resolution and remove the "Resolution" entry in the
config file
err:wave:OSS_WaveOutInit /dev/mixer1: No such device
err:wave:OSS_WaveInInit
2007 Sep 04
0
4 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_video_movie_as.c test/trace
...ev/null and b/test/trace/array-properties-5.swf differ
diff --git a/test/trace/array-properties-5.swf.trace b/test/trace/array-properties-5.swf.trace
new file mode 100644
index 0000000..40928f9
--- /dev/null
+++ b/test/trace/array-properties-5.swf.trace
@@ -0,0 +1,42 @@
+_global.Array = function
+ CASEINSENSITIVE = number : 1
+ DESCENDING = number : 2
+ NUMERIC = number : 16
+ RETURNINDEXEDARRAY = number : 8
+ UNIQUESORT = number : 4
+ constructor (hp) = _global.Object.constructor
+ prototype (hp) = object
+ __proto__ (hp) = _global.Object.prototype
+ concat (hp) = function
+ constructor...
2007 Dec 20
0
13 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_xml.c libswfdec/swfdec_xml_node.c test/trace
...7,8 @@ mytrace (a);
mytrace ("# Special cases");
+a = new Array (1, "b", "c", 4); // no arguments
+mytrace (a.splice ());
a = new Array (); // empty array
mytrace (a.splice (0));
mytrace (a);
@@ -471,6 +473,45 @@ sortall (a, null, 0, Array.UNIQUESORT | Array.CASEINSENSITIVE);
a = new Array ([1,2,3], [1,2,3,4], [], [1,2], [1]);
sortall (a, compare_array_length, 0, 0);
+// indexed array with undefined values
+a = new Array ();
+a[0] = "a";
+a[2] = "b";
+a[3] = undefined;
+a[4] = "c";
+a.length = 10;
+var ret = c.sort (Array.RETURNIND...