Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 328 for topology (0.15 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // When a driver is initialized on a cluster, it provides a set of topology
      // keys that it understands (e.g. "company.com/zone", "company.com/region").
      // When a driver is initialized on a node, it provides the same topology keys
      // along with values. Kubelet will expose these topology keys as labels
      // on its own node object.
      // When Kubernetes does topology aware provisioning, it can use this list to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      // When a driver is initialized on a cluster, it provides a set of topology
      // keys that it understands (e.g. "company.com/zone", "company.com/region").
      // When a driver is initialized on a node, it provides the same topology keys
      // along with values. Kubelet will expose these topology keys as labels
      // on its own node object.
      // When Kubernetes does topology aware provisioning, it can use this list to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/workloadentry_test.go

    			gwTmpl := `
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: remote-gateway-manual-discovery-%s
      labels:
        topology.istio.io/network: "%s-manual-discovery"
    spec:
      gatewayClassName: istio-remote
      addresses:
      - value: %q
      listeners:
      - name: cross-network
        port: 15443
        protocol: TLS
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	if !ok {
    		return 0, fmt.Errorf("failed to retrieve path by topology key")
    	}
    
    	minMatchNum := paths[0].MatchNum
    	domainsNum, ok := s.TpKeyToDomainsNum[tpKey]
    	if !ok {
    		return 0, fmt.Errorf("failed to retrieve the number of domains by topology key")
    	}
    
    	if domainsNum < int(minDomains) {
    		// When the number of eligible domains with matching topology keys is less than `minDomains`,
    		// it treats "global minimum" as 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  5. tests/integration/pilot/locality_test.go

    	Remote          string
    }
    
    const localityFailover = `
    failover:
    - from: region
      to: nearregion`
    
    const failoverPriority = `
    failoverPriority:
    - "topology.kubernetes.io/region"
    - "topology.kubernetes.io/zone"
    - "topology.istio.io/subzone"`
    
    const localityDistribute = `
    distribute:
    - from: region
      to:
        nearregion: 80
        region: 20`
    
    func TestLocality(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/policy_restricted_test.go

    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: false,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    		numaInfo := commonNUMAInfoTwoNodes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/while_op.mlir

        %0:4 = tf_executor.graph {
          %outputs:4, %control = tf_executor.island {
           "tf.TPUReplicateMetadata"() {_xla_compile_device_type = "TPU", _replication_info = "cluster", device = "device", num_replicas = 1, topology = "topology"} : () -> ()
            %1 = "tf.opA"(%arg0) {_xla_compile_device_type = "TPU", _replication_info = "cluster"} : (tensor<i1>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/fake_memory_manager.go

    	klog.InfoS("Get Topology Hints", "pod", klog.KObj(pod), "containerName", container.Name)
    	return map[string][]topologymanager.TopologyHint{}
    }
    
    func (m *fakeManager) GetPodTopologyHints(pod *v1.Pod) map[string][]topologymanager.TopologyHint {
    	klog.InfoS("Get Pod Topology Hints", "pod", klog.KObj(pod))
    	return map[string][]topologymanager.TopologyHint{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	cleanup(t, m, p1)
    }
    
    func setupDeviceManager(t *testing.T, devs []*pluginapi.Device, callback monitorCallback, socketName string,
    	topology []cadvisorapi.Node) (Manager, <-chan interface{}) {
    	topologyStore := topologymanager.NewFakeManager()
    	m, err := newManagerImpl(socketName, topology, topologyStore)
    	require.NoError(t, err)
    	updateChan := make(chan interface{})
    
    	w := newWrappedManagerImpl(socketName, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/topologymanager/numa_info.go

    type NUMADistances map[int][]uint64
    
    type NUMAInfo struct {
    	Nodes         []int
    	NUMADistances NUMADistances
    }
    
    func NewNUMAInfo(topology []cadvisorapi.Node, opts PolicyOptions) (*NUMAInfo, error) {
    	var numaNodes []int
    	distances := map[int][]uint64{}
    	for _, node := range topology {
    		numaNodes = append(numaNodes, node.Id)
    
    		var nodeDistance []uint64
    		if opts.PreferClosestNUMA {
    			nodeDistance = node.Distances
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top