Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for numaNodes (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go

    	{"kern.nfiles", []_C_int{1, 56}},
    	{"kern.ngroups", []_C_int{1, 18}},
    	{"kern.nosuidcoredump", []_C_int{1, 32}},
    	{"kern.nprocs", []_C_int{1, 47}},
    	{"kern.nthreads", []_C_int{1, 26}},
    	{"kern.numvnodes", []_C_int{1, 58}},
    	{"kern.osrelease", []_C_int{1, 2}},
    	{"kern.osrevision", []_C_int{1, 3}},
    	{"kern.ostype", []_C_int{1, 1}},
    	{"kern.osversion", []_C_int{1, 27}},
    	{"kern.pfstatus", []_C_int{1, 86}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/syscall/zsysctl_openbsd.go

    	{"kern.nfiles", []_C_int{1, 56}},
    	{"kern.ngroups", []_C_int{1, 18}},
    	{"kern.nosuidcoredump", []_C_int{1, 32}},
    	{"kern.nprocs", []_C_int{1, 47}},
    	{"kern.nthreads", []_C_int{1, 26}},
    	{"kern.numvnodes", []_C_int{1, 58}},
    	{"kern.osrelease", []_C_int{1, 2}},
    	{"kern.osrevision", []_C_int{1, 3}},
    	{"kern.ostype", []_C_int{1, 1}},
    	{"kern.osversion", []_C_int{1, 27}},
    	{"kern.pfstatus", []_C_int{1, 86}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	const numNodes = 50
    	const podsPerNode = 100
    	makeNodes := func() []*v1.Node {
    		nodes := make([]*v1.Node, numNodes)
    		// Node created long time ago, with status updated by kubelet exceeds grace period.
    		// Expect pods status updated and Unknown node status posted from node controller
    		for i := 0; i < numNodes; i++ {
    			nodes[i] = &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	logger.V(5).Info("remembering potential nodes", "pod", klog.KObj(pod), "potentialnodes", klog.KObjSlice(nodes))
    	numNodes := len(nodes)
    	if numNodes > resourcev1alpha2.PodSchedulingNodeListMaxSize {
    		numNodes = resourcev1alpha2.PodSchedulingNodeListMaxSize
    	}
    	potentialNodes := make([]string, 0, numNodes)
    	if numNodes == len(nodes) {
    		// Copy all node names.
    		for _, node := range nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. 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)
  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. pkg/scheduler/framework/types.go

    type ImageStateSummary struct {
    	// Size of the image
    	Size int64
    	// Used to track how many nodes have this image, it is computed from the Nodes field below
    	// during the execution of Snapshot.
    	NumNodes int
    	// A set of node names for nodes having this image present. This field is used for
    	// keeping track of the nodes during update/add/remove events.
    	Nodes sets.Set[string]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

    MASTER_KEY: $(yaml-quote "${MASTER_KEY_BASE64:-}")
    KUBECFG_CERT: $(yaml-quote "${KUBECFG_CERT_BASE64:-}")
    KUBECFG_KEY: $(yaml-quote "${KUBECFG_KEY_BASE64:-}")
    KUBELET_APISERVER: $(yaml-quote "${KUBELET_APISERVER:-}")
    NUM_NODES: $(yaml-quote "${NUM_NODES}")
    STORAGE_BACKEND: $(yaml-quote "${STORAGE_BACKEND:-etcd3}")
    STORAGE_MEDIA_TYPE: $(yaml-quote "${STORAGE_MEDIA_TYPE:-}")
    ENABLE_GARBAGE_COLLECTOR: $(yaml-quote "${ENABLE_GARBAGE_COLLECTOR:-}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top