Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 666 for Id (0.07 sec)

  1. cmd/erasure-server-pool-decom_gen.go

    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "id":
    			z.ID, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "ID")
    				return
    			}
    		case "cl":
    			z.CmdLine, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "CmdLine")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_386.go

    	SYS_THR_CREATE               = 430 // { int thr_create(ucontext_t *ctx, long *id, \
    	SYS_THR_EXIT                 = 431 // { void thr_exit(long *state); }
    	SYS_THR_SELF                 = 432 // { int thr_self(long *id); }
    	SYS_THR_KILL                 = 433 // { int thr_kill(long id, int sig); }
    	SYS__UMTX_LOCK               = 434 // { int _umtx_lock(struct umtx *umtx); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tests/multi_primary_keys_test.go

    )
    
    type Blog struct {
    	ID         uint   `gorm:"primary_key"`
    	Locale     string `gorm:"primary_key"`
    	Subject    string
    	Body       string
    	Tags       []Tag `gorm:"many2many:blog_tags;"`
    	SharedTags []Tag `gorm:"many2many:shared_blog_tags;ForeignKey:id;References:id"`
    	LocaleTags []Tag `gorm:"many2many:locale_blog_tags;ForeignKey:id,locale;References:id"`
    }
    
    type Tag struct {
    	ID     uint   `gorm:"primary_key"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top