Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for numa_node (0.15 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    			[]kubeletconfig.MemoryReservation{
    				{
    					NumaNode: 0,
    					Limits: v1.ResourceList{
    						v1.ResourceMemory: *resource.NewQuantity(0, resource.DecimalSI),
    					},
    				},
    			},
    			"",
    		},
    		{
    			"Node Allocatable not set (equal zero), reserved set",
    			v1.ResourceList{},
    			machineInfo,
    			[]kubeletconfig.MemoryReservation{
    				{
    					NumaNode: 0,
    					Limits: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  2. hack/e2e-internal/e2e-grow-cluster.sh

      export MULTIZONE="${2}"
    fi
    if [[ -n "${3:-}" ]]; then
      export KUBE_REPLICATE_EXISTING_MASTER="${3}"
    fi
    if [[ -n "${4:-}" ]]; then
      export KUBE_USE_EXISTING_MASTER="${4}"
    fi
    if [[ -z "${NUM_NODES:-}" ]]; then
      export NUM_NODES=3
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 1K bytes
    - Viewed (0)
  3. cluster/kubemark/pre-existing/config-default.sh

    MASTER_IP="${MASTER_IP:-}"
    
    # The container registry and project given to the kubemark container:
    #   $CONTAINER_REGISTRY/$PROJECT/kubemark
    #
    CONTAINER_REGISTRY="${CONTAINER_REGISTRY:-}"
    PROJECT="${PROJECT:-}"
    
    NUM_NODES="${NUM_NODES:-1}"
    
    KUBELET_TEST_LOG_LEVEL="${KUBELET_TEST_LOG_LEVEL:-}"
    KUBEPROXY_TEST_LOG_LEVEL="${KUBEPROXY_TEST_LOG_LEVEL:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/topologymanager/policy_test.go

    			expected: TopologyHint{
    				NUMANodeAffinity: NewTestBitMask(numaNodes...),
    				Preferred:        true,
    			},
    		},
    		{
    			name: "HintProvider returns empty non-nil map[string][]TopologyHint",
    			hp: []HintProvider{
    				&mockHintProvider{
    					map[string][]TopologyHint{},
    				},
    			},
    			expected: TopologyHint{
    				NUMANodeAffinity: NewTestBitMask(numaNodes...),
    				Preferred:        true,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 34.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager.go

    	klog.V(2).InfoS("Creating Device Plugin manager", "path", socketPath)
    
    	var numaNodes []int
    	for _, node := range topology {
    		numaNodes = append(numaNodes, node.Id)
    	}
    
    	manager := &ManagerImpl{
    		endpoints: make(map[string]endpointInfo),
    
    		allDevices:            NewResourceDeviceInstances(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. cluster/gce/config-common.sh

    # limitations under the License.
    
    # Returns the total number of Linux and Windows nodes in the cluster.
    #
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-num-nodes {
      echo "$((NUM_NODES + NUM_WINDOWS_NODES))"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-size {
      local suggested_master_size=2
      if [[ "$(get-num-nodes)" -gt "10" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session.cc

                 nullptr);
    }
    
    Status ClientSession::Impl::MaybeExtendGraph() const {
      mutex_lock l(mu_);
      int num_nodes = graph_->num_node_ids();
      if (num_nodes > last_num_graph_nodes_) {
        GraphDef graph_def;
        graph_->ToGraphDefSubRange(&graph_def, last_num_graph_nodes_);
        last_num_graph_nodes_ = num_nodes;
        return session_->Extend(graph_def);
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. tests/integration/GKE.md

    ```bash
    gcloud container clusters \
      create ${CLUSTER_NAME} \
      --zone ${ZONE} \
      --project ${PROJECT_ID} \
      --cluster-version ${CLUSTER_VERSION} \
      --machine-type ${MACHINE_TYPE} \
      --num-nodes ${NUM_NODES} \
      --enable-kubernetes-alpha \
      --no-enable-legacy-authorization
     ```
    
    * `CLUSTER_NAME`: Whatever suits your fancy, 'istio-e2e' is a good choice.
    * `ZONE`: 'us-central1-f' is a good value to use.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  9. test-site/app/Global.java

                settingsBuilder.put("plugin.types", "org.codelibs.elasticsearch.kuromoji.ipadic.neologd.KuromojiNeologdPlugin,org.codelibs.elasticsearch.FessSuggestPlugin");
            }).build(newConfigs().clusterName("SuggesterTest").numOfNode(1));
            runner.ensureYellow();
    
            ComponentsUtil.runner = runner;
        }
    
        private void createComponents() {
            try {
                ComponentsUtil.contentIndexName = "test-content";
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Sat Feb 23 14:02:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. pkg/util/flag/flags.go

    		if err != nil {
    			return fmt.Errorf("failed to convert the NUMA node ID, exptected integer, got %s", numaNodeReservation[0])
    		}
    
    		memoryReservation := kubeletconfig.MemoryReservation{
    			NumaNode: int32(numaNodeID),
    			Limits:   map[v1.ResourceName]resource.Quantity{},
    		}
    
    		for _, memoryTypeReservation := range memoryTypeReservations {
    			limit := strings.Split(memoryTypeReservation, "=")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top