Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,603 for thar (0.03 sec)

  1. src/cmd/compile/internal/types2/infer.go

    // Otherwise, if tpar has a core type T, it returns a term corresponding to that
    // core type and false. In that case, if any term of tpar has a tilde, the core
    // term has a tilde. In all other cases coreTerm returns (nil, false).
    func coreTerm(tpar *TypeParam) (*term, bool) {
    	n := 0
    	var single *term // valid if n == 1
    	var tilde bool
    	tpar.is(func(t *term) bool {
    		if t == nil {
    			assert(n == 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

       * nullness checker can already "prove" are non-null. That means that the first parameter to
       * checkNotNull *should* be annotated to require it to be non-null.
       *
       * However, for a variety of reasons, Google developers have written a ton of code over the past
       * decade that assumes that they can use checkNotNull for non-precondition checks. I had hoped to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    typedef ptrdiff_t intgo;
    
    #define GO_CGO_GOSTRING_TYPEDEF
    typedef struct { const char *p; intgo n; } _GoString_;
    typedef struct { char *p; intgo n; intgo c; } _GoBytes_;
    _GoString_ GoString(char *p);
    _GoString_ GoStringN(char *p, int l);
    _GoBytes_ GoBytes(void *p, int n);
    char *CString(_GoString_);
    void *CBytes(_GoBytes_);
    void *_CMalloc(size_t);
    
    __attribute__ ((unused))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/subst.go

    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    // makeRenameMap is like makeSubstMap, but creates a map used to rename type
    // parameters in from with the type parameters in to.
    func makeRenameMap(from, to []*TypeParam) substMap {
    	assert(len(from) == len(to))
    	proj := make(substMap, len(from))
    	for i, tpar := range from {
    		proj[tpar] = to[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/signature.go

    				smap := makeRenameMap(recvTParams, tparams)
    				for i, tpar := range tparams {
    					recvTPar := recvTParams[i]
    					check.mono.recordCanon(tpar, recvTPar)
    					// recvTPar.bound is (possibly) parameterized in the context of the
    					// receiver type declaration. Substitute parameters for the current
    					// context.
    					tpar.bound = check.subst(tpar.obj.pos, recvTPar.bound, smap, nil, check.context())
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    An error on not-type:1 indicates that foo is not a type (if declared at all, it is an identifier).
    An error on not-int-const:1 indicates that foo is not an integer constant.
    An error on not-num-const:1 indicates that foo is not a number constant.
    An error on not-str-lit:1 indicates that foo is not a string literal.
    An error on not-signed-int-const:1 indicates that foo is not a signed integer constant.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. doc/godebug.md

    using newer toolchains to compile old code.
    
    A GODEBUG setting is a `key=value` pair
    that controls the execution of certain parts of a Go program.
    The environment variable `GODEBUG`
    can hold a comma-separated list of these settings.
    For example, if a Go program is running in an environment that contains
    
    	GODEBUG=http2client=0,http2server=0
    
    then that Go program will disable the use of HTTP/2 by default in both
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/BaseEncoding.java

       *     separator
       */
      public abstract BaseEncoding withPadChar(char padChar);
    
      /**
       * Returns an encoding that behaves equivalently to this encoding, but adds a separator string
       * after every {@code n} characters. Any occurrences of any characters that occur in the separator
       * are skipped over in decoding.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/BaseEncoding.java

       *     separator
       */
      public abstract BaseEncoding withPadChar(char padChar);
    
      /**
       * Returns an encoding that behaves equivalently to this encoding, but adds a separator string
       * after every {@code n} characters. Any occurrences of any characters that occur in the separator
       * are skipped over in decoding.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top