Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for Filesystem (0.48 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "fsType": {
                "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.",
                "type": "string"
              },
              "options": {
                "additionalProperties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    	extractAttributesMetadata(options.Envs, options.Platform, meta)
    	// Add all instance labels with lower precedence than pod labels
    	extractInstanceLabels(options.Platform, meta)
    
    	// Add all pod labels found from filesystem
    	// These are typically volume mounted by the downward API
    	lbls, err := readPodLabels()
    	if err == nil {
    		meta.Labels = map[string]string{}
    		for k, v := range meta.StaticLabels {
    			meta.Labels[k] = v
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    }
    
    func TestUnshare(t *testing.T) {
    	path := "/proc/net/dev"
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("kernel doesn't support proc filesystem")
    		}
    		if os.IsPermission(err) {
    			t.Skip("unable to test proc filesystem due to permissions")
    		}
    		t.Fatal(err)
    	}
    
    	b, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	orig := strings.TrimSpace(string(b))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Fatalf("Manager should report disk pressure since soft threshold was met")
    			}
    
    			// verify image, container or both gc were called.
    			// split filesystem can have container gc called without image.
    			// same filesystem should have both.
    			if diskGC.imageGCInvoked != tc.expectImageGcCall && diskGC.containerGCInvoked != tc.expectContainerGcCall {
    				t.Fatalf("Manager should have invoked image gc")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager_test.go

    	tests := []struct {
    		name            string
    		pvMode, podMode v1.PersistentVolumeMode
    		expectMount     bool
    		expectError     bool
    	}{
    		{
    			name:        "filesystem volume",
    			pvMode:      v1.PersistentVolumeFilesystem,
    			podMode:     v1.PersistentVolumeFilesystem,
    			expectMount: true,
    			expectError: false,
    		},
    		{
    			name:        "block volume",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/volume/portworx/portworx.go

    	mounter mount.Interface
    	plugin  *portworxVolumePlugin
    	volume.MetricsProvider
    }
    
    type portworxVolumeMounter struct {
    	*portworxVolume
    	// Filesystem type, optional.
    	fsType string
    	// Specifies whether the disk will be attached as read-only.
    	readOnly bool
    	// diskMounter provides the interface that is used to mount the actual block device.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/os/os_test.go

    				t.Fatalf("failed to create test file: %s", err)
    			}
    
    			if _, err := Stat(to); err != nil {
    				// Sanity check that the underlying filesystem is not case sensitive.
    				if IsNotExist(err) {
    					t.Skipf("case sensitive filesystem")
    				}
    				t.Fatalf("stat %q, got: %q", to, err)
    			}
    
    			if err := Rename(from, to); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/net/http/fs_test.go

    			testFileServerNotDirError(t, mode, func(path string) FileSystem { return Dir(path) })
    		})
    		t.Run("FS", func(t *testing.T) {
    			testFileServerNotDirError(t, mode, func(path string) FileSystem { return FS(os.DirFS(path)) })
    		})
    	})
    }
    
    func testFileServerNotDirError(t *testing.T, mode testMode, newfs func(string) FileSystem) {
    	ts := newClientServerTest(t, mode, FileServer(newfs("testdata"))).ts
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common.go

    // 5. __missingParts__       - has the latest copy of xl.meta but has some parts
    // missing.  This is identified separately since this may need manual
    // inspection to understand the root cause. E.g, this could be due to
    // backend filesystem corruption.
    
    // listOnlineDisks - returns
    // - a slice of disks where disk having 'older' xl.meta (or nothing)
    // are set to nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    Script plugins are automatically resolved and can be applied from a script on the local filesystem or remotely:
    
    ====
    include::sample[dir="snippets/organizingGradleProjects/configureProjectUsingScript/kotlin", files="build.gradle.kts[]"]
    include::sample[dir="snippets/organizingGradleProjects/configureProjectUsingScript/groovy", files="build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top