Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for unminit (0.38 sec)

  1. pkg/util/smallset/smallset_test.go

    	assert.Equal(t, nset.Contains("d"), true)
    	assert.Equal(t, nset.Contains("e"), false)
    	assert.Equal(t, nset.Contains("z"), true)
    }
    
    func TestNew(t *testing.T) {
    	var uninit smallset.Set[string]
    	assert.Equal(t, uninit.IsNil(), true)
    	assert.Equal(t, uninit.IsEmpty(), true)
    	empty := smallset.New[string]()
    	assert.Equal(t, empty.IsNil(), true)
    	assert.Equal(t, empty.IsEmpty(), true)
    	empty2 := smallset.New[string]([]string{}...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		if sample.NumLabel == nil {
    			sample.NumLabel = map[string][]int64{key: value}
    		} else {
    			sample.NumLabel[key] = value
    		}
    		if sample.NumUnit == nil {
    			sample.NumUnit = map[string][]string{key: unit}
    		} else {
    			sample.NumUnit[key] = unit
    		}
    	}
    }
    
    // RemoveNumLabel removes all numerical labels associated with the specified key for all
    // samples in the profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.go

    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    	"runtime"
    )
    
    // This file implements GCM using an optimized GHASH function.
    
    //go:noescape
    func gcmInit(productTable *[256]byte, h []byte)
    
    //go:noescape
    func gcmHash(output []byte, productTable *[256]byte, inp []byte, len int)
    
    //go:noescape
    func gcmMul(output []byte, productTable *[256]byte)
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		NumLabel: make(map[string][]int64, len(src.NumLabel)),
    		NumUnit:  make(map[string][]string, len(src.NumLabel)),
    	}
    	for i, l := range src.Location {
    		s.Location[i] = pm.mapLocation(l)
    	}
    	for k, v := range src.Label {
    		vv := make([]string, len(v))
    		copy(vv, v)
    		s.Label[k] = vv
    	}
    	for k, v := range src.NumLabel {
    		u := src.NumUnit[k]
    		vv := make([]int64, len(v))
    		uu := make([]string, len(u))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/order.go

    				do(1, types.Types[types.TBOOL])
    				if len(init) != 0 {
    					ir.DumpList("ninit", init)
    					base.Fatalf("ninit on select recv")
    				}
    				orderBlock(ncas.PtrInit(), o.free)
    
    			case ir.OSEND:
    				r := r.(*ir.SendStmt)
    				if len(r.Init()) != 0 {
    					ir.DumpList("ninit", r.Init())
    					base.Fatalf("ninit on select send")
    				}
    
    				// case c <- x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    				if n == nil {
    					continue
    				}
    				n.addSample(dw, w, labels, sample.NumLabel, sample.NumUnit, o.FormatTag, false)
    				if parent != nil {
    					parent.AddToEdgeDiv(n, dw, w, false, lidx != len(lines)-1)
    				}
    				parent = n
    			}
    		}
    		if parent != nil {
    			parent.addSample(dw, w, labels, sample.NumLabel, sample.NumUnit, o.FormatTag, true)
    		}
    	}
    
    	nodes := make(Nodes, 0, len(prof.Location))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		var numKeys []string
    		for k := range s.NumLabel {
    			numKeys = append(numKeys, k)
    		}
    		sort.Strings(numKeys)
    		for _, k := range numKeys {
    			keyX := addString(strings, k)
    			vs := s.NumLabel[k]
    			units := s.NumUnit[k]
    			for i, v := range vs {
    				var unitX int64
    				if len(units) != 0 {
    					unitX = addString(strings, units[i])
    				}
    				s.labelX = append(s.labelX,
    					label{
    						keyX:  keyX,
    						numX:  v,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    				unit := o.NumLabelUnits[k]
    				numValues := make([]int64, len(vs))
    				numUnit := make([]string, len(vs))
    				for i, v := range vs {
    					numValues[i] = v
    					numUnit[i] = unit
    				}
    				numLabels[k] = append(numLabels[k], numValues...)
    				numUnits[k] = append(numUnits[k], numUnit...)
    			}
    		}
    		s.NumLabel = numLabels
    		s.NumUnit = numUnits
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. src/encoding/gob/encode.go

    }
    
    func buildEncEngine(info *typeInfo, ut *userTypeInfo, building map[*typeInfo]bool) *encEngine {
    	// Check for recursive types.
    	if building != nil && building[info] {
    		return nil
    	}
    	info.encInit.Lock()
    	defer info.encInit.Unlock()
    	enc := info.encoder.Load()
    	if enc == nil {
    		if building == nil {
    			building = make(map[*typeInfo]bool)
    		}
    		building[info] = true
    		enc = compileEnc(ut, building)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_ppc64x.s

    	P8_STXVB16X(V1,blk_out,R0); \
    	P8_STXVB16X(V2,blk_out,R16); \
    	P8_STXVB16X(V3,blk_out,R17); \
    	P8_STXVB16X(V4,blk_out,R18); \
    	ADD $64, blk_out
    
    // func gcmInit(productTable *[256]byte, h []byte)
    TEXT ยทgcmInit(SB), NOSPLIT, $0-32
    	MOVD productTable+0(FP), XIP
    	MOVD h+8(FP), HTBL
    
    	MOVD   $0x10, R8
    	MOVD   $0x20, R9
    	MOVD   $0x30, R10
    	LXVD2X (HTBL)(R0), VH // Load H
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top