Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 590 for Id (0.09 sec)

  1. cmd/kubeadm/app/util/users/users_linux.go

    )
    
    // ID returns the ID for an entry based on the entry name.
    // In case of a user entry it returns the user UID.
    // In case of a group entry it returns the group GID.
    // It returns nil if no such entry exists.
    func (u *EntryMap) ID(name string) *int64 {
    	entry, ok := u.entries[name]
    	if !ok {
    		return nil
    	}
    	id := entry.id
    	return &id
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    func (id Language) Canonicalize() (Language, AliasType) {
    	return normLang(id)
    }
    
    // normLang returns the mapped langID of id according to mapping m.
    func normLang(id Language) (Language, AliasType) {
    	k := sort.Search(len(AliasMap), func(i int) bool {
    		return AliasMap[i].From >= uint16(id)
    	})
    	if k < len(AliasMap) && AliasMap[k].From == uint16(id) {
    		return Language(AliasMap[k].To), AliasTypes[k]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/crypto/tls/cipher_suites.go

    // (e.g. "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256"), or a fallback representation
    // of the ID value if the cipher suite is not implemented by this package.
    func CipherSuiteName(id uint16) string {
    	for _, c := range CipherSuites() {
    		if c.ID == id {
    			return c.Name
    		}
    	}
    	for _, c := range InsecureCipherSuites() {
    		if c.ID == id {
    			return c.Name
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    			// Containers in known state could be running, we should try
    			// to stop it before removal.
    			id := kubecontainer.ContainerID{
    				Type: cgc.manager.runtimeName,
    				ID:   containers[i].id,
    			}
    			message := "Container is in unknown state, try killing it before removal"
    			if err := cgc.manager.killContainer(ctx, nil, id, containers[i].name, message, reasonUnknown, nil, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopreschedchecks.go

    	for i := len(po) - 1; i >= 0; i-- {
    		b := po[i]
    		mem := lastMems[b.ID]
    		for j := 0; mem == nil; j++ { // if there's no def, then there's no phi, so the visible mem is identical in all predecessors.
    			// loop because there might be backedges that haven't been visited yet.
    			mem = memDefsAtBlockEnds[b.Preds[j].b.ID]
    		}
    		memDefsAtBlockEnds[b.ID] = mem
    		if f.pass.debug > 2 {
    			fmt.Printf("memDefsAtBlockEnds[%s] = %s\n", b, mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  8. src/runtime/pprof/proto.go

    // and returns the index of s in the string table.
    func (b *profileBuilder) stringIndex(s string) int64 {
    	id, ok := b.stringMap[s]
    	if !ok {
    		id = len(b.strings)
    		b.strings = append(b.strings, s)
    		b.stringMap[s] = id
    	}
    	return int64(id)
    }
    
    func (b *profileBuilder) flush() {
    	const dataFlush = 4096
    	if b.pb.nest == 0 && len(b.pb.data) > dataFlush {
    		b.zw.Write(b.pb.data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/encoding/xml/read_test.go

    </title><link href="http://codereview.appspot.com/126085" rel="alternate"></link><updated>2009-10-04T01:35:58+00:00</updated><author><name>email-address-removed</name></author><id>urn:md5:134d9179c41f806be79b3a5f7877d19a</id><summary type="html">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. pkg/volume/util/fsquota/quota_linux_test.go

    }
    
    func (v testVolumeQuota) SetQuotaOnDir(dir string, id common.QuotaID, _ int64) error {
    	odir, ok := testIDQuotaMap[id]
    	if ok && dir != odir {
    		return fmt.Errorf("ID %v is already in use", id)
    	}
    	oid, ok := testQuotaIDMap[dir]
    	if ok && id != oid {
    		return fmt.Errorf("directory %s already has a quota applied", dir)
    	}
    	testQuotaIDMap[dir] = id
    	testIDQuotaMap[id] = dir
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top