Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ___ (0.12 sec)

  1. internal/s3select/sql/stringfuncs_test.go

    		{"abcd", "_b_d", runeZero, true, nil},
    
    		{"abcd", "____", runeZero, true, nil},
    		{"abcd", "____%", runeZero, true, nil},
    		{"abcd", "%____", runeZero, true, nil},
    		{"abcd", "%__", runeZero, true, nil},
    		{"abcd", "____", runeZero, true, nil},
    
    		{"", "_", runeZero, false, nil},
    		{"", "%", runeZero, true, nil},
    		{"abcd", "%%%%%", runeZero, true, nil},
    		{"abcd", "_____", runeZero, false, nil},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 3.1K bytes
    - Viewed (0)
  2. misc/cgo/gmp/gmp.go

    		mp_limb_t *_mp_d;
    	} __mpz_struct;
    
    	typedef __mpz_struct mpz_t[1];
    
    Cgo generates:
    
    	type _C_int int32
    	type _C_mp_limb_t uint64
    	type _C___mpz_struct struct {
    		_mp_alloc _C_int;
    		_mp_size _C_int;
    		_mp_d *_C_mp_limb_t;
    	}
    	type _C_mpz_t [1]_C___mpz_struct
    
    and then replaces each occurrence of a type C.xxx with _C_xxx.
    
    If xxx is data, cgo arranges for C.xxx to refer to the C variable,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		return s == "__cgodebug_ints" || s == "___cgodebug_ints"
    	}
    	isDebugFloats := func(s string) bool {
    		// Some systems use leading _ to denote non-assembly symbols.
    		return s == "__cgodebug_floats" || s == "___cgodebug_floats"
    	}
    	indexOfDebugStr := func(s string) int {
    		// Some systems use leading _ to denote non-assembly symbols.
    		if strings.HasPrefix(s, "___") {
    			s = s[1:]
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top