Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 353 for Id (0.14 sec)

  1. pkg/kubelet/kuberuntime/helpers_test.go

    			containerHashLabel: "1234",
    		},
    	}
    	expect := &kubecontainer.Container{
    		ID: kubecontainer.ContainerID{
    			Type: runtimetesting.FakeRuntimeName,
    			ID:   "test-id",
    		},
    		Name:                "test-name",
    		ImageID:             "test-image-id",
    		ImageRef:            "test-image-ref",
    		Image:               "test-image",
    		ImageRuntimeHandler: "",
    		Hash:                uint64(0x1234),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		if locations[l.ID] != nil {
    			return fmt.Errorf("multiple locations with same id: %d", l.ID)
    		}
    		locations[l.ID] = l
    		if m := l.Mapping; m != nil {
    			if m.ID == 0 || mappings[m.ID] != m {
    				return fmt.Errorf("inconsistent mapping %p: %d", m, m.ID)
    			}
    		}
    		for _, ln := range l.Line {
    			f := ln.Function
    			if f == nil {
    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/cmd/compile/internal/ssa/func.go

    	var v *Value
    	if f.freeValues != nil {
    		v = f.freeValues
    		f.freeValues = v.argstorage[0]
    		v.argstorage[0] = nil
    	} else {
    		ID := f.vid.get()
    		if int(ID) < len(f.Cache.values) {
    			v = &f.Cache.values[ID]
    			v.ID = ID
    		} else {
    			v = &Value{ID: ID}
    		}
    	}
    	v.Op = op
    	v.Type = t
    	v.Block = b
    	if notStmtBoundary(op) {
    		pos = pos.WithNotStmt()
    	}
    	v.Pos = pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/aggregate/controller.go

    func (c *Controller) AppendServiceHandlerForCluster(id cluster.ID, f model.ServiceHandler) {
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	handler, ok := c.handlersByCluster[id]
    	if !ok {
    		c.handlersByCluster[id] = &model.ControllerHandlers{}
    		handler = c.handlersByCluster[id]
    	}
    	handler.AppendServiceHandler(f)
    }
    
    func (c *Controller) UnRegisterHandlersForCluster(id cluster.ID) {
    	c.storeLock.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/trace/tasks.go

    		<td class="elapsed">{{$el.Duration}}</td>
    		<td></td>
    		<td>
    			<a href="/trace?focustask={{$el.ID}}#{{asMillisecond $el.Start}}:{{asMillisecond $el.End}}">Task {{$el.ID}}</a>
    			<a href="/trace?taskid={{$el.ID}}#{{asMillisecond $el.Start}}:{{asMillisecond $el.End}}">(goroutine view)</a>
    			({{if .Complete}}complete{{else}}incomplete{{end}})
    		</td>
    	</tr>
    	{{range $el.Events}}
    	<tr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    }
    
    // ShouldEnable reports whether the change with the given id should be enabled.
    func (m *Matcher) ShouldEnable(id uint64) bool {
    	if m == nil {
    		return true
    	}
    	return m.matchResult(id) == m.enable
    }
    
    // ShouldPrint reports whether to print identifying information about the change with the given id.
    func (m *Matcher) ShouldPrint(id uint64) bool {
    	if m == nil || m.quiet {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/internal/trace/summary.go

    		task.Goroutines[ev.Goroutine()] = s.gs[ev.Goroutine()]
    		task.Logs = append(task.Logs, ev)
    	}
    }
    
    func (s *Summarizer) getOrAddTask(id TaskID) *UserTaskSummary {
    	task := s.tasks[id]
    	if task == nil {
    		task = &UserTaskSummary{ID: id, Goroutines: make(map[GoID]*GoroutineSummary)}
    		s.tasks[id] = task
    	}
    	return task
    }
    
    // Finalize indicates to the summarizer that we're done processing the trace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. cmd/metacache-server-pool.go

    	// Use ID as the object name...
    	o.pool = z.getAvailablePoolIdx(ctx, minioMetaBucket, o.ID, 10<<20)
    	if o.pool < 0 {
    		// No space or similar, don't persist the listing.
    		o.pool = 0
    		o.Create = false
    		o.ID = ""
    		o.Transient = true
    		return entries, errDiskFull
    	}
    	o.set = z.serverPools[o.pool].getHashedSetIndex(o.ID)
    	saver := z.serverPools[o.pool].sets[o.set]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/cmd/trace/gen.go

    		endTime = task.End.Time()
    	}
    	arg := struct {
    		ID     uint64 `json:"id"`
    		StartG uint64 `json:"start_g,omitempty"`
    		EndG   uint64 `json:"end_g,omitempty"`
    	}{
    		ID:     uint64(task.ID),
    		StartG: uint64(startG),
    		EndG:   uint64(endG),
    	}
    
    	// Emit the task slice and notify the emitter of the task.
    	ctx.Task(uint64(task.ID), fmt.Sprintf("T%d %s", task.ID, task.Name), sortIndex)
    	ctx.TaskSlice(traceviewer.SliceEvent{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		stop := make(chan struct{})
    		client := cluster.Client
    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    		log.Infof("Initializing Kubernetes service registry %q", options.ClusterID)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top