Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for zone_size (0.19 sec)

  1. pkg/controller/nodelifecycle/metrics.go

    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    const (
    	nodeControllerSubsystem = "node_collector"
    	zoneHealthStatisticKey  = "zone_health"
    	zoneSizeKey             = "zone_size"
    	zoneNoUnhealthyNodesKey = "unhealthy_nodes_in_zone"
    	evictionsTotalKey       = "evictions_total"
    
    	updateNodeHealthKey     = "update_node_health_duration_seconds"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 21:55:34 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. cluster/kubemark/iks/config-default.sh

    REGISTRY_LOGIN_URL="${REGISTRY_LOGIN_URL:-https://api.ng.bluemix.net}"
    
    # 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`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 17:15:29 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/Block.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.cache.internal.btree;
    
    public abstract class Block {
        static final int LONG_SIZE = 8;
        static final int INT_SIZE = 4;
        static final int SHORT_SIZE = 2;
    
        private BlockPayload payload;
    
        protected Block(BlockPayload payload) {
            this.payload = payload;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/netpoll_epoll.go

    	if !netpollWakeSig.CompareAndSwap(0, 1) {
    		return
    	}
    
    	var one uint64 = 1
    	oneSize := int32(unsafe.Sizeof(one))
    	for {
    		n := write(netpollEventFd, noescape(unsafe.Pointer(&one)), oneSize)
    		if n == oneSize {
    			break
    		}
    		if n == -_EINTR {
    			continue
    		}
    		if n == -_EAGAIN {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/node-helper.sh

      echo "${metadata}"
    }
    
    # Assumed vars:
    #   scope_flags
    # Parameters:
    #   $1: template name (required).
    function create-linux-node-instance-template {
      local template_name="$1"
      local machine_type="${2:-$NODE_SIZE}"
    
      ensure-gci-metadata-files
      # shellcheck disable=2154 # 'scope_flags' is assigned by upstream
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

            // Transient fields
            private FreeListBlock prev;
            private FreeListBlock next;
    
            @Override
            protected int getSize() {
                return Block.LONG_SIZE + Block.INT_SIZE + Block.INT_SIZE + maxBlockEntries * (Block.LONG_SIZE
                        + Block.INT_SIZE);
            }
    
            @Override
            protected byte getType() {
                return 0x44;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. cluster/gce/windows/node-helper.sh

      local template_name="$1"
      local scopes_flag="$2"
      create-node-template "${template_name}" "${scopes_flag}" "$(get-windows-node-instance-metadata-from-file)" "$(get-windows-node-instance-metadata)" "windows" "${NODE_SIZE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. tensorflow/cc/tools/freeze_saved_model.cc

      }
    }
    
    // Gets a map from string node name to NodeDef.
    void GetNodeNameToNodeDefMap(
        GraphDef* graph_def,
        std::unordered_map<string, NodeDef*>* name_to_node_map) {
      for (size_t i = 0; i < graph_def->node_size(); i++) {
        NodeDef* node = graph_def->mutable_node(i);
        (*name_to_node_map)[node->name()] = node;
      }
    }
    
    // Strips off the tensor part of the tensor_name to get the node_name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

    function stackViewer(stacks, nodes) {
      'use strict';
    
      // Constants used in rendering.
      const ROW = 20;
      const PADDING = 2;
      const MIN_WIDTH = 4;
      const MIN_TEXT_WIDTH = 16;
      const TEXT_MARGIN = 2;
      const FONT_SIZE = 12;
      const MIN_FONT_SIZE = 8;
    
      // Fields
      let pivots = [];          // Indices of currently selected data.Sources entries.
      let matches = new Set();  // Indices of sources that match search
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            @Override
            protected byte getType() {
                return 0x77;
            }
    
            @Override
            protected int getSize() {
                return Block.INT_SIZE + Block.LONG_SIZE + (3 * Block.LONG_SIZE) * maxChildIndexEntries;
            }
    
            @Override
            public void read(DataInputStream instr) throws IOException {
                int count = instr.readInt();
                entries.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top