Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for cctype (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    };
    #endif
    
    // A handy wrapper around RemoveConst that works when the argument
    // T depends on template parameters.
    #define GTEST_REMOVE_CONST_(T) \
        typename ::testing::internal::RemoveConst<T>::type
    
    // Turns const U&, U&, const U, and U all into U.
    #define GTEST_REMOVE_REFERENCE_AND_CONST_(T) \
        GTEST_REMOVE_CONST_(GTEST_REMOVE_REFERENCE_(T))
    
    // Adds reference to a type if it is not a reference type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheBuilder.java

       * strong values, and no automatic eviction of any kind.
       *
       * <p>Note that while this return type is {@code CacheBuilder<Object, Object>}, type parameters on
       * the {@link #build} methods allow you to create a cache of any key and value type desired.
       */
      public static CacheBuilder<Object, Object> newBuilder() {
        return new CacheBuilder<>();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top