Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for usedBy (0.19 sec)

  1. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

    limitations under the License.
    ==============================================================================*/
    // Classes and utilities that work with StreamExecutor C API for internal use.
    // This includes functions used for device registration and interfaces needed
    // for testing.
    #ifndef TENSORFLOW_C_EXPERIMENTAL_STREAM_EXECUTOR_STREAM_EXECUTOR_INTERNAL_H_
    #define TENSORFLOW_C_EXPERIMENTAL_STREAM_EXECUTOR_STREAM_EXECUTOR_INTERNAL_H_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // passthroughHttpProtocolOptions are http protocol options used for pass through clusters.
    // nolint
    // revive:disable-next-line
    var passthroughHttpProtocolOptions = protoconv.MessageToAny(&http.HttpProtocolOptions{
    	CommonHttpProtocolOptions: &core.HttpProtocolOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/destination_rule.go

    // 2. If the original rule did not have any top level traffic policy, traffic policies from the new rule will be
    // used.
    // 3. If the original rule did not have any exportTo, exportTo settings from the new rule will be used.
    func (ps *PushContext) mergeDestinationRule(p *consolidatedDestRules, destRuleConfig config.Config, exportToSet sets.Set[visibility.Instance]) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	syncNodeStatusMux sync.Mutex
    
    	// updatePodCIDRMux is a lock on updating pod CIDR, because this path is not thread-safe.
    	// This lock is used by Kubelet.updatePodCIDR function and shouldn't be used anywhere else.
    	updatePodCIDRMux sync.Mutex
    
    	// updateRuntimeMux is a lock on updating runtime, because this path is not thread-safe.
    	// This lock is used by Kubelet.updateRuntimeUp, Kubelet.fastNodeStatusUpdate and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/certcontroller.go

    	return nil
    }
    
    // watchRootCertAndgenKeyCert will watch for the root certs, and regenerate Istiod DNS TLS certificates if the root
    // has changed. This is not used if TLS certificates are loaded from ./var/run/secrets/istiod/tls.
    // TODO(hzxuzonghu): support async notification instead of polling the CA root cert.
    func (s *Server) watchRootCertAndGenKeyCert(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster.go

    				// as UNHEALTHY ('coarse state'), which is what will show in config dumps.
    				// DRAINING/UNHEALTHY will not be used normally for new requests. They will be used if cookie/header
    				// selects them.
    				defaultCluster.cluster.CommonLbConfig.OverrideHostStatus = &core.HealthStatusSet{
    					Statuses: []core.HealthStatus{
    						core.HealthStatus_HEALTHY,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_inbound.go

    			cc.telemetryMetadata.KubernetesServiceName = i.Service.Attributes.Name
    		}
    		// First, make sure there is a distinct instance used per port.
    		// The Service is *almost* not relevant, but some Telemetry is per-service.
    		// If there is a conflict, we will use the oldest Service. This impacts the protocol used as well.
    		if old, f := chainsByPort[port.TargetPort]; f {
    			reportInboundConflict(lb, old, cc)
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/config/kube/crdclient/client.go

    var scope = log.RegisterScope("kube", "Kubernetes client messages")
    
    // Client is a client for Istio CRDs, implementing config store cache
    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    type Client struct {
    	// schemas defines the set of schemas used by this client.
    	// Note: this must be a subset of the schemas defined in the codegen
    	schemas collection.Schemas
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/endpointshards.go

    // clusters when a push for the specific cluster is needed.
    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    	// name of the k8s cluster, derived from the config (secret).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top