Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for chars (0.04 sec)

  1. src/net/mail/message_test.go

    		},
    		// Invalid ASCII in date.
    		{
    			"Fri, 21 Nov 1997 ù 09:55:06 -0600    \r\n (thisisa(valid)cfws)   \t ",
    			time.Date(1997, 11, 21, 9, 55, 6, 0, time.FixedZone("", -6*60*60)),
    			false,
    		},
    		// CFWS chars () in date.
    		{
    			"Fri, 21 Nov () 1997 09:55:06 -0600    \r\n (thisisa(valid)cfws)   \t ",
    			time.Date(1997, 11, 21, 9, 55, 6, 0, time.FixedZone("", -6*60*60)),
    			false,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    //		reference relative to SB.
    //
    //	$<floating point literal>
    //		Floating point constant value.
    //		Encoding:
    //			type = TYPE_FCONST
    //			val = floating point value
    //
    //	$<string literal, up to 8 chars>
    //		String literal value (raw bytes used for DATA instruction).
    //		Encoding:
    //			type = TYPE_SCONST
    //			val = string
    //
    //	<symbolic constant name>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais.go

    // sa[i] is either 0, the ID for the LMS-substring at index 2*i,
    // or the ID for the LMS-substring at index 2*i+1.
    // To produce the subproblem we need only remove the zeros
    // and change ID into ID-1 (our IDs start at 1, but text chars start at 0).
    //
    // map_32 packs the result, which is the input to the recursion,
    // into the top of sa, so that the recursion result can be stored
    // in the bottom of sa, which sets up for expand_8_32 well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #if defined(__powerpc__)
    struct sgttyb {
            char    sg_ispeed;
            char    sg_ospeed;
            char    sg_erase;
            char    sg_kill;
            short   sg_flags;
    };
    
    struct tchars {
            char    t_intrc;
            char    t_quitc;
            char    t_startc;
            char    t_stopc;
            char    t_eofc;
            char    t_brkc;
    };
    
    struct ltchars {
            char    t_suspc;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/mmu.go

            container.empty();
            container.css('opacity', '');
            chart = new google.visualization.LineChart(container[0]);
            chart = new google.visualization.LineChart(document.getElementById('mmu_chart'));
            chart.draw(data, options);
    
            google.visualization.events.addListener(chart, 'select', selectHandler);
            $('#details').empty();
          }
    
          function selectHandler() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // Setup to allow measuring text width.
      const textSizer = document.createElement('canvas');
      textSizer.id = 'textsizer';
      const textContext = textSizer.getContext('2d');
    
      // Get DOM elements.
      const chart = find('stack-chart');
      const search = find('search');
      const actions = find('action-menu');
      const actionTitle = find('action-title');
      const detailBox = find('current-details');
    
      window.addEventListener('resize', render);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_REVOKE                   = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }
    	SYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }
    	SYS_UMASK                    = 60  // { int umask(int newmask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top