Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for cctype (0.11 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

    <?xml version="1.0"?>
    
    <!DOCTYPE suppressions PUBLIC
        "-//Puppy Crawl//DTD Suppressions 1.1//EN"
        "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
    
    <suppressions>
        <!-- These packages are duplicated in core-api, don't require a package-info.java in each place -->
        <suppress checks="JavadocPackage"
                  files=".*[/\\]stdlib-java-extensions[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\]api[/\\][^/\\]+"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/net/http/request_test.go

    	b := strings.NewReader(strings.ReplaceAll(message, "\n", "\r\n"))
    	req, err := NewRequest("POST", "/", b)
    	if err != nil {
    		t.Fatal("NewRequest:", err)
    	}
    	ctype := fmt.Sprintf(`multipart/form-data; boundary="%s"`, boundary)
    	req.Header.Set("Content-type", ctype)
    	return req
    }
    
    func validateTestMultipartContents(t *testing.T, req *Request, allMem bool) {
    	if g, e := req.FormValue("texta"), textaValue; g != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    Go struct types are not supported; use a C struct type.
    Go array types are not supported; use a C pointer.
    
    Go functions that take arguments of type string may be called with the
    C type _GoString_, described above. The _GoString_ type will be
    automatically defined in the preamble. Note that there is no way for C
    code to create a value of this type; this is only useful for passing
    string values from Go to C and back to Go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    echo ')'
    
    # Run C program to print error and syscall strings.
    (
    	echo -E "
    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <ctype.h>
    #include <string.h>
    #include <signal.h>
    
    #define nelem(x) (sizeof(x)/sizeof((x)[0]))
    
    enum { A = 'A', Z = 'Z', a = 'a', z = 'z' }; // avoid need for single quotes below
    
    struct tuple {
    	int num;
    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/cmd/compile/internal/types2/resolver.go

    	// Algorithm: Starting from a type expression, which may be a name,
    	// we follow that type through alias declarations until we reach a
    	// non-alias type name. If we encounter anything but pointer types or
    	// parentheses we're done. If we encounter more than one pointer type
    	// we're done.
    	ptr = seenPtr
    	var seen map[*TypeName]bool
    	for {
    		// check if we have a pointer type
    		// if pexpr, _ := typ.(*ast.StarExpr); pexpr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/go/types/resolver.go

    					//                have no type parameters, but this is checked later
    					//                when type checking the function type. Confirm that
    					//                we don't need to check tparams here.
    
    					ptr, recv, _ := check.unpackRecv(d.decl.Recv.List[0].Type, false)
    					// (Methods with invalid receiver cannot be associated to a type, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/call.go

    				// pointer-identical with (it's copied from) the type of the generic
    				// function argument and thus the function object.
    				// Before we change the type (type parameter renaming, below), make
    				// a clone of it as otherwise we implicitly modify the object's type
    				// (go.dev/issues/63260).
    				asig = clone(asig)
    				// Rename type parameters for cases like f(g, g); this gives each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. src/go/types/call.go

    				// pointer-identical with (it's copied from) the type of the generic
    				// function argument and thus the function object.
    				// Before we change the type (type parameter renaming, below), make
    				// a clone of it as otherwise we implicitly modify the object's type
    				// (go.dev/issues/63260).
    				asig = clone(asig)
    				// Rename type parameters for cases like f(g, g); this gives each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/runtime/symtab.go

    	hasmain uint8 // 1 if module contains the main function, 0 otherwise
    	bad     bool  // module failed to load and should be ignored
    
    	gcdatamask, gcbssmask bitvector
    
    	typemap map[typeOff]*_type // offset to *_rtype in previous module
    
    	next *moduledata
    }
    
    // A modulehash is used to compare the ABI of a new module or a
    // package in a new module with the loaded program.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top