Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 473 for typed (0.04 sec)

  1. pkg/controlplane/controller/legacytokentracking/controller.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	corev1informers "k8s.io/client-go/informers/core/v1"
    	"k8s.io/client-go/kubernetes"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    )
    
    const (
    	ConfigMapName    = "kube-apiserver-legacy-service-account-token-tracking"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	kubeletConfigTyped, ok := kubeletConfig.(*kubeletconfig.KubeletConfiguration)
    	if !ok {
    		return errors.New("could not convert the KubeletConfiguration to a typed object")
    	}
    	if err := waiter.WaitForKubelet(kubeletConfigTyped.HealthzBindAddress, *kubeletConfigTyped.HealthzPort); err != nil {
    		return handleError(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.h

    void RemoveFromXlaCluster(NodeDef* node_def);
    
    // Removes `node` its XLA cluster (by clearing its _XlaCluster attribute).
    void RemoveFromXlaCluster(Node* node);
    
    // Returns true if `node` has a DT_RESOURCE typed input or output.
    bool HasResourceInputOrOutput(const Node& node);
    
    // Determines the global jit level based on GraphOptimizationPassOptions,
    // --tf_xla_auto_jit and whether the graph is a single GPU graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

    #include <cstdint>
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/types/optional.h"
    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/platform/types.h"
    #include "tensorflow/core/protobuf/config.pb.h"
    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    
    struct XlaAutoJitFlag {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. architecture/networking/controllers.md

    Typically, the whole `kclient.Client` is used,though.
    
    Functionality offered by `kclient` includes:
    * Typed clients (via generics) and more ergonomic APIs
    * Ability to make a _delayed_ client. This is used when making clients based on CRDs that may not exist.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. operator/pkg/name/name.go

    	OperatorAPINamespace = "operator.istio.io"
    
    	// DefaultProfileName is the name of the default profile.
    	DefaultProfileName = "default"
    )
    
    // ComponentName is a component name string, typed to constrain allowed values.
    type ComponentName string
    
    const (
    	// IstioComponent names corresponding to the IstioOperator proto component names. Must be the same, since these
    	// are used for struct traversal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_waypoint.go

    		}
    	}
    
    	return model.BuildSubsetKey(
    		dir,
    		subset,
    		host.Name(destination.Host),
    		port,
    	)
    }
    
    // NB: Un-typed SAN validation is ignored when typed is used, so only typed version must be used with this function.
    func buildCommonConnectTLSContext(proxy *model.Proxy, push *model.PushContext) *tls.CommonTlsContext {
    	ctx := &tls.CommonTlsContext{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. cmd/storage-errors.go

    // errVolumeExists - cannot create same volume again.
    var errVolumeExists = StorageErr("volume already exists")
    
    // errIsNotRegular - not of regular file type.
    var errIsNotRegular = StorageErr("not of regular file type")
    
    // errPathNotFound - cannot find the path.
    var errPathNotFound = StorageErr("path not found")
    
    // errVolumeNotFound - cannot find the volume.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. istioctl/pkg/util/handlers/handlers.go

    	}
    	return pod.Name, namespace, nil
    }
    
    // SelectorsForObject is a fork of upstream function to add additional Istio type support
    func SelectorsForObject(object runtime.Object) (namespace string, selector labels.Selector, err error) {
    	switch t := object.(type) {
    	case *gatewayapi.Gateway:
    		if !gateway.IsManaged(&t.Spec) {
    			return "", nil, fmt.Errorf("gateway is not a managed gateway")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. fastapi/encoders.py

    )
    from pathlib import Path, PurePath
    from re import Pattern
    from types import GeneratorType
    from typing import Any, Callable, Dict, List, Optional, Tuple, Type, Union
    from uuid import UUID
    
    from fastapi.types import IncEx
    from pydantic import BaseModel
    from pydantic.color import Color
    from pydantic.networks import AnyUrl, NameEmail
    from pydantic.types import SecretBytes, SecretStr
    from typing_extensions import Annotated, Doc
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top