Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for seminfo (0.28 sec)

  1. src/cmd/compile/internal/ssa/opGen.go

    		name:   "FlagEQ",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagLT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagLT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_UGT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:   "FlagGT_ULT",
    		argLen: 0,
    		reg:    regInfo{},
    	},
    	{
    		name:    "MOVSSconst1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		gp2xer1xer  = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb, xer}, outputs: []regMask{gp, xer}, clobbers: xer}
    		gp31        = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb, gp | sp | sb}, outputs: []regMask{gp}}
    		gp1cr       = regInfo{inputs: []regMask{gp | sp | sb}}
    		gp2cr       = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb}}
    		crgp        = regInfo{inputs: nil, outputs: []regMask{gp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cache.go

    	}
    
    	return cachevalue.NewFromFunc(1*time.Minute,
    		cachevalue.Opts{ReturnLastGood: true},
    		loadCPUMetrics)
    }
    
    func newMemoryMetricsCache() *cachevalue.Cache[madmin.MemInfo] {
    	loadMemoryMetrics := func(ctx context.Context) (v madmin.MemInfo, err error) {
    		var types madmin.MetricType = madmin.MetricsMem
    
    		m := collectLocalMetrics(types, collectMetricsOpts{
    			hosts: map[string]struct{}{
    				globalLocalNodeName: {},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		gpstore2       = regInfo{inputs: []regMask{gpspsbg, gpg, gpg}}
    		gpxchg         = regInfo{inputs: []regMask{gpspsbg, gpg}, outputs: []regMask{gp}}
    		gpcas          = regInfo{inputs: []regMask{gpspsbg, gpg, gpg}, outputs: []regMask{gp}}
    		fp01           = regInfo{inputs: nil, outputs: []regMask{fp}}
    		fp11           = regInfo{inputs: []regMask{fp}, outputs: []regMask{fp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. internal/event/targetlist.go

    			defer wg.Done()
    
    			if err := target.Save(event); err != nil {
    				list.eventsErrorsTotal.Add(1)
    				list.incFailedEvents(id)
    				reqInfo := &logger.ReqInfo{}
    				reqInfo.AppendTags("targetID", id.String())
    				logger.LogOnceIf(logger.SetReqInfo(context.Background(), reqInfo), logSubsys, err, id.String())
    			}
    		}(id, target)
    	}
    	wg.Wait()
    	list.totalEvents.Add(1)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. cmd/auth-handler.go

    	reqInfo := logger.GetReqInfo(ctx)
    	if reqInfo == nil {
    		return ErrAccessDenied
    	}
    
    	cred := reqInfo.Cred
    	owner := reqInfo.Owner
    	region := reqInfo.Region
    	bucket := reqInfo.BucketName
    	object := reqInfo.ObjectName
    	versionID := reqInfo.VersionID
    
    	if action != policy.ListAllMyBucketsAction && cred.AccessKey == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/crypto/internal/hpke/hpke.go

    	suiteID = binary.BigEndian.AppendUint16(suiteID, aeadID)
    	return suiteID
    }
    
    func ParseHPKEPublicKey(kemID uint16, bytes []byte) (*ecdh.PublicKey, error) {
    	kemInfo, ok := SupportedKEMs[kemID]
    	if !ok {
    		return nil, errors.New("unsupported KEM id")
    	}
    	return kemInfo.curve.NewPublicKey(bytes)
    }
    
    type uint128 struct {
    	hi, lo uint64
    }
    
    func (u uint128) addOne() uint128 {
    	lo, carry := bits.Add64(u.lo, 1, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. internal/grid/trace.go

    		NodeName:  remote,
    		Time:      start,
    		Duration:  end.Sub(start),
    		Path:      t.Subroute,
    		Error:     errString,
    		Bytes:     int64(len(req) + len(resp)),
    		HTTP: &madmin.TraceHTTPStats{
    			ReqInfo: madmin.TraceRequestInfo{
    				Time:    start,
    				Proto:   "grid",
    				Method:  "REQ",
    				Client:  local,
    				Headers: nil,
    				Path:    t.Subroute,
    				Body:    []byte(body),
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. cmd/kms-handlers.go

    		Prefix: r.Form.Get("pattern"),
    	})
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	values := make([]kes.KeyInfo, 0, len(names))
    	for _, name := range names {
    		values = append(values, kes.KeyInfo{
    			Name: name,
    		})
    	}
    	if res, err := json.Marshal(values); err != nil {
    		writeCustomErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInternalError), err.Error(), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    			anonymizeAddr(&localMemInfo)
    			healthInfo.Sys.MemInfo = append(healthInfo.Sys.MemInfo, localMemInfo)
    
    			peerMemInfos := globalNotificationSys.GetMemInfo(healthCtx)
    			for _, m := range peerMemInfos {
    				anonymizeAddr(&m)
    				healthInfo.Sys.MemInfo = append(healthInfo.Sys.MemInfo, m)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    	getAndWriteSysErrors := func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top