HomeSort by relevance Sort by last modified time
    Searched refs:netrc (Results 1 - 25 of 41) sorted by null

1 2

  /external/curl/docs/cmdline-opts/
netrc-optional.d 1 Long: netrc-optional
2 Help: Use either .netrc or URL
3 Mutexed: netrc
4 See-also: netrc-file
6 Very similar to --netrc, but this option makes the .netrc usage \fBoptional\fP
7 and not mandatory as the --netrc option does.
netrc-file.d 1 Long: netrc-file
2 Help: Specify FILE for netrc
5 Mutexed: netrc
7 This option is similar to --netrc, except that you provide the path (absolute
8 or relative) to the netrc file that Curl should use. You can only specify one
9 netrc file per invocation. If several --netrc-file options are provided,
12 It will abide by --netrc-optional if specified.
netrc.d 1 Long: netrc
3 Help: Must read .netrc for user name and password
5 Makes curl scan the \fI.netrc\fP (\fI_netrc\fP on Windows) file in the user's
13 A quick and very simple example of how to setup a \fI.netrc\fP to allow curl
user.d 7 --netrc and --netrc-optional.
  /external/python/cpython2/Lib/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
16 return netrc.netrc(temp_filename)
111 fn = os.path.join(d, '.netrc')
120 nrc = netrc.netrc()
124 self.assertRaises(netrc.NetrcParseError, netrc.netrc)
  /external/python/cpython3/Lib/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
16 return netrc.netrc(temp_filename)
111 fn = os.path.join(d, '.netrc')
120 nrc = netrc.netrc()
124 self.assertRaises(netrc.NetrcParseError, netrc.netrc)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
18 return netrc.netrc(temp_filename)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
18 return netrc.netrc(temp_filename)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
18 return netrc.netrc(temp_filename)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
18 return netrc.netrc(temp_filename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_netrc.py 1 import netrc, os, unittest, sys, textwrap
18 return netrc.netrc(temp_filename)
  /external/owasp/sanitizer/tools/
googlecode_upload.py 171 from netrc import netrc
172 authenticators = netrc().authenticators("code.google.com")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
nntplib.py 135 # If no login/password was specified, try to get them from ~/.netrc
139 import netrc
140 credentials = netrc.netrc()
  /external/python/cpython2/Lib/
netrc.py 1 """An object-oriented interface to .netrc files."""
9 __all__ = ["netrc", "NetrcParseError"]
13 """Exception raised on syntax errors in the .netrc file."""
24 class netrc: class in inherits:
29 file = os.path.join(os.environ['HOME'], ".netrc")
31 raise IOError("Could not find .netrc: $HOME is not set")
106 ("~/.netrc file owner (%s) does not match"
111 "~/.netrc access too permissive: access"
129 """Dump the class data in the format of a .netrc file."""
145 print netrc()
    [all...]
nntplib.py 142 # If no login/password was specified, try to get them from ~/.netrc
146 import netrc
147 credentials = netrc.netrc()
  /external/python/cpython3/Lib/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
27 file = os.path.join(os.environ['HOME'], ".netrc")
29 raise OSError("Could not find .netrc: $HOME is not set")
103 ("~/.netrc file owner (%s) does not match"
108 "~/.netrc access too permissive: access"
126 """Dump the class data in the format of a .netrc file."""
142 print(netrc())
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
nntplib.py 135 # If no login/password was specified, try to get them from ~/.netrc
139 import netrc
140 credentials = netrc.netrc()
  /prebuilts/gdb/linux-x86/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
nntplib.py 135 # If no login/password was specified, try to get them from ~/.netrc
139 import netrc
140 credentials = netrc.netrc()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
nntplib.py 135 # If no login/password was specified, try to get them from ~/.netrc
139 import netrc
140 credentials = netrc.netrc()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
netrc.py 1 """An object-oriented interface to .netrc files."""
7 __all__ = ["netrc", "NetrcParseError"]
11 """Exception raised on syntax errors in the .netrc file."""
22 class netrc: class in inherits:
26 file = os.path.join(os.environ['HOME'], ".netrc")
28 raise IOError("Could not find .netrc: $HOME is not set")
106 """Dump the class data in the format of a .netrc file."""
122 print netrc()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
ftpmirror.py 14 -l username [-p passwd [-a account]]: login info (default .netrc or anonymous)
26 import netrc
60 auth = netrc.netrc().authenticators(host)
63 except (netrc.NetrcParseError, IOError):

Completed in 337 milliseconds

1 2