Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for Id (0.05 sec)

  1. pkg/kubelet/pod_workers_test.go

    				return nil
    			},
    			syncTerminatingRuntimePod: func(ctx context.Context, runningPod *kubecontainer.Pod) error {
    				func() {
    					lock.Lock()
    					defer lock.Unlock()
    					processed[runningPod.ID] = append(processed[runningPod.ID], syncPodRecord{
    						name:       runningPod.Name,
    						updateType: kubetypes.SyncPodKill,
    						runningPod: runningPod,
    					})
    				}()
    				return nil
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-decom.go

    	pd.QueuedBuckets = append(pd.QueuedBuckets, bucket.String())
    	pd.Bucket = bucket.Name
    	pd.Prefix = bucket.Prefix
    }
    
    // PoolStatus captures current pool status
    type PoolStatus struct {
    	ID           int                   `json:"id" msg:"id"`
    	CmdLine      string                `json:"cmdline" msg:"cl"`
    	LastUpdate   time.Time             `json:"lastUpdate" msg:"lu"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  3. cmd/naughty-disk_test.go

    	return -1, -1, -1
    }
    
    func (d *naughtyDisk) GetDiskID() (string, error) {
    	return d.disk.GetDiskID()
    }
    
    func (d *naughtyDisk) SetDiskID(id string) {
    	d.disk.SetDiskID(id)
    }
    
    func (d *naughtyDisk) NSScanner(ctx context.Context, cache dataUsageCache, updates chan<- dataUsageEntry, scanMode madmin.HealScanMode, weSleep func() bool) (info dataUsageCache, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	loopnest.calculateDepths()
    	if loopnest.depth(target.Block.ID) > loopnest.depth(x.Block.ID) {
    		return false
    	}
    	return canMergeLoad(target, load)
    }
    
    // canMergeLoad reports whether the load can be merged into target without
    // invalidating the schedule.
    func canMergeLoad(target, load *Value) bool {
    	if target.Block.ID != load.Block.ID {
    		// If the load is in a different block do not merge it.
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    }
    
    type iopFiles struct {
    	primaryIOP  iopInfo
    	configIOP   iopInfo
    	remoteIOP   iopInfo
    	gatewayIOP  iopInfo
    	eastwestIOP iopInfo
    }
    
    // ID implements resource.Instance
    func (i *istioImpl) ID() resource.ID {
    	return i.id
    }
    
    func (i *istioImpl) Settings() Config {
    	return i.cfg
    }
    
    func (i *istioImpl) Ingresses() ingress.Instances {
    	var out ingress.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. cmd/metacache-set.go

    }
    
    const metacachePrefix = ".metacache"
    
    func metacachePrefixForID(bucket, id string) string {
    	return pathJoin(bucketMetaPrefix, bucket, metacachePrefix, id)
    }
    
    // objectPath returns the object path of the cache.
    func (o *listPathOptions) objectPath(block int) string {
    	return pathJoin(metacachePrefixForID(o.Bucket, o.ID), "block-"+strconv.Itoa(block)+".s2")
    }
    
    func (o *listPathOptions) SetFilter() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    				ContainerStatuses: []*kubecontainer.Status{
    					{
    						ID:        kubecontainer.ContainerID{ID: "c1"},
    						Name:      "containerA",
    						StartedAt: time.Unix(1, 0).UTC(),
    						State:     kubecontainer.ContainerStateRunning,
    					},
    					{
    						ID:        kubecontainer.ContainerID{ID: "c2"},
    						Name:      "containerB",
    						StartedAt: time.Unix(2, 0).UTC(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    	}
    	w.byte(']')
    	return buf.String()
    }
    
    type typeParamsById []*TypeParam
    
    func (s typeParamsById) Len() int           { return len(s) }
    func (s typeParamsById) Less(i, j int) bool { return s[i].id < s[j].id }
    func (s typeParamsById) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // join unifies the given type parameters x and y.
    // If both type parameters already have a type associated with them
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    		UploadID:     uploadID,
    		ChecksumAlgo: userDefined[hash.MinIOMultipartChecksum],
    	}, nil
    }
    
    // NewMultipartUpload - initialize a new multipart upload, returns a
    // unique id. The unique id returned here is of UUID form, for each
    // subsequent request each UUID is unique.
    //
    // Implements S3 compatible initiate multipart API.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/cleanup.go

    	}
    	for _, f := range i.istiod {
    		f.Close()
    	}
    	return nil
    }
    
    func (i *istioImpl) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := i.cfg.SystemNamespace
    	d, err := ctx.CreateTmpDirectory("istio-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping Istio contents: %v", err)
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top