Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for num_nodes (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cluster/gce/windows/README-GCE-Windows-kube-up.md

    Linux worker node is required and two are recommended because many default
    cluster-addons (e.g., `kube-dns`) need to run on Linux nodes. The master control
    plane only runs on Linux.
    
    ```bash
    export NUM_NODES=2  # number of Linux nodes
    export NUM_WINDOWS_NODES=2
    export KUBE_GCE_ENABLE_IP_ALIASES=true
    export KUBERNETES_NODE_PLATFORM=windows
    export LOGGING_STACKDRIVER_RESOURCE_TYPES=new
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. 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)
Back to top