Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,409 for dinfo (0.09 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    			}
    		}
    
    		// Allocate space to record the desired registers for each value.
    		if l := len(oldSched); cap(dinfo) < l {
    			dinfo = make([]dentry, l)
    		} else {
    			dinfo = dinfo[:l]
    			for i := range dinfo {
    				dinfo[i] = dentry{}
    			}
    		}
    
    		// Load static desired register info at the end of the block.
    		desired.copy(&s.desired[b.ID])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/encoding/xml/typeinfo.go

    					if err != nil {
    						return nil, err
    					}
    					if tinfo.xmlname == nil {
    						tinfo.xmlname = inner.xmlname
    					}
    					for _, finfo := range inner.fields {
    						finfo.idx = append([]int{i}, finfo.idx...)
    						if err := addFieldInfo(typ, tinfo, &finfo); err != nil {
    							return nil, err
    						}
    					}
    					continue
    				}
    			}
    
    			finfo, err := structFieldInfo(typ, &f)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. src/testing/fstest/testfs.go

    func formatInfoEntry(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Type=%v", info.Name(), info.IsDir(), info.Mode().Type())
    }
    
    // formatInfo formats an fs.FileInfo into a string for error messages and comparison.
    func formatInfo(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Mode=%v Size=%d ModTime=%v", info.Name(), info.IsDir(), info.Mode(), info.Size(), info.ModTime())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) addToActiveQ(logger klog.Logger, pInfo *framework.QueuedPodInfo) (bool, error) {
    	pInfo.Gated = !p.runPreEnqueuePlugins(context.Background(), pInfo)
    	if pInfo.Gated {
    		// Add the Pod to unschedulablePods if it's not passing PreEnqueuePlugins.
    		p.unschedulablePods.addOrUpdate(pInfo)
    		return false, nil
    	}
    	if pInfo.InitialAttemptTimestamp == nil {
    		now := p.clock.Now()
    		pInfo.InitialAttemptTimestamp = &now
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cadvisor_stats_provider.go

    		}
    		cinfosByPodCgroupKey[podCgroupKey] = cinfo
    		if !isPodManagedContainer(&cinfo) {
    			continue
    		}
    		cinfoID := containerID{
    			podRef:        buildPodRef(cinfo.Spec.Labels),
    			containerName: kubetypes.GetContainerName(cinfo.Spec.Labels),
    		}
    		cinfoMap[cinfoID] = append(cinfoMap[cinfoID], containerInfoWithCgroup{
    			cinfo:  cinfo,
    			cgroup: key,
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal.go

    			return vf
    		}
    		vf = vf.Elem()
    	}
    	return vf
    }
    
    func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) error {
    	s := parentStack{p: p}
    	for i := range tinfo.fields {
    		finfo := &tinfo.fields[i]
    		if finfo.flags&fAttr != 0 {
    			continue
    		}
    		vf := finfo.value(val, dontInitNilPointers)
    		if !vf.IsValid() {
    			// The field is behind an anonymous struct field that's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/info.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cases
    
    func (c info) cccVal() info {
    	if c&exceptionBit != 0 {
    		return info(exceptions[c>>exceptionShift]) & cccMask
    	}
    	return c & cccMask
    }
    
    func (c info) cccType() info {
    	ccc := c.cccVal()
    	if ccc <= cccZero {
    		return cccZero
    	}
    	return ccc
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/version/cobra.go

    func renderProxyVersions(pinfos *[]ProxyInfo) string {
    	if len(*pinfos) == 0 {
    		return "none"
    	}
    
    	versions := make(map[string][]string)
    	for _, pinfo := range *pinfos {
    		ids := versions[pinfo.IstioVersion]
    		versions[pinfo.IstioVersion] = append(ids, pinfo.ID)
    	}
    	sortedVersions := make([]string, 0)
    	for v := range versions {
    		sortedVersions = append(sortedVersions, v)
    	}
    	sort.Strings(sortedVersions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. src/internal/xcoff/file_test.go

    			{".bss", 0x20001284, 0x0000021c, STYP_BSS, 0, 0},
    			{".loader", 0x00000000, 0x000004b3, STYP_LOADER, 0, 0},
    			{".dwline", 0x00000000, 0x000000df, STYP_DWARF | SSUBTYP_DWLINE, 0x7eb0, 0x7},
    			{".dwinfo", 0x00000000, 0x00000314, STYP_DWARF | SSUBTYP_DWINFO, 0x7ef6, 0xa},
    			{".dwabrev", 0x00000000, 0x000000d6, STYP_DWARF | SSUBTYP_DWABREV, 0, 0},
    			{".dwarnge", 0x00000000, 0x00000020, STYP_DWARF | SSUBTYP_DWARNGE, 0x7f5a, 0x2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modinfo/info.go

    	GoModSum   string           `json:",omitempty"` // checksum for go.mod (as in go.sum)
    	Origin     *codehost.Origin `json:",omitempty"` // provenance of module
    	Reuse      bool             `json:",omitempty"` // reuse of old module info is safe
    }
    
    type ModuleError struct {
    	Err string // error text
    }
    
    type moduleErrorNoMethods ModuleError
    
    // UnmarshalJSON accepts both {"Err":"text"} and "text",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top