Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 115 for scaron (0.19 sec)

  1. src/syscall/zerrors_darwin_arm64.go

    	F_TRANSCODEKEY                    = 0x4b
    	F_UNLCK                           = 0x2
    	F_VOLPOSMODE                      = 0x4
    	F_WRLCK                           = 0x3
    	HUPCL                             = 0x4000
    	ICANON                            = 0x100
    	ICMP6_FILTER                      = 0x12
    	ICRNL                             = 0x100
    	IEXTEN                            = 0x400
    	IFF_ALLMULTI                      = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  2. src/syscall/zerrors_aix_ppc64.go

    	F_TSTLK                       = 0xf
    	F_ULOCK                       = 0x0
    	F_UNLCK                       = 0x3
    	F_WRLCK                       = 0x2
    	HUPCL                         = 0x400
    	ICANON                        = 0x2
    	ICMP6_FILTER                  = 0x26
    	ICMP6_SEC_SEND_DEL            = 0x46
    	ICMP6_SEC_SEND_GET            = 0x47
    	ICMP6_SEC_SEND_SET            = 0x44
    	ICMP6_SEC_SEND_SET_CGA_ADDR   = 0x45
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 16:18:12 UTC 2019
    - 47.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^B[0-9_]+$/ ||
    		$2 ~ /^(OLD|NEW)DEV$/ ||
    		$2 == "BOTHER" ||
    		$2 ~ /^CI?BAUD(EX)?$/ ||
    		$2 == "IBSHIFT" ||
    		$2 ~ /^V[A-Z0-9]+$/ ||
    		$2 ~ /^CS[A-Z0-9]/ ||
    		$2 ~ /^I(SIG|CANON|CRNL|UCLC|EXTEN|MAXBEL|STRIP|UTF8)$/ ||
    		$2 ~ /^IGN/ ||
    		$2 ~ /^IX(ON|ANY|OFF)$/ ||
    		$2 ~ /^IN(LCR|PCK)$/ ||
    		$2 !~ "X86_CR3_PCID_NOFLUSH" &&
    		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/syscall/zerrors_solaris_amd64.go

    	F_UNSHARE                     = 0x29
    	F_WRACC                       = 0x2
    	F_WRDNY                       = 0x2
    	F_WRLCK                       = 0x2
    	HUPCL                         = 0x400
    	ICANON                        = 0x2
    	ICRNL                         = 0x100
    	IEXTEN                        = 0x8000
    	IFF_ADDRCONF                  = 0x80000
    	IFF_ALLMULTI                  = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }
    	SYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }
    	SYS_SWAPON                   = 85  // { int swapon(char *name); }
    	SYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }
    	SYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/syscall/zerrors_netbsd_386.go

    	F_SETNOSIGPIPE                    = 0xe
    	F_SETOWN                          = 0x6
    	F_UNLCK                           = 0x2
    	F_WRLCK                           = 0x3
    	HUPCL                             = 0x4000
    	ICANON                            = 0x100
    	ICMP6_FILTER                      = 0x12
    	ICRNL                             = 0x100
    	IEXTEN                            = 0x400
    	IFAN_ARRIVAL                      = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.5K bytes
    - Viewed (0)
  7. cmd/common-main.go

    			fmt.Println("Refer to the docs here on how to run it as a Windows Service https://github.com/minio/minio-service/tree/master/windows")
    			fmt.Println("Press the Enter Key to Exit")
    			fmt.Scanln()
    			os.Exit(1)
    		}
    	}
    
    	logger.Init(GOPATH, GOROOT)
    	logger.RegisterError(config.FmtError)
    
    	globalBatchJobsMetrics = batchJobMetrics{metrics: make(map[string]*batchJobInfo)}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	// size CTL_MAXNAME+2 but use only CTL_MAXNAME
    	// as the size. I don't know why the +2 is here, but the
    	// kernel uses +2 for its own implementation of this function.
    	// I am scared that if we don't include the +2 here, the kernel
    	// will silently write 2 words farther than we specify
    	// and we'll get memory corruption.
    	var buf [CTL_MAXNAME + 2]_C_int
    	n := uintptr(CTL_MAXNAME) * siz
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }
    	SYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }
    	SYS_SWAPON                   = 85  // { int swapon(char *name); }
    	SYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }
    	SYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_SETPGID                  = 82  // { int setpgid(int pid, int pgid); }
    	SYS_SETITIMER                = 83  // { int setitimer(u_int which, struct itimerval *itv, struct itimerval *oitv); }
    	SYS_SWAPON                   = 85  // { int swapon(char *name); }
    	SYS_GETITIMER                = 86  // { int getitimer(u_int which, struct itimerval *itv); }
    	SYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top