Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for chars (0.04 sec)

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

    	SYS_REVOKE         = 56  // { int sys_revoke(const char *path); }
    	SYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }
    	SYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }
    	SYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }
    	SYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }
    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/cgo/internal/testerrors/ptr_test.go

    		c: `#include <stdlib.h>
    		    char **f14a() { return malloc(sizeof(char*)); }
    		    void f14b(char **p) {}`,
    		body:      `p := C.f14a(); *p = new(C.char); C.f14b(p)`,
    		fail:      true,
    		expensive: true,
    	},
    	{
    		// Storing a pinned Go pointer into C memory should succeed.
    		name: "barrierpinnedok",
    		c: `#include <stdlib.h>
    		    char **f14a2() { return malloc(sizeof(char*)); }
    		    void f14b2(char **p) {}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/goboringcrypto.h

    	GO_NID_sha384 = 673,
    	GO_NID_sha512 = 674,
    };
    
    // #include <openssl/sha.h>
    typedef struct GO_SHA_CTX { char data[96]; } GO_SHA_CTX;
    int _goboringcrypto_SHA1_Init(GO_SHA_CTX*);
    int _goboringcrypto_SHA1_Update(GO_SHA_CTX*, const void*, size_t);
    int _goboringcrypto_SHA1_Final(uint8_t*, GO_SHA_CTX*);
    
    typedef struct GO_SHA256_CTX { char data[48+64]; } GO_SHA256_CTX;
    int _goboringcrypto_SHA224_Init(GO_SHA256_CTX*);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/12-telemetry.yml

          A CL containing proposed changes to the
          [config.txt](https://go.googlesource.com/telemetry/+/master/internal/chartconfig/config.txt)
          chart configuration.
          See the [chartconfig](https://pkg.go.dev/golang.org/x/telemetry/internal/chartconfig)
          package for an explanation of the chart config format.
          For an example change, see [CL 564619](https://go.dev/cl/564619).
      validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/log/slog/json_handler.go

    				char('r')
    			case '\t':
    				char('t')
    			default:
    				// This encodes bytes < 0x20 except for \t, \n and \r.
    				str(`u00`)
    				char(hex[b>>4])
    				char(hex[b&0xF])
    			}
    			i++
    			start = i
    			continue
    		}
    		c, size := utf8.DecodeRuneInString(s[i:])
    		if c == utf8.RuneError && size == 1 {
    			if start < i {
    				str(s[start:i])
    			}
    			str(`\ufffd`)
    			i += size
    			start = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue4029.go

    // as dynamic export is not supported.
    
    package cgotest
    
    /*
    #include <stdint.h>
    #include <dlfcn.h>
    #cgo linux LDFLAGS: -ldl
    
    extern uintptr_t dlopen4029(char*, int);
    extern uintptr_t dlsym4029(uintptr_t, char*);
    extern int dlclose4029(uintptr_t);
    
    extern void call4029(uintptr_t arg);
    */
    import "C"
    
    import (
    	"testing"
    )
    
    var callbacks int
    
    //export IMPIsOpaque
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.html

    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      {{template "stacks_css"}}
    </head>
    <body>
      {{template "header" .}}
      <div id="stack-holder">
        <div id="stack-chart"></div>
        <div id="current-details"></div>
      </div>
      <div id="action-menu" class="submenu">
        <span id="action-title"></span>
        <hr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. src/runtime/chan_test.go

    	N := int(1e5)
    	if testing.Short() {
    		N /= 10
    	}
    	// There are 4 goroutines that send N values on each of the chans,
    	// + 4 goroutines that receive N values on each of the chans,
    	// + 1 goroutine that sends N values on each of the chans in a single select,
    	// + 1 goroutine that receives N values on each of the chans in a single select.
    	// All these sends, receives and selects interact chaotically at runtime,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. src/runtime/cgo/libcgo.h

    /*
     * Get the low and high boundaries of the stack.
     */
    void x_cgo_getstackbound(uintptr bounds[2]);
    
    /*
     * Prints error then calls abort. For linux and android.
     */
    void fatalf(const char* format, ...) __attribute__ ((noreturn));
    
    /*
     * Registers the current mach thread port for EXC_BAD_ACCESS processing.
     */
    void darwin_arm_init_thread_exception_port(void);
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_FLISTXATTR           = 383 // { int|sys||flistxattr(int fd, char *list, size_t size); }
    	SYS_REMOVEXATTR          = 384 // { int|sys||removexattr(const char *path, const char *name); }
    	SYS_LREMOVEXATTR         = 385 // { int|sys||lremovexattr(const char *path, const char *name); }
    	SYS_FREMOVEXATTR         = 386 // { int|sys||fremovexattr(int fd, const char *name); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top