Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/internal/cache/cache.go

    	c.used(file)
    	return file
    }
    
    // Time constants for cache expiration.
    //
    // We set the mtime on a cache file on each use, but at most one per mtimeInterval (1 hour),
    // to avoid causing many unnecessary inode updates. The mtimes therefore
    // roughly reflect "time of last use" but may in fact be older by at most an hour.
    //
    // We scan the cache for entries to delete at most once per trimInterval (1 day).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_4x.md

        bytes in would always yield deflated bytes out and this isn't always the case!
    
     *  Fix: Reliably update and invalidate the disk cache on windows. As originally designed our
        internal `DiskLruCache` assumes an inode-like file system, where it's fine to delete files that
        are currently being read or written. On Windows the file system forbids this so we must be more
        careful when deleting and renaming files.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    	for _, disk := range di {
    		if disk == nil || disk.Total == 0 {
    			continue
    		}
    		if !globalIsErasureSD && disk.FreeInodes < diskMinInodes && disk.UsedInodes > 0 {
    			// We have an inode count, but not enough inodes.
    			return false, nil
    		}
    		if int64(disk.Free) <= perDisk {
    			return false, nil
    		}
    	}
    
    	// Make sure we can fit "size" on to the disk without getting above the diskFillFraction
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/node.go

    }
    
    func extractNode(node *apicorev1.Node, fieldManager string, subresource string) (*NodeApplyConfiguration, error) {
    	b := &NodeApplyConfiguration{}
    	err := managedfields.ExtractInto(node, internal.Parser().Type("io.k8s.api.core.v1.Node"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(node.Name)
    
    	b.WithKind("Node")
    	b.WithAPIVersion("v1")
    	return b, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        @Nullable
        protected Node.ExecutionState getInitialState() {
            return null;
        }
    
        /**
         * Called when the graph containing this node is about to start execution.
         *
         * @param monitor An action that should be called when this node is ready to execute, when the dependencies for this node are executed outside
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  10. 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)
Back to top