Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for CM (0.01 sec)

  1. fastapi/concurrency.py

        try:
            yield await run_in_threadpool(cm.__enter__)
        except Exception as e:
            ok = bool(
                await anyio.to_thread.run_sync(
                    cm.__exit__, type(e), e, e.__traceback__, limiter=exit_limiter
                )
            )
            if not ok:
                raise e
        else:
            await anyio.to_thread.run_sync(
                cm.__exit__, None, None, None, limiter=exit_limiter
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-03 22:37
    - 1.4K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/listener.go

    		}
    	}
    	return nil
    }
    
    func getHTTPConnectionManager(filter *listener.Filter) *hcm.HttpConnectionManager {
    	cm := &hcm.HttpConnectionManager{}
    	if err := getFilterConfig(filter, cm); err != nil {
    		log.Errorf("failed to get HTTP connection manager config: %s", err)
    		return nil
    	}
    	return cm
    }
    
    func getHTTPFilterConfig(filter *hcm.HttpFilter, out proto.Message) error {
    	switch c := filter.ConfigType.(type) {
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-11-20 00:16
    - 6.8K bytes
    - Viewed (0)
  3. cmd/metrics-realtime.go

    		m.Aggregated.CPU = &madmin.CPUMetrics{
    			CollectedAt: UTCNow(),
    		}
    		cm, err := c.Times(false)
    		if err != nil {
    			m.Errors = append(m.Errors, fmt.Sprintf("%s: %v (cpuTimes)", byHostName, err.Error()))
    		} else {
    			// not collecting per-cpu stats, so there will be only one element
    			if len(cm) == 1 {
    				m.Aggregated.CPU.TimesStat = &cm[0]
    			} else {
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-06-01 05:16
    - 6.3K bytes
    - Viewed (0)
  4. cmd/tier-last-day-stats.go

    	cl := l.clone()
    	cm := m.clone()
    
    	if cl.UpdatedAt.After(cm.UpdatedAt) {
    		cm.forwardTo(cl.UpdatedAt)
    		merged.UpdatedAt = cl.UpdatedAt
    	} else {
    		cl.forwardTo(cm.UpdatedAt)
    		merged.UpdatedAt = cm.UpdatedAt
    	}
    
    	for i := range cl.Bins {
    		merged.Bins[i] = cl.Bins[i].add(cm.Bins[i])
    	}
    
    	return merged
    }
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-02-19 22:54
    - 2.8K bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/kubeinject.go

      # Capture cluster configuration for later use with kube-inject
      kubectl -n istio-system get cm istio-sidecar-injector  -o jsonpath="{.data.config}" > /tmp/inj-template.tmpl
      kubectl -n istio-system get cm istio -o jsonpath="{.data.mesh}" > /tmp/mesh.yaml
      kubectl -n istio-system get cm istio-sidecar-injector -o jsonpath="{.data.values}" > /tmp/values.json
    
      # Use kube-inject based on captured configuration
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-08-15 16:31
    - 21K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/sepa.js

    6F10"],["SM",27,"U01F05F05A12"],["ST",25,"F08F11F02"],["TL",23,"F03F14F02"],["TN",24,"F02F03F13F02"],["TR",26,"F05F01A16"],["VG",24,"U04F16"],["XK",20,"F04F10F02"],["AO",25,"F21"],["BF",27,"F23"],["BI",16,"F12"],["BJ",28,"F24"],["CI",28,"U01F23"],["CM",27,"F23"],["CV",25,"F21"],["DZ",24,"F20"],["IR",26,"F22"],["JO",30,"A04F22"],["MG",27,"F23"],["ML",28,"U01F23"],["MZ",25,"F21"],["QA",29,"U04A21"],["SN",28,"U01F23"],["UA",29,"F25"]],c=function(a){a=a.replace(/\s+/g,""),a=a.substr(4)+a.substr(0,4)...
    Registered: 2025-05-26 08:04
    - Last Modified: 2018-01-01 05:12
    - 3.4K bytes
    - Viewed (0)
  7. fastapi/dependencies/utils.py

    ) -> Any:
        if is_gen_callable(call):
            cm = contextmanager_in_threadpool(contextmanager(call)(**sub_values))
        elif is_async_gen_callable(call):
            cm = asynccontextmanager(call)(**sub_values)
        return await stack.enter_async_context(cm)
    
    
    @dataclass
    class SolvedDependency:
        values: Dict[str, Any]
        errors: List[Any]
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-03-23 20:48
    - 35.1K bytes
    - Viewed (3)
  8. operator/cmd/mesh/test-util_test.go

    func getContainer(obj manifest.Manifest, containerName string) map[string]any {
    	var container map[string]any
    	sl, ok := values.Map(obj.Object).GetPath("spec.template.spec.containers")
    	if ok {
    		for _, cm := range sl.([]any) {
    			t := cm.(map[string]any)
    			if t["name"] == containerName {
    				container = t
    				break
    			}
    		}
    	}
    	return container
    }
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-09-18 14:00
    - 15.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    	c := getContainer(dobj, "istio-proxy")
    	g.Expect(c).Should(HavePathValueEqual(PathValue{"image", "gcr.io/istio-testing/myproxy:latest"}))
    
    	cm := objs.kind("ConfigMap").nameEquals("istio-sidecar-injector").Unstructured.Object
    	// TODO: change values to some nicer format rather than text block.
    	g.Expect(cm).Should(HavePathValueMatchRegex(PathValue{"data.values", `.*"includeIPRanges"\: "172\.30\.0\.0/16,172\.21\.0\.0/16".*`}))
    }
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-07 01:49
    - 40.5K bytes
    - Viewed (0)
  10. helm/minio/values.yaml

      resources:
        requests:
          memory: 128Mi
      ## Additional volumes to add to the post-job.
      extraVolumes: []
        # - name: extra-policies
        #   configMap:
        #     name: my-extra-policies-cm
      ## Additional volumeMounts to add to the custom commands container when
      ## running the post-job.
      extraVolumeMounts: []
        # - name: extra-policies
        #   mountPath: /mnt/extras/
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-01-03 05:34
    - 18.8K bytes
    - Viewed (1)
Back to top