Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for numa_node (0.15 sec)

  1. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                settingsBuilder.put("http.cors.allow-origin", "*");
                settingsBuilder.put("discovery.type", "single-node");
            }).build(newConfigs().clusterName(clusterName).numOfNode(1));
    
            // wait for yellow status
            runner.ensureYellow();
    
            System.setProperty(FesenClient.HTTP_ADDRESS, "localhost:" + runner.node().settings().get("http.port", "9201"));
    
            super.setUp();
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager_test.go

    			"dev1": {
    				ID: "dev1",
    				Topology: &pluginapi.TopologyInfo{
    					Nodes: []*pluginapi.NUMANode{
    						{
    							ID: 1,
    						},
    					},
    				},
    			},
    			"dev2": {
    				ID: "dev2",
    				Topology: &pluginapi.TopologyInfo{
    					Nodes: []*pluginapi.NUMANode{
    						{
    							ID: 1,
    						},
    						{
    							ID: 2,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager.go

    				respDevs = append(respDevs, &podresourcesapi.ContainerDevices{
    					ResourceName: resourceName,
    					DeviceIds:    []string{devID},
    					Topology: &podresourcesapi.TopologyInfo{
    						Nodes: []*podresourcesapi.NUMANode{
    							{
    								ID: node.GetID(),
    							},
    						},
    					},
    				})
    			}
    		}
    	}
    
    	return respDevs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java

                // settingsBuilder.putList("discovery.seed_hosts", "127.0.0.1:9301");
                // settingsBuilder.putList("cluster.initial_master_nodes", "127.0.0.1:9301");
            }).build(newConfigs().clusterName("ESSourceReaderTest").numOfNode(1)
                    .pluginTypes("org.codelibs.opensearch.extension.ExtensionPlugin"));
            runner.ensureYellow();
        }
    
        @AfterClass
        public static void afterClass() throws Exception {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_cluster_util.cc

      return absl::OkStatus();
    }
    
    // Sorts control inputs of a graphdef so that they are deterministically
    // ordered.
    void SortControlInputs(GraphDef* gdef) {
      int64_t num_nodes = gdef->node_size();
      for (int64_t i = 0; i < num_nodes; ++i) {
        NodeDef* node = gdef->mutable_node(i);
        // Stable sort control inputs and leave the order of data inputs unchanged.
        std::stable_sort(node->mutable_input()->begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. cluster/validate-cluster.sh

        echo "Computing number of nodes, NODE_INSTANCE_PREFIX=${NODE_INSTANCE_PREFIX}, REGION=${REGION}, EXPECTED_NUM_NODES=${EXPECTED_NUM_NODES}"
      fi
    else
      EXPECTED_NUM_NODES="${NUM_NODES}"
    fi
    
    if [[ "${REGISTER_MASTER_KUBELET:-}" == "true" ]]; then
      if [[ "${KUBERNETES_PROVIDER:-}" == "gce" ]]; then
        NUM_MASTERS=$(get-master-replicas-count)
      else
        NUM_MASTERS=1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				ShutdownGracePeriod:             metav1.Duration{Duration: 60 * time.Second},
    				ShutdownGracePeriodCriticalPods: metav1.Duration{Duration: 60 * time.Second},
    				ReservedMemory: []v1beta1.MemoryReservation{
    					{
    						NumaNode: 1,
    						Limits:   v1.ResourceList{v1.ResourceMemory: resource.MustParse("1Gi")},
    					},
    				},
    				EnableProfilingHandler:        utilpointer.Bool(true),
    				EnableDebugFlagsHandler:       utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/container_manager_linux.go

    			MemoryType: string(b.Type),
    			Size_:      b.Size,
    			Topology: &podresourcesapi.TopologyInfo{
    				Nodes: []*podresourcesapi.NUMANode{},
    			},
    		}
    
    		for _, numaNodeID := range b.NUMAAffinity {
    			containerMemory.Topology.Nodes = append(containerMemory.Topology.Nodes, &podresourcesapi.NUMANode{ID: int64(numaNodeID)})
    		}
    
    		containerMemories = append(containerMemories, &containerMemory)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

          // TODO(b/74949947): turn this back into an error status
          LOG(WARNING) << mutation_warning;
          session->graph->sessions[session].clear();
        }
    
        const auto num_nodes = graph.num_node_ids();
        if (session->last_num_graph_nodes < num_nodes) {
          // TODO(nolivia): check this on a subset of the graph instead of all of
          // it.
          status->status = graph::ValidateGraphHasNoCycle(session->graph->graph);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          GetXlaAutoClusteringSummary(*graph_);
    
      VLOG(2) << "*** Clustering info for graph of size " << graph_->num_nodes();
      VLOG(2) << " Built " << auto_clustering_info.clusters_size()
              << " clusters, size "
              << RatioToString(auto_clustering_info.clustered_node_count(),
                               graph_->num_nodes());
    
      for (const XlaAutoClusteringSummary::Cluster& cluster :
           auto_clustering_info.clusters()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top