Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tup (0.04 sec)

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

    		case *Slice:
    			do(typ.Elem())
    
    		case *Interface:
    			for i := 0; i < typ.NumMethods(); i++ {
    				do(typ.Method(i).Type())
    			}
    		case *Signature:
    			tuple := func(tup *Tuple) {
    				for i := 0; i < tup.Len(); i++ {
    					do(tup.At(i).Type())
    				}
    			}
    			tuple(typ.Params())
    			tuple(typ.Results())
    		case *Struct:
    			for i := 0; i < typ.NumFields(); i++ {
    				do(typ.Field(i).Type())
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.go

    	}
    	w.byte(']')
    }
    
    func (w *typeWriter) typeName(obj *TypeName) {
    	w.string(packagePrefix(obj.pkg, w.qf))
    	w.string(obj.name)
    }
    
    func (w *typeWriter) tuple(tup *Tuple, variadic bool) {
    	w.byte('(')
    	if tup != nil {
    		for i, v := range tup.vars {
    			if i > 0 {
    				w.byte(',')
    			}
    			// parameter names are ignored for type identity and thus type hashes
    			if w.ctxt == nil && v.name != "" && w.paramNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    	}
    	w.byte(']')
    }
    
    func (w *typeWriter) typeName(obj *TypeName) {
    	w.string(packagePrefix(obj.pkg, w.qf))
    	w.string(obj.name)
    }
    
    func (w *typeWriter) tuple(tup *Tuple, variadic bool) {
    	w.byte('(')
    	if tup != nil {
    		for i, v := range tup.vars {
    			if i > 0 {
    				w.byte(',')
    			}
    			// parameter names are ignored for type identity and thus type hashes
    			if w.ctxt == nil && v.name != "" && w.paramNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/go/types/mono.go

    		case *Slice:
    			do(typ.Elem())
    
    		case *Interface:
    			for i := 0; i < typ.NumMethods(); i++ {
    				do(typ.Method(i).Type())
    			}
    		case *Signature:
    			tuple := func(tup *Tuple) {
    				for i := 0; i < tup.Len(); i++ {
    					do(tup.At(i).Type())
    				}
    			}
    			tuple(typ.Params())
    			tuple(typ.Results())
    		case *Struct:
    			for i := 0; i < typ.NumFields(); i++ {
    				do(typ.Field(i).Type())
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/moment-with-locales.min.js

    n=function(e){var a=Math.floor(e%1e3/100),t=Math.floor(e%100/10),s=e%10,n="";0<a&&(n+=Zn[a]+"vatlh");0<t&&(n+=(""!==n?" ":"")+Zn[t]+"maH");0<s&&(n+=(""!==n?" ":"")+Zn[s]);return""===n?"pagh":n}(e);switch(t){case"ss":return n+" lup";case"mm":return n+" tup";case"hh":return n+" rep";case"dd":return n+" jaj";case"MM":return n+" jar";case"yy":return n+" DIS"}}l.defineLocale("tlh",{months:"tera\u2019 jar wa\u2019_tera\u2019 jar cha\u2019_tera\u2019 jar wej_tera\u2019 jar loS_tera\u2019 jar vagh_tera\u2019...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
Back to top