Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 142 for Id (0.02 sec)

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

    	//
    	// For an embedded field, Defs returns the field *Var it defines.
    	//
    	// Invariant: Defs[id] == nil || Defs[id].Pos() == id.Pos()
    	Defs map[*syntax.Name]Object
    
    	// Uses maps identifiers to the objects they denote.
    	//
    	// For an embedded field, Uses returns the *TypeName it denotes.
    	//
    	// Invariant: Uses[id].Pos() != id.Pos()
    	Uses map[*syntax.Name]Object
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	// where the proxy and service instances reside may have more than one IP address
    	IPAddresses []string
    
    	// ID is the unique platform-specific sidecar proxy ID. For k8s it is the pod ID and
    	// namespace <podName.namespace>.
    	ID string
    
    	// Locality is the location of where Envoy proxy runs. This is extracted from
    	// the registry where possible. If the registry doesn't provide a locality for the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    func dumpOrdering(order *ordering) string {
    	var sb strings.Builder
    	for id, state := range order.gStates {
    		fmt.Fprintf(&sb, "G %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.pStates {
    		fmt.Fprintf(&sb, "P %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.mStates {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/prometheus/kube.go

    		if err != nil {
    			return nil, err
    		}
    
    		c.api[cls.Name()] = prometheusApiV1.NewAPI(client)
    	}
    	return c, nil
    }
    
    func (c *kubeComponent) ID() resource.ID {
    	return c.id
    }
    
    // API implements environment.DeployedPrometheus.
    func (c *kubeComponent) API() prometheusApiV1.API {
    	return c.api[c.clusters.Default().Name()]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/ambient/waypoint.go

    }
    
    func (k kubeComponent) Inbound() string {
    	return k.inbound.Address()
    }
    
    func (k kubeComponent) Outbound() string {
    	return k.outbound.Address()
    }
    
    func (k kubeComponent) ID() resource.ID {
    	return k.id
    }
    
    func (k kubeComponent) Close() error {
    	if k.inbound != nil {
    		k.inbound.Close()
    	}
    	if k.outbound != nil {
    		k.outbound.Close()
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-utils_test.go

    		if fi.VersionID != versions[i].VersionID {
    			t.Fatalf("getFileInfoVersions: versions don't match at %d, version id expected %s but got %s", i, fi.VersionID, versions[i].VersionID)
    		}
    		if fi.NumVersions != len(fivs.Versions) {
    			t.Fatalf("getFileInfoVersions: version with %s version id expected to have %d as NumVersions but got %d", fi.VersionID, len(fivs.Versions), fi.NumVersions)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads.go

    	if con.ID() == "" {
    		return
    	}
    	s.removeCon(con.ID())
    	if s.StatusReporter != nil {
    		s.StatusReporter.RegisterDisconnect(con.ID(), AllTrackingEventTypes)
    	}
    	s.WorkloadEntryController.OnDisconnect(con)
    }
    
    func connectionID(node string) string {
    	id := atomic.AddInt64(&connectionNumber, 1)
    	return node + "-" + strconv.FormatInt(id, 10)
    }
    
    // Only used for test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. cmd/object-api-datatypes.go

    type ListMultipartsInfo struct {
    	// Together with upload-id-marker, this parameter specifies the multipart upload
    	// after which listing should begin.
    	KeyMarker string
    
    	// Together with key-marker, specifies the multipart upload after which listing
    	// should begin. If key-marker is not specified, the upload-id-marker parameter
    	// is ignored.
    	UploadIDMarker string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. pkg/kube/krt/informer.go

    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/ptr"
    )
    
    type informer[I controllers.ComparableObject] struct {
    	inf            kclient.Informer[I]
    	log            *istiolog.Scope
    	collectionName string
    	id             collectionUID
    
    	eventHandlers *handlers[I]
    	augmentation  func(a any) any
    	synced        chan struct{}
    }
    
    // nolint: unused // (not true, its to implement an interface)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kubelet/container/helpers.go

    	runningPod := Pod{
    		ID:        podStatus.ID,
    		Name:      podStatus.Name,
    		Namespace: podStatus.Namespace,
    	}
    	for _, containerStatus := range podStatus.ContainerStatuses {
    		if containerStatus.State != ContainerStateRunning {
    			continue
    		}
    		container := &Container{
    			ID:                  containerStatus.ID,
    			Name:                containerStatus.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top