Searched refs:Unix (Results 1 – 25 of 1071) sorted by relevance
12345678910>>...43
/external/golang-protobuf/types/known/timestamppb/ |
D | timestamp_test.go | 36 {in: time.Unix(0, 0), want: &tspb.Timestamp{Seconds: 0, Nanos: 0}}, 37 {in: time.Unix(math.MinInt64, 0), want: &tspb.Timestamp{Seconds: math.MinInt64, Nanos: 0}}, 38 …{in: time.Unix(math.MaxInt64, 1e9-1), want: &tspb.Timestamp{Seconds: math.MaxInt64, Nanos: 1e9 - 1… 62 {in: nil, wantTime: time.Unix(0, 0), wantErr: textError("invalid nil Timestamp")}, 63 {in: new(tspb.Timestamp), wantTime: time.Unix(0, 0)}, 65 …{in: &tspb.Timestamp{Seconds: -1, Nanos: -1}, wantTime: time.Unix(-1, -1), wantErr: textError("tim… 66 {in: &tspb.Timestamp{Seconds: -1, Nanos: 0}, wantTime: time.Unix(-1, 0)}, 67 {in: &tspb.Timestamp{Seconds: -1, Nanos: +1}, wantTime: time.Unix(-1, +1)}, 68 …{in: &tspb.Timestamp{Seconds: 0, Nanos: -1}, wantTime: time.Unix(0, -1), wantErr: textError("times… 69 {in: &tspb.Timestamp{Seconds: 0, Nanos: 0}, wantTime: time.Unix(0, 0)}, [all …]
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 28 * An "Availability: Unix" note means that this function is commonly found on 29 Unix systems. It does not make any claims about its existence on a specific 32 * If not separately noted, all functions that claim "Availability: Unix" are 33 supported on Mac OS X, which builds on a Unix core. 125 Availability: Unix. 133 Availability: Unix. 142 Availability: Unix. 151 Availability: Unix. 158 Availability: Unix. 163 other Unix platforms. If the Python interpreter was built with a [all …]
|
D | crypt.rst | 2 :mod:`crypt` --- Function to check Unix passwords 6 :platform: Unix 7 :synopsis: The crypt() function used to check Unix passwords. 18 a one-way hash function based upon a modified DES algorithm; see the Unix man 20 accept typed passwords from the user, or attempting to crack Unix passwords with
|
D | fnmatch.rst | 1 :mod:`fnmatch` --- Unix filename pattern matching 5 :synopsis: Unix shell style filename pattern matching. 16 This module provides support for Unix shell-style wildcards, which are *not* the 37 Note that the filename separator (``'/'`` on Unix) is *not* special to this 98 Unix shell-style path expansion.
|
D | pwd.rst | 6 :platform: Unix 10 This module provides access to the Unix user account and password database. It 11 is available on all Unix versions. 42 In traditional Unix the field ``pw_passwd`` usually contains a password
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Watchdog.inc | 1 //===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===// 10 // This file provides the generic Unix implementation of the Watchdog class.
|
D | COM.inc | 1 //===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===// 10 // This file implements the Unix portion of COM support.
|
D | Mutex.inc | 1 //===- llvm/Support/Unix/Mutex.inc - Unix Mutex Implementation ---*- C++ -*-===// 10 // This file implements the Unix specific (non-pthread) Mutex class.
|
D | README.txt | 1 llvm/lib/Support/Unix README 8 Unix - only code that is truly generic to all UNIX platforms 10 SUS - code that is specific to the Single Unix Specification
|
D | RWMutex.inc | 1 //= llvm/Support/Unix/RWMutex.inc - Unix Reader/Writer Mutual Exclusion Lock =// 10 // This file implements the Unix specific (non-pthread) RWMutex class.
|
/external/llvm/lib/Support/Unix/ |
D | Watchdog.inc | 1 //===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===// 10 // This file provides the generic Unix implementation of the Watchdog class.
|
D | COM.inc | 1 //===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===// 10 // This file implements the Unix portion of COM support.
|
D | TimeValue.inc | 1 //===- Unix/TimeValue.cpp - Unix TimeValue Implementation -------*- C++ -*-===// 10 // This file implements the Unix specific portion of the TimeValue class. 19 #include "Unix.h"
|
D | Mutex.inc | 1 //===- llvm/Support/Unix/Mutex.inc - Unix Mutex Implementation ---*- C++ -*-===// 10 // This file implements the Unix specific (non-pthread) Mutex class.
|
D | README.txt | 1 llvm/lib/Support/Unix README 8 Unix - only code that is truly generic to all UNIX platforms 10 SUS - code that is specific to the Single Unix Specification
|
D | RWMutex.inc | 1 //= llvm/Support/Unix/RWMutex.inc - Unix Reader/Writer Mutual Exclusion Lock =// 10 // This file implements the Unix specific (non-pthread) RWMutex class.
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | COM.inc | 1 //===- llvm/Support/Unix/COM.inc - Unix COM Implementation -----*- C++ -*-===// 9 // This file implements the Unix portion of COM support.
|
D | Watchdog.inc | 1 //===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===// 9 // This file provides the generic Unix implementation of the Watchdog class.
|
D | README.txt | 1 llvm/lib/Support/Unix README 8 Unix - only code that is truly generic to all UNIX platforms 10 SUS - code that is specific to the Single Unix Specification
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 116 * On Unix, :func:`os.device_encoding` returns ``'UTF-8'``. rather than the 168 .. availability:: Unix. 187 On Unix, keys and values use :func:`sys.getfilesystemencoding` and 297 On Unix, keys and values are decoded with :func:`sys.getfilesystemencoding` 301 .. availability:: most flavors of Unix, Windows. 312 .. availability:: most flavors of Unix. 333 .. availability:: Unix. 342 .. availability:: Unix. 351 .. availability:: Unix. 360 .. availability:: Unix. [all …]
|
D | fnmatch.rst | 1 :mod:`fnmatch` --- Unix filename pattern matching 5 :synopsis: Unix shell style filename pattern matching. 15 This module provides support for Unix shell-style wildcards, which are *not* the 43 Note that the filename separator (``'/'`` on Unix) is *not* special to this 102 Unix shell-style path expansion.
|
D | posix.rst | 5 :platform: Unix 11 standardized by the C Standard and the POSIX standard (a thinly disguised Unix 17 which provides a *portable* version of this interface. On Unix, the :mod:`os` 18 module provides a superset of the :mod:`posix` interface. On non-Unix operating 73 was started. Keys and values are bytes on Unix and str on Windows. For 84 On Unix, keys and values are bytes.
|
D | pwd.rst | 5 :platform: Unix 10 This module provides access to the Unix user account and password database. It 11 is available on all Unix versions. 42 In traditional Unix the field ``pw_passwd`` usually contains a password
|
/external/python/cpython3/Doc/extending/ |
D | windows.rst | 13 Windows programmer learning to build Python extensions and the Unix programmer 14 interested in producing software which can be successfully built on both Unix 37 are on Unix: use the :mod:`distutils` package to control the build process, or 47 Differences Between Unix and Windows 53 Unix and Windows use completely different paradigms for run-time loading of 57 In Unix, a shared object (:file:`.so`) file contains code to be used by the 70 In Unix, there is only one type of library file (:file:`.a`) which contains code 77 library (both called :file:`.lib`). A static library is like a Unix :file:`.a` 87 another block of code A. On Unix, you would *not* pass :file:`A.a` to the 95 gives you access to spam's names, but does not create a separate copy. On Unix,
|
/external/python/cpython2/Doc/extending/ |
D | windows.rst | 13 Windows programmer learning to build Python extensions and the Unix programmer 14 interested in producing software which can be successfully built on both Unix 37 are on Unix: use the :mod:`distutils` package to control the build process, or 47 Differences Between Unix and Windows 53 Unix and Windows use completely different paradigms for run-time loading of 57 In Unix, a shared object (:file:`.so`) file contains code to be used by the 70 In Unix, there is only one type of library file (:file:`.a`) which contains code 77 library (both called :file:`.lib`). A static library is like a Unix :file:`.a` 87 another block of code A. On Unix, you would *not* pass :file:`A.a` to the 95 gives you access to spam's names, but does not create a separate copy. On Unix,
|
12345678910>>...43