Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for dump_nodes (0.56 sec)

  1. cluster/log-dump/log-dump.sh

    # are present then they will be detected and their logs will be dumped too.
    function dump_nodes() {
      local node_names=()
      local windows_node_names=()
      if [[ -n "${1:-}" ]]; then
        echo 'Dumping logs for nodes provided as args to dump_nodes() function'
        node_names=( "$@" )
      elif [[ -n "${use_custom_instance_list}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/fmt.go

    			for _, dcl := range n.Dcl {
    				dumpNode(w, dcl, depth+1)
    			}
    		}
    		if len(fn.ClosureVars) > 0 {
    			indent(w, depth)
    			fmt.Fprintf(w, "%+v-ClosureVars", n.Op())
    			for _, cv := range fn.ClosureVars {
    				dumpNode(w, cv, depth+1)
    			}
    		}
    		if len(fn.Body) > 0 {
    			indent(w, depth)
    			fmt.Fprintf(w, "%+v-body", n.Op())
    			dumpNodes(w, fn.Body, depth+1)
    		}
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/graph/GraphMutationTest.java

    @RunWith(JUnit4.class)
    
    public final class GraphMutationTest {
      private static final int NUM_TRIALS = 50;
      private static final int NUM_NODES = 100;
      private static final int NUM_EDGES = 1000;
      private static final int NODE_POOL_SIZE = 1000; // must be >> NUM_NODES
    
      @Test
      public void directedGraph() {
        testGraphMutation(GraphBuilder.directed());
      }
    
      @Test
      public void undirectedGraph() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 18 16:17:46 UTC 2017
    - 4.2K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/debugger/dumper.go

    }
    
    // DumpAll writes cached nodes and scheduling queue information to the scheduler logs.
    func (d *CacheDumper) DumpAll(logger klog.Logger) {
    	d.dumpNodes(logger)
    	d.dumpSchedulingQueue(logger)
    }
    
    // dumpNodes writes NodeInfo to the scheduler logs.
    func (d *CacheDumper) dumpNodes(logger klog.Logger) {
    	dump := d.cache.Dump()
    	nodeInfos := make([]string, 0, len(dump.Nodes))
    	for name, nodeInfo := range dump.Nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. cluster/kubemark/gce/config-default.sh

    # NUM_NODES should not be specified by the user. Instead we use
    # NUM_NODES=KUBEMARK_AUTOSCALER_MAX_NODES. This gives other cluster components
    # (e.g. kubemark master, Heapster) enough resources to handle maximum cluster size.
    if [[ "${ENABLE_KUBEMARK_CLUSTER_AUTOSCALER}" == "true" ]]; then
      NUM_REPLICAS=1
      if [[ -n "$NUM_NODES" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 09 19:04:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. tests/integration/create_cluster_gke.sh

    MACHINE_TYPE=${MACHINE_TYPE:-n1-standard-4}
    NUM_NODES=${NUM_NODES:-3}
    # Store the previous value (which may have been unset) so we can restore it on cleanup
    OLD_USE_CLIENT_CERT=$(gcloud config list 2>/dev/null | grep use_client_certificate | cut -d' ' -f3)
    
    function usage() {
      echo "${0} -p PROJECT [-z ZONE] [-c CLUSTER_NAME] [-v CLUSTER_VERSION] [-m MACHINE_TYPE] [-n NUM_NODES]"
      echo ''
      # shellcheck disable=SC2016
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 12 16:02:51 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. 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)
  8. cluster/kubemark/iks/config-default.sh

    # User defined
    # number of real workers in spawnTester cluster
    NUM_NODES="${NUM_NODES:-2}"
    # spec of real workers in spawnTester cluster
    NODE_SIZE=${NODE_SIZE:-u2c.2x4}
    DESIRED_NODES="${DESIRED_NODES:-10}"
    # number of hollow nodes
    # TODO: once IKS supports `kubetest`, i.e. the base cluster provisioning implemented in `kubetest`
    # we can use NUM_NODES=${KUBEMARK_NUM_NODES:-10} to avoid usage of KUBEMARK_NUM_NODES
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top