Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for contName (0.18 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices.go

    	ret := sets.New[string]()
    	for contName := range pdev.devs[podUID] {
    		ret = ret.Union(pdev.containerDevices(podUID, contName, resource))
    	}
    	return ret
    }
    
    // Returns list of device Ids allocated to the given container for the given resource.
    // Returns nil if we don't have cached state for the given <podUID, contName, resource>.
    func (pdev *podDevices) containerDevices(podUID, contName, resource string) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager.go

    	devices := m.podDevices.containerDevices(podUID, contName, resource)
    	if devices == nil {
    		m.mutex.Unlock()
    		return fmt.Errorf("no devices found allocated in local cache for pod %s, container %s, resource %s", podUID, contName, resource)
    	}
    
    	m.mutex.Unlock()
    	devs := devices.UnsortedList()
    	klog.V(4).InfoS("Issuing a PreStartContainer call for container", "containerName", contName, "podUID", podUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller.go

    func (c *Controller) onWorkloadConnect(entryName string, proxy *model.Proxy, conTime time.Time, autoCreate bool) error {
    	if autoCreate {
    		return c.registerWorkload(entryName, proxy, conTime)
    	}
    	return c.becomeControllerOf(entryName, proxy, conTime)
    }
    
    // becomeControllerOf updates an existing WorkloadEntry of a workload that is not using
    // auto-registration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            if (isConst) {
                fieldDeclaration.getVariables().forEach(variableDeclarator -> {
                    String constName = variableDeclarator.getNameAsString();
                    String value = variableDeclarator.getInitializer()
                        .filter(Expression::isLiteralStringValueExpr)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            Set<String> wildcardPatterns = confs.get("*");
            if (!wildcardPatterns.isEmpty()) {
                boolean excludeWildcards = false;
                for (String confName : fromConfiguration.getHierarchy()) {
                    if (confs.containsKey("!" + confName)) {
                        excludeWildcards = true;
                        break;
                    }
                }
                if (!excludeWildcards) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    			return "RET"
    		}
    		return op + " " + strings.Join(args, ", ")
    	case BC:
    		bo := int(inst.Args[0].(Imm))
    		bi := int(inst.Args[1].(CondReg) - Cond0LT)
    		bcname := condName[((bo&0x8)>>1)|(bi&0x3)]
    		if bo&0x17 == 4 { // jump only a CR bit set/unset, no hints (at bits) set.
    			if bi >= 4 {
    				return fmt.Sprintf("B%s CR%d,%s", bcname, bi>>2, args[2])
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/language/language.go

    	High                    // value is generally assumed to be the correct match
    	Exact                   // exact match or explicitly specified value
    )
    
    var confName = []string{"No", "Low", "High", "Exact"}
    
    func (c Confidence) String() string {
    	return confName[c]
    }
    
    // String returns the canonical string representation of the language tag.
    func (t Tag) String() string {
    	return t.tag().String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof.go

    func printCountCycleProfile(w io.Writer, countName, cycleName string, records []profilerecord.BlockProfileRecord) error {
    	// Output profile in protobuf form.
    	b := newProfileBuilder(w)
    	b.pbValueType(tagProfile_PeriodType, countName, "count")
    	b.pb.int64Opt(tagProfile_Period, 1)
    	b.pbValueType(tagProfile_SampleType, countName, "count")
    	b.pbValueType(tagProfile_SampleType, cycleName, "nanoseconds")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/html.go

    	id := strings.Replace(phase, " ", "-", -1)
    	fmt.Fprintf(pipe, `id="g_graph_%s";`, id)
    	fmt.Fprintf(pipe, `node [style=filled,fillcolor=white,fontsize=16,fontname="Menlo,Times,serif",margin="0.01,0.03"];`)
    	fmt.Fprintf(pipe, `edge [fontsize=16,fontname="Menlo,Times,serif"];`)
    	for i, b := range f.Blocks {
    		if b.Kind == BlockInvalid {
    			continue
    		}
    		layout := ""
    		if f.laidout {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top