Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for inode (0.04 sec)

  1. 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)
  2. pkg/kubelet/stats/cadvisor_stats_provider.go

    		InodesFree:     imageFsInfo.InodesFree,
    		Inodes:         imageFsInfo.Inodes,
    		InodesUsed:     imageFsInodesUsed,
    	}
    	if !splitFileSystem {
    		return fsStats, fsStats, nil
    	}
    
    	containerFs := imageStats.ContainerFilesystems[0]
    	var containerFsInodesUsed *uint64
    	if containerFsInfo.Inodes != nil && containerFsInfo.InodesFree != nil {
    		containerFsIU := *containerFsInfo.Inodes - *containerFsInfo.InodesFree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 16 13:34:22 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. 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)
  4. src/html/template/escape.go

    // escapeAction escapes an action template node.
    func (e *escaper) escapeAction(c context, n *parse.ActionNode) context {
    	if len(n.Pipe.Decl) != 0 {
    		// A local variable assignment, not an interpolation.
    		return c
    	}
    	c = nudge(c)
    	// Check for disallowed use of predefined escapers in the pipeline.
    	for pos, idNode := range n.Pipe.Cmds {
    		node, ok := idNode.Args[0].(*parse.IdentifierNode)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Project.java

        }
    
        private void readLinkedResources() {
            for (Node linkNode : getChildren(findFirstChildNamed(getXml(), "linkedResources"), "link")) {
                Node nameNode = findFirstChildNamed(linkNode, "name");
                Node typeNode = findFirstChildNamed(linkNode, "type");
                Node locationNode = findFirstChildNamed(linkNode, "location");
                Node locationUriNode = findFirstChildNamed(linkNode, "locationURI");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. 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)
  9. src/go/types/stmt.go

    			} else {
    				first = d
    			}
    		}
    	}
    }
    
    func (check *Checker) openScope(node ast.Node, comment string) {
    	scope := NewScope(check.scope, node.Pos(), node.End(), comment)
    	check.recordScope(node, scope)
    	check.scope = scope
    }
    
    func (check *Checker) closeScope() {
    	check.scope = check.scope.Parent()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider.go

    		imageFsRet.CapacityBytes = &imageFsInfo.Capacity
    		imageFsRet.InodesFree = imageFsInfo.InodesFree
    		imageFsRet.Inodes = imageFsInfo.Inodes
    	}
    	// TODO: For CRI Stats Provider we don't support separate disks yet.
    	return imageFsRet, imageFsRet, nil
    }
    
    // ImageFsDevice returns name of the device where the image filesystem locates,
    // e.g. /dev/sda1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top