Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for fileSystem (0.23 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

        # storage.metrics on
    
        # storage.path
        # ------------
        # absolute file system path to store filesystem data buffers (chunks).
        #
        # storage.path /tmp/storage
    
        # storage.sync
        # ------------
        # configure the synchronization mode used to store the data into the
        # filesystem. It can take the values normal or full.
        #
        # storage.sync normal
    
        # storage.checksum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. cmd/object-api-datatypes.go

    // BackendType - represents different backend types.
    type BackendType int
    
    // Enum for different backend types.
    const (
    	Unknown = BackendType(madmin.Unknown)
    	// Filesystem backend.
    	BackendFS = BackendType(madmin.FS)
    	// Multi disk BackendErasure (single, distributed) backend.
    	BackendErasure = BackendType(madmin.Erasure)
    	// Add your own backend.
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	"k8s.io/kubernetes/pkg/kubelet/util"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    	utilpod "k8s.io/kubernetes/pkg/util/pod"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/build.gradle

                sourceDirectory = precompiledScriptPluginUtils.sourceDirectory
                target = "buildSrc"
            }
            problemsApiUsage
        }
    
        // TODO: Do this lazily so we don't need to walk the filesystem during configuration
        // iterate through each snippets and record their names and locations
        FileFilter directoriesOnly = { it.directory }
        def topLevelDirs = file('src/snippets').listFiles(directoriesOnly)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		return errUnsupportedDisk
    	}
    
    	// We know XFS already supports O_DIRECT no need to check.
    	if fsType == "XFS" {
    		return nil
    	}
    
    	// For all other FS pay the price of not using our recommended filesystem.
    
    	// Check if backend is writable and supports O_DIRECT
    	uuid := mustGetUUID()
    	filePath := pathJoin(s.drivePath, minioMetaTmpDeletedBucket, ".writable-check-"+uuid+".tmp")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// running. The actual set of running pods is stored on the podWorkers. The manager is populated
    	// by the kubelet config loops which abstracts receiving configuration from many different sources
    	// (api for regular pods, local filesystem or http for static pods). The manager may be consulted
    	// by other components that need to see the set of desired pods. Note that not all desired pods are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    						api.ResourceStorage: resource.MustParse("4Gi"),
    					},
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "Bound", "my-volume", "4Gi", "ROX", "", "<unset>", "<unknown>", "Filesystem"}}},
    		},
    		{
    			// Test name, num of containers, restarts, container ready status
    			pvc: api.PersistentVolumeClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test2",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.internal.nativeintegration.filesystem.FileSystem> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (FileSystem.java:0)
    Class <org.gradle.internal.nativeintegration.filesystem.Symlink> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (Symlink.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  9. RELEASE.md

        *   Update Getting Started docs and API intro.
    *   Google Cloud Storage (GCS):
        *   Add userspace DNS caching for the GCS client.
        *   Customize request timeouts for the GCS filesystem.
        *   Improve GCS filesystem caching.
    *   Bug Fixes:
        *   Fix bug where partitioned integer variables got their wrong shapes.
            Before
        *   Fix correctness bug in CPU and GPU implementations of Adadelta.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    	"k8s.io/kubernetes/pkg/kubelet/stats/pidlimit"
    	kubelettypes "k8s.io/kubernetes/pkg/kubelet/types"
    	kubeletutil "k8s.io/kubernetes/pkg/kubelet/util"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/pkg/util/flock"
    	"k8s.io/kubernetes/pkg/util/oom"
    	"k8s.io/kubernetes/pkg/util/rlimit"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top