Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for cctype (0.14 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/cmd/compile/internal/typecheck/typecheck.go

    		n := n.(*ir.LogicalExpr)
    		n.X, n.Y = Expr(n.X), Expr(n.Y)
    		if n.X.Type() == nil || n.Y.Type() == nil {
    			n.SetType(nil)
    			return n
    		}
    		// For "x == x && len(s)", it's better to report that "len(s)" (type int)
    		// can't be used with "&&" than to report that "x == x" (type untyped bool)
    		// can't be converted to int (see issue #41500).
    		if !n.X.Type().IsBoolean() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Hashing.java

             * CRC32C to Checksum. This may carry some performance cost
             * (https://stackoverflow.com/a/22321671/28465), but I'd have to benchmark more carefully to
             * even detect it.
             */
            return MethodHandles.lookup()
                .findConstructor(clazz, methodType(void.class))
                .asType(methodType(Checksum.class));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    	//
    	// This environment type is compatible with a specific Kubernetes
    	// major/minor version. To ensure safe rollback, this environment type
    	// may not include all the function libraries, variables, type declarations, and CEL
    	// language settings available in the StoredExpressions environment type.
    	//
    	// NewExpressions must be used to validate (parse, compile, type check)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/webapp/WEB-INF/view/advance.jsp

    		</main>
    		<jsp:include page="footer.jsp" />
    	</la:form>
    	<input type="hidden" id="contextPath" value="${contextPath}" />
    	<script type="text/javascript" src="${fe:url('/js/jquery-3.6.3.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script>
    	<script type="text/javascript" src="${fe:url('/js/advance.js')}"></script>
    </body>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top