Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for contName (0.15 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		return multiplyWithOverflowGuard(cr.MaxCost, *cardinalityCost.MaxCardinality)
    	}
    	return multiplyWithOverflowGuard(cr.MaxCost, cr.MaxCardinality)
    }
    
    func getCostErrorMessage(costName string, expressionCost, costLimit uint64) string {
    	exceedFactor := float64(expressionCost) / float64(costLimit)
    	var factor string
    	if exceedFactor > 100.0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top