Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for fsType (0.17 sec)

  1. cmd/xl-storage.go

    		s.drivePath = ep.Path
    		return s, err
    	}
    
    	info, err := disk.GetInfo(s.drivePath, true)
    	if err != nil {
    		return s, err
    	}
    	s.major = info.Major
    	s.minor = info.Minor
    	s.fsType = info.FSType
    
    	if !globalIsCICD && !globalIsErasureSD {
    		var rootDrive bool
    		if globalRootDiskThreshold > 0 {
    			// Use MINIO_ROOTDISK_THRESHOLD_SIZE to figure out if
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    		".Spec.Volumes[0].VolumeSource.AzureDisk.CachingMode":                                         `"ReadWrite"`,
    		".Spec.Volumes[0].VolumeSource.AzureDisk.FSType":                                              `"ext4"`,
    		".Spec.Volumes[0].VolumeSource.AzureDisk.Kind":                                                `"Shared"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    //sys	mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
    
    func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	// Certain file systems get rather angry and EINVAL if you give
    	// them an empty string of data, rather than NULL.
    	if data == "" {
    		return mount(source, target, fstype, flags, nil)
    	}
    	datap, err := BytePtrFromString(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    func mount(source string, target string, fstype string, flags uintptr, data *byte) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(source)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(target)
    	if err != nil {
    		return
    	}
    	var _p2 *byte
    	_p2, err = BytePtrFromString(fstype)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_Setns(fd int, nstype int) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_SETNS<<4, uintptr(fd), uintptr(nstype))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_SetnsAddr() *(func(fd int, nstype int) (err error))
    
    var Setns = enter_Setns
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation_test.go

    					AccessModes: []api.PersistentVolumeAccessMode{api.ReadWriteOnce},
    					PersistentVolumeSource: api.PersistentVolumeSource{
    						FlexVolume: &api.FlexPersistentVolumeSource{
    							Driver: "kubernetes.io/blue",
    							FSType: "ext4",
    						},
    					},
    					StorageClassName: "test-storage-class",
    				},
    			},
    		},
    	}}
    
    	for _, volumeAttachment := range migrationEnabledErrorCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	if migrationEnabled {
    		pv.Spec.PersistentVolumeSource = v1.PersistentVolumeSource{
    			GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{
    				PDName:    "test-disk",
    				FSType:    "ext4",
    				Partition: 0,
    				ReadOnly:  false,
    			},
    		}
    	} else {
    		pv.Spec.PersistentVolumeSource = v1.PersistentVolumeSource{
    			RBD: &v1.RBDPersistentVolumeSource{
    				RBDImage: "test-disk",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            rng.uniform(low=0.0, high=1.0, size=static_input_shape).astype(
                np.float32
            )
        )
    
        def data_gen() -> repr_dataset.RepresentativeDataset:
          for _ in range(100):
            yield {
                'input_tensor': rng.uniform(
                    low=0.0, high=1.0, size=static_input_shape
                ).astype(np.float32)
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		// Get the return type of the wrapper function
    		// compiled by gcc.
    		gccResult := ""
    		if fntype.Results == nil || len(fntype.Results.List) == 0 {
    			gccResult = "void"
    		} else if len(fntype.Results.List) == 1 && len(fntype.Results.List[0].Names) <= 1 {
    			gccResult = p.cgoType(fntype.Results.List[0].Type).C.String()
    		} else {
    			fmt.Fprintf(fgcch, "\n/* Return type for %s */\n", exp.ExpName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            """Initializes a SimpleGatherAndConvModel."""
            self.embedding_w = np.random.randn(1024, 3, 4, 3).astype('f4')
            self.embedding_w = np.minimum(np.maximum(self.embedding_w, -4), 4)
    
            self.conv_filters = np.random.uniform(
                low=-10, high=10, size=filter_shape
            ).astype('f4')
    
            second_conv_filter_shape = (3, 3, filter_shape[-1], 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top