Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 343 for layers (0.21 sec)

  1. architecture/ambient/ztunnel.md

    ### Inbound
    
    Traffic entering a pod over HBONE will be handled by the "inbound" code path, on port 15008.
    
    Incoming requests have multiple "layers": TLS wrapping HTTP CONNECT that is wrapping the user's connection.
    
    To unwrap the first layer, we terminate TLS.
    As part of this, we need to pick the correct certificate to serve on behalf of the destination workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

    LogicalResult ConvertKerasLSTMLayer(mlir::func::FuncOp func_op,
                                        OpBuilder* builder, bool indy) {
      // For argument order, please check out standard_lstm under
      // tensorflow/python/keras/layers/recurrent_v2.py
      Value input = func_op.getArgument(0);
      Value output_init_state = func_op.getArgument(1);
      Value hidden_init_state = func_op.getArgument(2);
      Value weight_kernel = func_op.getArgument(3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    // e.g. validation underneath). Similarly computing object fields and
    // labels. To avoid computing them multiple times (to serve the event
    // in different List/Watch requests), in the underlying store we are
    // keeping structs (key, object, labels, fields).
    type storeElement struct {
    	Key    string
    	Object runtime.Object
    	Labels labels.Set
    	Fields fields.Set
    }
    
    func storeElementKey(obj interface{}) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/runtime/arena.go

    // that arise from synchronization with the GC when trying to set the arena chunks to
    // fault while the GC is active.)
    //
    // The implementation works in layers. At the bottom, arenas are managed in chunks.
    // Each chunk must be a multiple of the heap arena size, or the heap arena size must
    // be divisible by the arena chunks. The address space for each chunk, and each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/labels.go

    }
    
    // newPodLabels creates pod labels from v1.Pod.
    func newPodLabels(pod *v1.Pod) map[string]string {
    	labels := map[string]string{}
    
    	// Get labels from v1.Pod
    	for k, v := range pod.Labels {
    		labels[k] = v
    	}
    
    	labels[types.KubernetesPodNameLabel] = pod.Name
    	labels[types.KubernetesPodNamespaceLabel] = pod.Namespace
    	labels[types.KubernetesPodUIDLabel] = string(pod.UID)
    
    	return labels
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/net/netip/netip.go

    }
    
    // IsLoopback reports whether ip is a loopback address.
    func (ip Addr) IsLoopback() bool {
    	if ip.Is4In6() {
    		ip = ip.Unmap()
    	}
    
    	// Requirements for Internet Hosts -- Communication Layers (3.2.1.3 Addressing)
    	// https://datatracker.ietf.org/doc/html/rfc1122#section-3.2.1.3
    	if ip.Is4() {
    		return ip.v4(0) == 127
    	}
    	// IP Version 6 Addressing Architecture (2.4 Address Type Identification)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/service.go

    func (s *ServiceAttributes) DeepCopy() ServiceAttributes {
    	// AddressMap contains a mutex, which is safe to copy in this case.
    	// nolint: govet
    	out := *s
    
    	if s.Labels != nil {
    		out.Labels = make(map[string]string, len(s.Labels))
    		for k, v := range s.Labels {
    			out.Labels[k] = v
    		}
    	}
    
    	if s.ExportTo != nil {
    		out.ExportTo = s.ExportTo.Copy()
    	}
    
    	if s.LabelSelectors != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. cmd/metrics-resource.go

    			updateResourceMetrics(memSubsystem, memFree, float64(stats.Free), labels, false)
    			updateResourceMetrics(memSubsystem, memShared, float64(stats.Shared), labels, false)
    			updateResourceMetrics(memSubsystem, memBuffers, float64(stats.Buffers), labels, false)
    			updateResourceMetrics(memSubsystem, memAvailable, float64(stats.Available), labels, false)
    			updateResourceMetrics(memSubsystem, memCache, float64(stats.Cache), labels, false)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		},
    	}
    
    	if external && features.CanonicalServiceForMeshExternalServiceEntry {
    		if svc.Attributes.Labels == nil {
    			svc.Attributes.Labels = make(map[string]string)
    		}
    		svc.Attributes.Labels["service.istio.io/canonical-name"] = configNamespace
    		svc.Attributes.Labels["service.istio.io/canonical-revision"] = "latest"
    	}
    
    	svcPorts := make(model.PortList, 0, len(ports))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. cmd/metrics-v3-types.go

    				continue
    			}
    		}
    
    		labels := make([]string, 0, len(metric.VariableLabels)*2)
    		for k, v := range metric.VariableLabels {
    			if newLabel, ok := renameLabels[k]; ok {
    				labels = append(labels, newLabel, v)
    			} else {
    				labels = append(labels, k, v)
    			}
    		}
    		labels = append(labels, extraLabels...)
    		// If valid non zero value set the metrics
    		if metric.Value > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top