Home
last modified time | relevance | path

Searched +refs:split +refs:string +refs:default +refs:separators (Results 1 – 25 of 5344) sorted by relevance

12345678910>>...214

/dports/www/firefox-esr/firefox-91.8.0/testing/web-platform/tests/tools/third_party/hyper/hyper/
H A Dcli.py56 def __init__(self, *separators): argument
57 self.separators = separators
59 def __call__(self, string): argument
60 for sep in self.separators:
61 splitted = string.split(sep, 1)
64 return KeyValue(key, value, sep, string)
69 'method', metavar='METHOD', nargs=OPTIONAL, default='GET',
107 '--debug', action='store_true', default=False,
110 '--h2', action='store_true', default=False,
153 _path = _result.path.split('/', 1)
[all …]
/dports/www/py-hyper/hyper-18b629b/hyper/
H A Dcli.py56 def __init__(self, *separators): argument
57 self.separators = separators
59 def __call__(self, string): argument
60 for sep in self.separators:
61 splitted = string.split(sep, 1)
64 return KeyValue(key, value, sep, string)
69 'method', metavar='METHOD', nargs=OPTIONAL, default='GET',
107 '--debug', action='store_true', default=False,
110 '--h2', action='store_true', default=False,
153 _path = _result.path.split('/', 1)
[all …]
/dports/www/firefox/firefox-99.0/testing/web-platform/tests/tools/third_party/hyper/hyper/
H A Dcli.py56 def __init__(self, *separators): argument
57 self.separators = separators
59 def __call__(self, string): argument
60 for sep in self.separators:
61 splitted = string.split(sep, 1)
64 return KeyValue(key, value, sep, string)
69 'method', metavar='METHOD', nargs=OPTIONAL, default='GET',
107 '--debug', action='store_true', default=False,
110 '--h2', action='store_true', default=False,
153 _path = _result.path.split('/', 1)
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/testing/web-platform/tests/tools/third_party/hyper/hyper/
H A Dcli.py56 def __init__(self, *separators): argument
57 self.separators = separators
59 def __call__(self, string): argument
60 for sep in self.separators:
61 splitted = string.split(sep, 1)
64 return KeyValue(key, value, sep, string)
69 'method', metavar='METHOD', nargs=OPTIONAL, default='GET',
107 '--debug', action='store_true', default=False,
110 '--h2', action='store_true', default=False,
153 _path = _result.path.split('/', 1)
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/testing/web-platform/tests/tools/third_party/hyper/hyper/
H A Dcli.py56 def __init__(self, *separators): argument
57 self.separators = separators
59 def __call__(self, string): argument
60 for sep in self.separators:
61 splitted = string.split(sep, 1)
64 return KeyValue(key, value, sep, string)
69 'method', metavar='METHOD', nargs=OPTIONAL, default='GET',
107 '--debug', action='store_true', default=False,
110 '--h2', action='store_true', default=False,
153 _path = _result.path.split('/', 1)
[all …]
/dports/math/octave/octave-6.4.0/scripts/strings/
H A Dostrsplit.m29 ## Split the string @var{s} using one or more separators @var{sep} and return
32 ## Consecutive separators and separators at boundaries result in empty
33 ## strings, unless @var{strip_empty} is true. The default value of
36 ## 2-D character arrays are split at separators and at the original column
68 error ("ostrsplit: S and SEP must be string values");
78 ## and transform to single string
89 ## Multiple separators
99 ## Remove separators.
125 %!error <S and SEP must be string values> ostrsplit (123, "b")
126 %!error <S and SEP must be string values> ostrsplit ("abc", 1)
/dports/graphics/shotwell/shotwell-0.30.14/src/dialogs/
H A DEntryMultiCompletion.vala8 // Entry completion for values separated by separators (e.g. comma in the case of tags)
11 private string delimiter;
13 public EntryMultiCompletion(Gee.Collection<string> completion_list, string? delimiter) {
36 string possible_match;
41 // Gtk.Entry, i.e. one character=one position. Using the default normalization a character
67 string match;
87 // Find last string after any delimiter
88 private static string get_last_part(string s, string delimiter) {
89 string[] split = s.split(delimiter);
91 if((split != null) && (split[0] != null)) {
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/bmatcuk/doublestar/
H A DREADME.md50 func Match(pattern, name string) (bool, error)
54 ([see below](#patterns)). `name` and `pattern` are split on forward slash (`/`)
65 func PathMatch(pattern, name string) (bool, error)
70 PathMatch will automatically use your system's path separator to split `name`
77 func Glob(pattern string) ([]string, error)
92 `*` | matches any sequence of non-path-separators
93 `**` | matches any sequence of characters, including path separators
112 **doublestar** by default uses the `Open`, `Stat`, and `Lstat`, functions and
121 Lstat(name string) (os.FileInfo, error)
122 Open(name string) (*os.File, error)
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/bmatcuk/doublestar/doublestar-1.3.0/
H A DREADME.md50 func Match(pattern, name string) (bool, error)
54 ([see below](#patterns)). `name` and `pattern` are split on forward slash (`/`)
65 func PathMatch(pattern, name string) (bool, error)
70 PathMatch will automatically use your system's path separator to split `name`
77 func Glob(pattern string) ([]string, error)
92 `*` | matches any sequence of non-path-separators
93 `**` | matches any sequence of characters, including path separators
112 **doublestar** by default uses the `Open`, `Stat`, and `Lstat`, functions and
121 Lstat(name string) (os.FileInfo, error)
122 Open(name string) (*os.File, error)
[all …]
/dports/graphics/py-plotly/plotly-4.14.3/_plotly_utils/
H A Dutils.py83 separators=(self.item_separator, self.key_separator),
86 def default(self, obj): member in PlotlyJSONEncoder
134 return _json.JSONEncoder.default(self, obj)
233 if (iso_string.split("-")[:3] == "00:00") or (iso_string.split("+")[0] == "00:00"):
259 v_parts = re.split(r"(\d+)", v)
296 ss = reduce(lambda x, y: x + y, map(lambda x: x.split(c), ss))
438 def find_closest_string(string, strings): argument
442 return (levenshtein(s, string), s)
/dports/www/node10/node-v10.24.1/doc/api/
H A Dpath.md16 The default operation of the `path` module varies based on the operating system
77 the Unix `basename` command. Trailing directory separators are ignored, see
109 process.env.PATH.split(path.delimiter);
119 process.env.PATH.split(path.delimiter);
136 the Unix `dirname` command. Trailing directory separators are ignored, see
321 `\` on Windows). Trailing separators are preserved.
340 Since Windows recognizes multiple path separators, both separators will be
359 significant elements of the `path`. Trailing directory separators are ignored,
519 'foo/bar/baz'.split(path.sep);
526 'foo\\bar\\baz'.split(path.sep);
[all …]
/dports/mail/vmailmgr/vmailmgr-0.97/doc/
H A Dconfiguration.info185 * separators::
308 string
561 string
618 string
637 string
679 string
703 string
719 2.27 separators
723 string
814 the name of the new user. This hash code is split into
[all …]
H A Dconfiguration.texi191 * separators::
300 string
514 string
562 string
578 string
617 string
640 string
653 @section separators
657 string
676 string
[all …]
/dports/editors/emacs-devel/emacs-4d1968b/doc/lispref/
H A Dstrings.texi292 @defun split-string string &optional separators omit-nulls trim
298 If @var{separators} is @code{nil} (or omitted), the default is the
299 value of @code{split-string-default-separators} and the function
330 split-string-default-separators)
348 (split-string "aooob" "o*")
352 (split-string "" "")
365 (split-string "" "" t)
375 (split-string "ooo" "o*" t)
382 @defvar split-string-default-separators
383 The default value of @var{separators} for @code{split-string}. Its
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/lang/python37/Python-3.7.12/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/lang/python38/Python-3.8.12/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/lang/python310/Python-3.10.1/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/lang/python311/Python-3.11.0a3/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/lang/python-tools/Python-3.8.12/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/lang/python39/Python-3.9.9/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Doc/library/
H A Demail.header.rst65 Optional *s* is the initial header value. If ``None`` (the default), the
71 argument to the :meth:`append` method. It also sets the default character set
73 *charset* is not provided in the constructor (the default), the ``us-ascii``
74 character set is used both as *s*'s initial charset and as the default for
80 field in *header_name*. The default *maxlinelen* is 76, and the default value
82 first line of a long, split header.
104 string, and a :exc:`UnicodeError` will be raised if the string cannot be
128 syntactic breaks': split points preceded by a splitchar are preferred
132 other as a split point when other split chars do not appear in the line
133 being split. Splitchars does not affect :RFC:`2047` encoded lines.
[all …]
/dports/x11-themes/qtcurve-gtk2/qtcurve-1.9/
H A DChangeLog-pre-0.60.md169 6. Don't draw menu separators through stripe.
178 15. Lighter menu separators.
191 8. Lighter menu separators.
241 1. Use case-insesitive string compares when checking Qt and KDE config files.
244 1. Use case-insesitive string compares when checking Qt and KDE config files.
377 separators, and splitters.
382 8. New 'split' style gradient.
386 toolbar separators, triangular slider, diagonal progressbar stripes.
392 separators, and splitters.
397 8. New 'split' style gradient.
[all …]
/dports/x11-themes/qtcurve-kf5/qtcurve-1.9/
H A DChangeLog-pre-0.60.md169 6. Don't draw menu separators through stripe.
178 15. Lighter menu separators.
191 8. Lighter menu separators.
241 1. Use case-insesitive string compares when checking Qt and KDE config files.
244 1. Use case-insesitive string compares when checking Qt and KDE config files.
377 separators, and splitters.
382 8. New 'split' style gradient.
386 toolbar separators, triangular slider, diagonal progressbar stripes.
392 separators, and splitters.
397 8. New 'split' style gradient.
[all …]

12345678910>>...214