Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 353 for nchar (0.16 sec)

  1. src/time/zoneinfo_read.go

    	//	number of transition times
    	//	number of local time zones
    	//	number of characters of time zone abbrev strings
    	const (
    		NUTCLocal = iota
    		NStdWall
    		NLeap
    		NTime
    		NZone
    		NChar
    	)
    	var n [6]int
    	for i := 0; i < 6; i++ {
    		nn, ok := d.big4()
    		if !ok {
    			return nil, errBadData
    		}
    		if uint32(int(nn)) != nn {
    			return nil, errBadData
    		}
    		n[i] = int(nn)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-system-process.go

    	}
    }
    
    func loadProcIOMetrics(ctx context.Context, io procfs.ProcIO, m MetricValues) {
    	if io.RChar > 0 {
    		m.Set(processIORCharBytes, float64(io.RChar))
    	}
    
    	if io.ReadBytes > 0 {
    		m.Set(processIOReadBytes, float64(io.ReadBytes))
    	}
    
    	if io.WChar > 0 {
    		m.Set(processIOWCharBytes, float64(io.WChar))
    	}
    
    	if io.WriteBytes > 0 {
    		m.Set(processIOWriteBytes, float64(io.WriteBytes))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 16:07:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    //
    // RFC 7230 says:
    //
    //	field-value    = *( field-content / obs-fold )
    //	obj-fold       =  N/A to http2, and deprecated
    //	field-content  = field-vchar [ 1*( SP / HTAB ) field-vchar ]
    //	field-vchar    = VCHAR / obs-text
    //	obs-text       = %x80-FF
    //	VCHAR          = "any visible [USASCII] character"
    //
    // http2 further says: "Similarly, HTTP/2 allows header field values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/net/cgo_unix_cgo.go

    	_C_EAI_SYSTEM   = C.EAI_SYSTEM
    	_C_IPPROTO_TCP  = C.IPPROTO_TCP
    	_C_IPPROTO_UDP  = C.IPPROTO_UDP
    	_C_SOCK_DGRAM   = C.SOCK_DGRAM
    	_C_SOCK_STREAM  = C.SOCK_STREAM
    )
    
    type (
    	_C_char            = C.char
    	_C_uchar           = C.uchar
    	_C_int             = C.int
    	_C_uint            = C.uint
    	_C_socklen_t       = C.socklen_t
    	_C_struct_addrinfo = C.struct_addrinfo
    	_C_struct_sockaddr = C.struct_sockaddr
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 17:49:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    typedef ptrdiff_t intgo;
    
    #define GO_CGO_GOSTRING_TYPEDEF
    typedef struct { const char *p; intgo n; } _GoString_;
    typedef struct { char *p; intgo n; intgo c; } _GoBytes_;
    _GoString_ GoString(char *p);
    _GoString_ GoStringN(char *p, int l);
    _GoBytes_ GoBytes(void *p, int n);
    char *CString(_GoString_);
    void *CBytes(_GoBytes_);
    void *_CMalloc(size_t);
    
    __attribute__ ((unused))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val FLOAT: ClassId = ClassId.topLevel(StandardNames.FqNames._float.toSafe())
        public val DOUBLE: ClassId = ClassId.topLevel(StandardNames.FqNames._double.toSafe())
        public val CHAR: ClassId = ClassId.topLevel(StandardNames.FqNames._char.toSafe())
        public val BOOLEAN: ClassId = ClassId.topLevel(StandardNames.FqNames._boolean.toSafe())
        public val STRING: ClassId = ClassId.topLevel(StandardNames.FqNames.string.toSafe())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/net/textproto/reader.go

    // field value. RFC 7230 says:
    //
    //	field-content  = field-vchar [ 1*( SP / HTAB ) field-vchar ]
    //	field-vchar    = VCHAR / obs-text
    //	obs-text       = %x80-FF
    //
    // RFC 5234 says:
    //
    //	HTAB           =  %x09
    //	SP             =  %x20
    //	VCHAR          =  %x21-7E
    func validHeaderValueByte(c byte) bool {
    	// mask is a 128-bit bitmap with 1s for allowed bytes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    // conflict with C symbols.
    char text[] = "text";
    char data[] = "data";
    char *ctext(void) { return text; }
    char *cdata(void) { return data; }
    
    // issue 8428
    // Cgo inconsistently translated zero size arrays.
    
    struct issue8428one {
    	char b;
    	char rest[];
    };
    
    struct issue8428two {
    	void *p;
    	char b;
    	char rest[0];
    	char pad;
    };
    
    struct issue8428three {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_experimental.cc

        TFE_MonitoringStringGauge2* gauge, const char* label1, const char* label2) {
      return static_cast<TFE_MonitoringStringGaugeCell*>(
          static_cast<void*>(gauge->gauge->GetCell(label1, label2)));
    }
    
    TFE_MonitoringStringGauge3* TFE_MonitoringNewStringGauge3(
        const char* name, TF_Status* status, const char* description,
        const char* label1, const char* label2, const char* label3) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  10. src/internal/syscall/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func MultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nstr int32, wchar *uint16, nwchar int32) (nwrite int32, err error) {
    	r0, _, e1 := syscall.Syscall6(procMultiByteToWideChar.Addr(), 6, uintptr(codePage), uintptr(dwFlags), uintptr(unsafe.Pointer(str)), uintptr(nstr), uintptr(unsafe.Pointer(wchar)), uintptr(nwchar))
    	nwrite = int32(r0)
    	if nwrite == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top