Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,576 for ulong (0.05 sec)

  1. cmd/xl-storage-errors.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"errors"
    	"os"
    	"runtime"
    	"syscall"
    )
    
    // No space left on device error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. pkg/cache/ttlCache.go

    // method. Given the nature of this code, forgetting to call Close on one of these objects
    // can lead to a substantial permanent memory leak in a process by causing the cache to
    // remain alive forever, along with all the entries the cache points to. The use of the
    // ttlWrapper type makes it so we control the exposure of the underlying ttlCache pointer.
    // When the pointer to ttlWrapper is finalized, this tells us to go ahead and stop the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. cmd/storage-errors.go

    // errTooManyOpenFiles - too many open files.
    var errTooManyOpenFiles = StorageErr("too many open files, please increase 'ulimit -n'")
    
    // errFileNameTooLong - given file name is too long than supported length.
    var errFileNameTooLong = StorageErr("file name too long")
    
    // errVolumeExists - cannot create same volume again.
    var errVolumeExists = StorageErr("volume already exists")
    
    // errIsNotRegular - not of regular file type.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go

    	SYS_SETEGID        = 182 // { int sys_setegid(gid_t egid); }
    	SYS_SETEUID        = 183 // { int sys_seteuid(uid_t euid); }
    	SYS_PATHCONF       = 191 // { long sys_pathconf(const char *path, int name); }
    	SYS_FPATHCONF      = 192 // { long sys_fpathconf(int fd, int name); }
    	SYS_SWAPCTL        = 193 // { int sys_swapctl(int cmd, const void *arg, int misc); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. internal/crypto/error.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package crypto
    
    import (
    	"errors"
    	"fmt"
    )
    
    // Error is the generic type for any error happening during decrypting
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    //	   t.Errorf("Timed out")
    //
    // The value for timeout should effectively be "forever." Obviously we don't want our tests to truly lock up forever, but 30s
    // is long enough that it is effectively forever for the things that can slow down a run on a heavily contended machine
    // (GC, seeks, etc), but not so long as to make a developer ctrl-c a test run if they do happen to break that test.
    var ForeverTestTimeout = time.Second * 30
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top