Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for elem1 (0.35 sec)

  1. src/crypto/tls/common.go

    func (c *lruSessionCache) Put(sessionKey string, cs *ClientSessionState) {
    	c.Lock()
    	defer c.Unlock()
    
    	if elem, ok := c.m[sessionKey]; ok {
    		if cs == nil {
    			c.q.Remove(elem)
    			delete(c.m, sessionKey)
    		} else {
    			entry := elem.Value.(*lruSessionCacheEntry)
    			entry.state = cs
    			c.q.MoveToFront(elem)
    		}
    		return
    	}
    
    	if c.q.Len() < c.capacity {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    		return p.sliceType(pos)
    	}
    
    	// x [n]E or x[n,], x[n1, n2], ...
    	n, comma := p.typeList(false)
    	p.want(_Rbrack)
    	if !comma {
    		if elem := p.typeOrNil(); elem != nil {
    			// x [n]E
    			t := new(ArrayType)
    			t.pos = pos
    			t.Len = n
    			t.Elem = elem
    			return t
    		}
    	}
    
    	// x[n,], x[n1, n2], ...
    	t := new(IndexExpr)
    	t.pos = pos
    	// t.X will be filled in by caller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    // plugin weights there is not an overflow of MaxTotalScore.
    func getScoreWeights(f *frameworkImpl, plugins []config.Plugin) error {
    	var totalPriority int64
    	scorePlugins := reflect.ValueOf(&f.scorePlugins).Elem()
    	pluginType := scorePlugins.Type().Elem()
    	for _, e := range plugins {
    		pg := f.pluginsMap[e.Name]
    		if !reflect.TypeOf(pg).Implements(pluginType) {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    		if gohostos == "darwin" && filepath.Base(f) == ".DS_Store" {
    			continue // unfortunate but not unexpected
    		}
    		elem := strings.TrimSuffix(filepath.Base(f), ".exe")
    		if !ok[f] && elem != "go" && elem != "gofmt" && elem != goos+"_"+goarch {
    			fatalf("unexpected new file in $GOROOT/bin: %s", elem)
    		}
    	}
    
    	// Remove go_bootstrap now that we're done.
    	xremove(pathf("%s/go_bootstrap"+exe, tooldir))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    			// See analogous comment for *Array.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			check.indexedElts(e.Elts, utyp.elem, -1)
    
    		case *Map:
    			// Prevent crash if the map referred to is not yet set up.
    			// See analogous comment for *Array.
    			if utyp.key == nil || utyp.elem == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    			// See analogous comment for *Array.
    			if utyp.elem == nil {
    				check.error(e, InvalidTypeCycle, "invalid recursive type")
    				goto Error
    			}
    			check.indexedElts(e.ElemList, utyp.elem, -1)
    
    		case *Map:
    			// Prevent crash if the map referred to is not yet set up.
    			// See analogous comment for *Array.
    			if utyp.key == nil || utyp.elem == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    (Addr {sym} base) => (MOVDaddr {sym} base)
    (LocalAddr <t> {sym} base mem) && t.Elem().HasPointers() => (MOVDaddr {sym} (SPanchored base mem))
    (LocalAddr <t> {sym} base _)  && !t.Elem().HasPointers() => (MOVDaddr {sym} base)
    (ITab (Load ptr mem)) => (MOVDload ptr mem)
    
    // block rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    				}
    				vv := reflect.New(reflect.TypeOf(tt.ptr).Elem())
    				dec = NewDecoder(bytes.NewReader(enc))
    				if tt.useNumber {
    					dec.UseNumber()
    				}
    				if err := dec.Decode(vv.Interface()); err != nil {
    					t.Fatalf("%s: Decode(%#q) error after roundtrip: %v", tt.Where, enc, err)
    				}
    				if !reflect.DeepEqual(v.Elem().Interface(), vv.Elem().Interface()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	OpenFile func(path string) (io.ReadCloser, error)
    }
    
    // joinPath calls ctxt.JoinPath (if not nil) or else filepath.Join.
    func (ctxt *Context) joinPath(elem ...string) string {
    	if f := ctxt.JoinPath; f != nil {
    		return f(elem...)
    	}
    	return filepath.Join(elem...)
    }
    
    // splitPathList calls ctxt.SplitPathList (if not nil) or else filepath.SplitList.
    func (ctxt *Context) splitPathList(s string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    		typedefdie = d.dotypedef(&dwtypes, name, die)
    		newattr(die, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, bytesize, 0)
    		s := decodetypeArrayElem(d.ldr, d.arch, gotype)
    		elem := d.defgotype(s)
    		d.newrefattr(die, dwarf.DW_AT_go_elem, elem)
    
    	case abi.String:
    		die = d.newdie(&dwtypes, dwarf.DW_ABRV_STRINGTYPE, name)
    		newattr(die, dwarf.DW_AT_byte_size, dwarf.DW_CLS_CONSTANT, bytesize, 0)
    
    	case abi.Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top