Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 15 for CM (0.02 seconds)

  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
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  2. 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 {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  3. 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
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Feb 19 22:54:46 GMT 2024
    - 2.8K bytes
    - Click Count (0)
  4. fastapi/dependencies/utils.py

    ) -> Any:
        assert dependant.call
        if dependant.is_async_gen_callable:
            cm = asynccontextmanager(dependant.call)(**sub_values)
        elif dependant.is_gen_callable:
            cm = contextmanager_in_threadpool(contextmanager(dependant.call)(**sub_values))
        return await stack.enter_async_context(cm)
    
    
    @dataclass
    class SolvedDependency:
        values: dict[str, Any]
        errors: list[Any]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
  5. 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/
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 19.7K bytes
    - Click Count (1)
  6. cmd/testdata/undeleteable-object.tgz

    %þL÷Y© xš[}]q Ià ©aâFÖ ³ ‡;6Z*+øÍ¨Ìg (£k úØ û¾íå£ÄE‹Á¢ r¬¯Y »éó¬Hë-d¼‘O) ™ Ó»¤ U¼šóùêêµÜ>ˆôO p³aÞÜÓ %wþl ±À¿›Ì©uE§2ëŒ âš x—åé5¹(…³[î 쬪ö< ×ÇkFê[-\Áˆûùê&2¨ñáfÃuÚì¡ýJ^áá}ÉÛ\mc<€‰œSdºÝÂL ‹ØÍM¬ P £–§m 1 ædñ¹ÍRý2¹àd Ü"@± 7íÄêµ)é Ýé'ŽüÜO¼Lýfའr ‘ õÈ Ù ááF_!cm…—g’ ¥ á)ƒæP Ðìü û]Ïb ‚$ÑPÑëýe#‚W —ϽWéC×èÎ(¸l¢ ?aƒZà€9i\ ¾ HE.X ZÍ—Yôfeô ¾¸PÎ×|;Ì VŒÕH — ÁF•‚s “°V^É䢳ü¥ñJ v vg –¤ ¤þ‡ûÚ ë\€Ý]° Á…÷\U%#ã=׆%½52¢ßw Ó ž¨9ð€,žŠÑCÓ ÿÀ·Ð7÷ Ö sƒýMh{ ×U; Bì«Ý' ffËÇéIX¸ # ¬¬K«< ¦È g½"Èp³ Ÿ!œµ@z9ÓÅ-9¿ÍÅt©‰€Y÷¹¸dz kóÑ o Ñ8‘ÁÿþXõ-ÄÐË.hµå...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Apr 26 00:31:12 GMT 2024
    - 8.7M bytes
    - Click Count (0)
  7. fastapi/routing.py

        """
        Wraps a synchronous context manager to make it async.
    
        This is vendored from Starlette to avoid importing private symbols.
        """
    
        def __init__(self, cm: AbstractContextManager[_T]) -> None:
            self._cm = cm
    
        async def __aenter__(self) -> _T:
            return self._cm.__enter__()
    
        async def __aexit__(
            self,
            exc_type: type[BaseException] | None,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  8. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    cloudns.in
    cloudns.info
    cloudns.nz
    cloudns.org
    cloudns.ph
    cloudns.pro
    cloudns.pw
    cloudns.us
    cloudsite.builders
    cloudycluster.net
    club
    club.aero
    club.tw
    clubmed
    cm
    cn
    cn-north-1.eb.amazonaws.com.cn
    cn-northwest-1.eb.amazonaws.com.cn
    cn.com
    cn.eu.org
    cn.in
    cn.it
    cn.ua
    cng.br
    cnpy.gdn
    cnt.br
    co
    co.ae
    co.ag
    co.am
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue May 27 22:00:49 GMT 2025
    - 129.6K bytes
    - Click Count (3)
  9. helm-releases/minio-5.3.0.tgz

    customCommandJob customCommandJob: securityContext: enabled: false runAsUser: 1000 runAsGroup: 1000 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/ # Command to run after the main command on exit exitCommand: "" ## Merge jobs postJob:...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 11 12:21:05 GMT 2024
    - 21.7K bytes
    - Click Count (0)
  10. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    *.ck
    !www.ck
    
    // cl : https://www.nic.cl
    // Confirmed by .CL registry <******@****.***>
    cl
    co.cl
    gob.cl
    gov.cl
    mil.cl
    
    // cm : https://www.iana.org/domains/root/db/cm.html plus bug 981927
    cm
    co.cm
    com.cm
    gov.cm
    net.cm
    
    // cn : https://www.iana.org/domains/root/db/cn.html
    // Submitted by registry <******@****.***>
    cn
    ac.cn
    com.cn
    edu.cn
    gov.cn
    net.cn
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 309.7K bytes
    - Click Count (1)
Back to Top