Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 102 for fileSystem (0.43 sec)

  1. src/syscall/syscall_linux_test.go

    		}
    		// formatted so the values are aligned for easier comparison
    		t.Errorf("expected %s,\ngot      %s", want, got)
    	}
    }
    
    // filesystemIsNoSUID reports whether the filesystem for the given
    // path is mounted nosuid.
    func filesystemIsNoSUID(path string) bool {
    	var st syscall.Statfs_t
    	if syscall.Statfs(path, &st) != nil {
    		return false
    	}
    	return st.Flags&syscall.MS_NOSUID != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// mounted only with a single SELinux context.
    	//
    	// When "false", Kubernetes won't pass any special SELinux mount options to the driver.
    	// This is typical for volumes that represent subdirectories of a bigger shared filesystem.
    	//
    	// Default is "false".
    	//
    	// +featureGate=SELinuxMountReadWriteOncePod
    	// +optional
    	SELinuxMount *bool `json:"seLinuxMount,omitempty" protobuf:"varint,8,opt,name=seLinuxMount"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec.\n\nPossible enum values:\n - `\"Block\"` means the volume will not be formatted with a filesystem and will remain a raw block device.\n - `\"Filesystem\"` means the volume will be or is formatted with a filesystem.",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  5. tensorflow/BUILD

    # shared object directly.
    #
    # For example, from Python tf.load_op_library loads a custom op library (via
    # dlopen() on Linux), the library finds libtensorflow_framework.so (no
    # filesystem search takes place, since libtensorflow_framework.so has already
    # been loaded by pywrap_tensorflow) and registers its ops and kernels via
    # REGISTER_OP and REGISTER_KERNEL_BUILDER (which use symbols from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    		// only resolve to paths if they are inside of the standard
    		// library, the main module, or some dependency of the main
    		// module. Verify that before we walk the filesystem: a filesystem
    		// walk in a directory like /var or /etc can be very expensive!
    		dir := filepath.Dir(filepath.Clean(m.Pattern()[:i+3]))
    		absDir := dir
    		if !filepath.IsAbs(dir) {
    			absDir = filepath.Join(base.Cwd(), dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. cmd/endpoint.go

    		// As a special case make sure to trim the separator.
    
    		// NOTE: It is also perfectly fine for windows users to have a path
    		// without C:/ since at that point we treat it as relative path
    		// and obtain the full filesystem path as well. Providing C:/
    		// style is necessary to provide paths other than C:/,
    		// such as F:/, D:/ etc.
    		//
    		// Another additional benefit here is that this style also
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. pkg/volume/plugins.go

    }
    
    const (
    	// Common parameter which can be specified in StorageClass to specify the desired FSType
    	// Provisioners SHOULD implement support for this if they are block device based
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Default value depends on the provisioner
    	VolumeParameterFSType = "fstype"
    
    	ProbeAddOrUpdate ProbeOperation = 1 << iota
    	ProbeRemove
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.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
    - 3.1M bytes
    - Viewed (0)
  10. 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 (2)
Back to top