Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for deepcopy (0.18 sec)

  1. manifests/charts/default/templates/mutatingwebhook.yaml

    # Adapted from istio-discovery/templates/mutatingwebhook.yaml
    # Removed paths for legacy and default selectors since a revision tag
    # is inherently created from a specific revision
    {{/* Copy just what we need to avoid expensive deepCopy */}}
    {{- $whv := dict
     "revision" .Values.revision
      "injectionURL" .Values.istiodRemote.injectionURL
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    - name: {{.Prefix}}sidecar-injector.istio.io
      clientConfig:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. fastapi/dependencies/utils.py

    import inspect
    from contextlib import AsyncExitStack, contextmanager
    from copy import copy, deepcopy
    from typing import (
        Any,
        Callable,
        Coroutine,
        Dict,
        ForwardRef,
        List,
        Mapping,
        Optional,
        Sequence,
        Tuple,
        Type,
        Union,
        cast,
    )
    
    import anyio
    from fastapi import params
    from fastapi._compat import (
        PYDANTIC_V2,
        ErrorWrapper,
        ModelField,
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:52:56 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	ingressNss := sets.New[string]()
    	for i, pod := range pods.Items {
    		ns := pod.GetNamespace()
    		ingressNss.Insert(ns)
    		ingressPods[ns] = append(ingressPods[ns], pods.Items[i].DeepCopy())
    	}
    
    	foundIngresses := []*ingressInfo{}
    	for _, ns := range ingressNss.UnsortedList() {
    		// Currently no support for non-standard gateways selecting non ingressgateway pods
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  4. RELEASE.md

    *   Improves stability of GCS filesystem on Mac.
    *   Add time estimation to HloCostAnalysis.
    *   Fixed the bug in Estimator that params in constructor was not a deepcopy of
        the user provided one. This bugs inadvertently enabled user to mutate the
        params after the creation of Estimator, leading to potentially undefined
        behavior.
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
Back to top