Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 68 for inode (0.04 sec)

  1. src/text/template/parse/node.go

    // The periods are dropped from each ident.
    type ChainNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Node  Node
    	Field []string // The identifiers in lexical order.
    }
    
    func (t *Tree) newChain(pos Pos, node Node) *ChainNode {
    	return &ChainNode{tr: t, NodeType: NodeChain, Pos: pos, Node: node}
    }
    
    // Add adds the named field (which should start with a period) to the end of the chain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/grafana/node/minio-node.json

              "interval": "",
              "legendFormat": "[{{drive}}]",
              "refId": "B"
            }
          ],
          "title": "Free Inodes",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "description": "",
          "fieldConfig": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/node.go

    	}
    
    	// Fetches the cluster configuration
    	// NB in case of control-plane node, we are reading all the info for the node; in case of NOT control-plane node
    	//    (worker node), we are not reading local API address and the CRI socket from the node object
    	initCfg, err := configutil.FetchInitConfigurationFromCluster(client, nil, "upgrade", !isControlPlaneNode, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	assert.Equal(imageFsInfo.Capacity, *stats.CapacityBytes)
    	assert.Equal(imageStats.TotalStorageBytes, *stats.UsedBytes)
    	assert.Equal(imageFsInfo.InodesFree, stats.InodesFree)
    	assert.Equal(imageFsInfo.Inodes, stats.Inodes)
    	assert.Equal(*imageFsInfo.Inodes-*imageFsInfo.InodesFree, *stats.InodesUsed)
    }
    
    func TestCadvisorImagesFsStats(t *testing.T) {
    	ctx := context.Background()
    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/provider_test.go

    		Usage:      uint64(seed + offsetFsUsage),
    		Inodes:     &inodes,
    		InodesFree: &inodesFree,
    	}
    }
    
    func getPodVolumeStats(seed int, volumeName string) statsapi.VolumeStats {
    	availableBytes := uint64(seed + offsetFsAvailable)
    	capacityBytes := uint64(seed + offsetFsCapacity)
    	usedBytes := uint64(seed + offsetFsUsage)
    	inodes := uint64(seed + offsetFsInodes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. pkg/volume/volume.go

    	// InodesUsed represents the total inodes used by the Volume.
    	InodesUsed *resource.Quantity
    
    	// Inodes represents the total number of inodes available in the volume.
    	// For volumes that share a filesystem with the host (e.g. emptydir, hostpath),
    	// this is the inodes available in the underlying storage,
    	// and will not equal InodesUsed + InodesFree as the fs is shared.
    	Inodes *resource.Quantity
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer.go

    //     node <- pod <- pvc
    //     node <- pod <- pvc <- pv
    //     node <- pod <- pvc <- pv <- secret
    //     node <- pod <- ResourceClaim
    //  4. If a request is for a resourceslice, then authorize access if there is an
    //     edge from the existing slice object to the node, which is the case if the
    //     existing object has the node in its NodeName field. For create, the access gets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. hack/make-rules/test-e2e-node.sh

    focus=${FOCUS:-""}
    skip=${SKIP-"\[Flaky\]|\[Slow\]|\[Serial\]"}
    # The number of tests that can run in parallel depends on what tests
    # are running and on the size of the node. Too many, and tests will
    # fail due to resource contention. 8 is a reasonable default for a
    # e2-standard-2 node.
    # Currently, parallelism only affects when REMOTE=true. For local test,
    # ginkgo default parallelism (cores - 1) is used.
    parallelism=${PARALLELISM:-8}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top