Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mapael (0.23 sec)

  1. src/cmd/cgo/doc.go

    found in the _cgo_export.h generated header, after any preambles
    copied from the cgo input files. Functions with multiple
    return values are mapped to functions returning a struct.
    
    Not all Go types can be mapped to C types in a useful way.
    Go struct types are not supported; use a C struct type.
    Go array types are not supported; use a C pointer.
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue1435.go

    	}
    	if !foundAThread {
    		return fmt.Errorf("found no thread /proc/<TID>/status files for process %q", expectedProc)
    	}
    	return nil
    }
    
    // test1435 test 9 glibc implemented setuid/gid syscall functions are
    // mapped.  This test is a slightly more expansive test than that of
    // src/syscall/syscall_linux_test.go:TestSetuidEtc() insofar as it
    // launches concurrent threads from C code via CGo and validates that
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		if _, ok := ptr.Type.(*dwarf.VoidType); ok {
    			return true
    		}
    	}
    	return false
    }
    
    // jniTypes maps from JNI types that we want to be uintptrs, to the underlying type to which
    // they are mapped. The base "jobject" maps to the empty string.
    var jniTypes = map[string]string{
    	"jobject":       "",
    	"jclass":        "jobject",
    	"jthrowable":    "jobject",
    	"jstring":       "jobject",
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. src/bytes/bytes.go

    	return Map(unicode.ToLower, s)
    }
    
    // ToTitle treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their title case.
    func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
    
    // ToUpperSpecial treats s as UTF-8-encoded bytes and returns a copy with all the Unicode letters mapped to their
    // upper case, giving priority to the special casing rules.
    func ToUpperSpecial(c unicode.SpecialCase, s []byte) []byte {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  5. misc/ios/go_ios_exec.go

    			if path, ok := values["Path"]; ok {
    				return path, nil
    			}
    		}
    	}
    	return "", fmt.Errorf("failed to find device path for bundle: %s", bundleID)
    }
    
    // Parse an xml encoded plist. Plist values are mapped to string.
    func parsePlistDict(dict []byte) (map[string]string, error) {
    	d := xml.NewDecoder(bytes.NewReader(dict))
    	values := make(map[string]string)
    	var key string
    	var hasKey bool
    	for {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  6. api/go1.4.txt

    pkg text/template/parse, method (*IdentifierNode) SetTree(*Tree) *IdentifierNode
    pkg html/template, type Error struct, Node parse.Node
    
    # CL 127470043 unicode: strconv: regexp: Upgrade to Unicode 7.0.0., Marcel van Lohuizen <******@****.***>
    pkg unicode, const Version = "7.0.0"
    pkg unicode, var Bassa_Vah *RangeTable
    pkg unicode, var Caucasian_Albanian *RangeTable
    pkg unicode, var Duployan *RangeTable
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top