Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for dump_nodes (0.13 sec)

  1. 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)
  2. src/internal/concurrent/hashtriemap_test.go

    		testData[i] = fmt.Sprintf("%b", i)
    	}
    	for i := range testDataLarge {
    		testDataLarge[i] = fmt.Sprintf("%b", i)
    	}
    }
    
    func dumpMap[K, V comparable](ht *HashTrieMap[K, V]) {
    	dumpNode(ht, &ht.root.node, 0)
    }
    
    func dumpNode[K, V comparable](ht *HashTrieMap[K, V], n *node[K, V], depth int) {
    	var sb strings.Builder
    	for range depth {
    		fmt.Fprintf(&sb, "\t")
    	}
    	prefix := sb.String()
    	if n.isEntry {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. hack/ginkgo-e2e.sh

      --prepull-images="${PREPULL_IMAGES:-false}" \
      ${MASTER_OS_DISTRIBUTION:+"--master-os-distro=${MASTER_OS_DISTRIBUTION}"} \
      ${NODE_OS_DISTRIBUTION:+"--node-os-distro=${NODE_OS_DISTRIBUTION}"} \
      ${NUM_NODES:+"--num-nodes=${NUM_NODES}"} \
      ${E2E_REPORT_DIR:+"--report-dir=${E2E_REPORT_DIR}"} \
      ${E2E_REPORT_PREFIX:+"--report-prefix=${E2E_REPORT_PREFIX}"} \
      "${suite_args[@]:+${suite_args[@]}}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. 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)
Back to top