Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for 141 (0.02 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go

    	SYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }
    	SYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }
    	SYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }
    	SYS_SETSID         = 147 // { int sys_setsid(void); }
    	SYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    	SYS_RMDIR          = 137 // { int sys_rmdir(const char *path); }
    	SYS_ADJTIME        = 140 // { int sys_adjtime(const struct timeval *delta, struct timeval *olddelta); }
    	SYS_GETLOGIN_R     = 141 // { int sys_getlogin_r(char *namebuf, u_int namelen); }
    	SYS_SETSID         = 147 // { int sys_setsid(void); }
    	SYS_QUOTACTL       = 148 // { int sys_quotactl(const char *path, int cmd, int uid, char *arg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	{137, "ENOTNAM", "not a XENIX named type file"},
    	{138, "ENAVAIL", "no XENIX semaphores available"},
    	{139, "EISNAM", "is a named type file"},
    	{140, "EREMOTEIO", "remote I/O error"},
    	{141, "EINIT", "unknown error 141"},
    	{142, "EREMDEV", "unknown error 142"},
    	{143, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{144, "ETOOMANYREFS", "too many references: cannot splice"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{137, "ENOTNAM", "not a XENIX named type file"},
    	{138, "ENAVAIL", "no XENIX semaphores available"},
    	{139, "EISNAM", "is a named type file"},
    	{140, "EREMOTEIO", "remote I/O error"},
    	{141, "EINIT", "unknown error 141"},
    	{142, "EREMDEV", "unknown error 142"},
    	{143, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{144, "ETOOMANYREFS", "too many references: cannot splice"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go

    	{137, "ENOTNAM", "not a XENIX named type file"},
    	{138, "ENAVAIL", "no XENIX semaphores available"},
    	{139, "EISNAM", "is a named type file"},
    	{140, "EREMOTEIO", "remote I/O error"},
    	{141, "EINIT", "unknown error 141"},
    	{142, "EREMDEV", "unknown error 142"},
    	{143, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{144, "ETOOMANYREFS", "too many references: cannot splice"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go

    	{137, "ENOTNAM", "not a XENIX named type file"},
    	{138, "ENAVAIL", "no XENIX semaphores available"},
    	{139, "EISNAM", "is a named type file"},
    	{140, "EREMOTEIO", "remote I/O error"},
    	{141, "EINIT", "unknown error 141"},
    	{142, "EREMDEV", "unknown error 142"},
    	{143, "ESHUTDOWN", "cannot send after transport endpoint shutdown"},
    	{144, "ETOOMANYREFS", "too many references: cannot splice"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/util.go

    	".NE",
    	".CS",
    	".CC",
    	".MI",
    	".PL",
    	".VS",
    	".VC",
    	".HI",
    	".LS",
    	".GE",
    	".LT",
    	".GT",
    	".LE",
    	"",
    	".NV",
    }
    
    /* ARM scond byte */
    const (
    	C_SCOND     = (1 << 4) - 1
    	C_SBIT      = 1 << 4
    	C_PBIT      = 1 << 5
    	C_WBIT      = 1 << 6
    	C_FBIT      = 1 << 7
    	C_UBIT      = 1 << 7
    	C_SCOND_XOR = 14
    )
    
    // CConv formats opcode suffix bits (Prog.Scond).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. src/debug/macho/file.go

    					rel.Value = ri.Symnum >> 8
    					rel.Pcrel = ri.Symnum&(1<<7) != 0
    					rel.Len = uint8((ri.Symnum >> 5) & (1<<2 - 1))
    					rel.Extern = ri.Symnum&(1<<4) != 0
    					rel.Type = uint8(ri.Symnum & (1<<4 - 1))
    				default:
    					panic("unreachable")
    				}
    			}
    		}
    	}
    
    	return nil
    }
    
    func cstring(b []byte) string {
    	i := bytes.IndexByte(b, 0)
    	if i == -1 {
    		i = len(b)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        private static final String VERSION_13_16 = "13.16";
    
        private static final String VERSION_13_17 = "13.17";
    
        private static final String VERSION_14_0 = "14.0";
    
        private static final String VERSION_14_1 = "14.1";
    
        private static final String VERSION_14_2 = "14.2";
    
        private static final String VERSION_14_3 = "14.3";
    
        private static final String VERSION_14_4 = "14.4";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	en001Index        ID = 135
    	en150Index        ID = 136
    	enAGIndex         ID = 137
    	enAIIndex         ID = 138
    	enASIndex         ID = 139
    	enATIndex         ID = 140
    	enAUIndex         ID = 141
    	enBBIndex         ID = 142
    	enBEIndex         ID = 143
    	enBIIndex         ID = 144
    	enBMIndex         ID = 145
    	enBSIndex         ID = 146
    	enBWIndex         ID = 147
    	enBZIndex         ID = 148
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top