Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for contName (0.17 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. pkg/kubelet/cm/devicemanager/manager_test.go

    	for podUID, containerDevices := range expectedPodDevices.devs {
    		for conName, resources := range containerDevices {
    			for resource := range resources {
    				expDevices := expectedPodDevices.containerDevices(podUID, conName, resource)
    				testDevices := testManager.podDevices.containerDevices(podUID, conName, resource)
    				as.True(reflect.DeepEqual(expDevices, testDevices))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    case PUB:
                        if ("*".equals(conf)) {
                            String[] confs = getMd().getConfigurationsNames();
                            for (String confName : confs) {
                                artifact.addConfiguration(confName);
                            }
                        } else {
                            artifact.addConfiguration(conf);
                        }
                        break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. 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)
  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. docs/pt/docs/help-fastapi.md

    Conversas no chat não são tão fáceis de serem encontrados quanto no GitHub, então questões e respostas podem se perder dentro da conversa. E apenas as que estão nas questões do GitHub contam para você se tornar um [Expert em FastAPI](fastapi-people.md#especialistas){.internal-link target=_blank}, então você receberá mais atenção nas questões do GitHub.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            new DefaultExternalModuleDependency(group, name, version)
        }
    
        private DefaultConfiguration conf(String confName = "conf", String projectPath = ":", String buildPath = ":", ConfigurationRole role = ConfigurationRoles.LEGACY) {
            return confFactory(projectPath, buildPath).create(confName, configurationsProvider, Factories.constant(resolutionStrategy), rootComponentMetadataBuilder, role)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top