Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for IsType (0.13 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.Deployment.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

                    "gcePersistentDisk": {
                      "pdName": "pdNameValue",
                      "fsType": "fsTypeValue",
                      "partition": 3,
                      "readOnly": true
                    },
                    "awsElasticBlockStore": {
                      "volumeID": "volumeIDValue",
                      "fsType": "fsTypeValue",
                      "partition": 3,
                      "readOnly": true
                    },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.json

                },
                "gcePersistentDisk": {
                  "pdName": "pdNameValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
                "awsElasticBlockStore": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "partition": 3,
                  "readOnly": true
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return (*funcref)(source, target, fstype, flags, data)
    }
    
    func legacyMount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	if needspace := 8 - len(fstype); needspace <= 0 {
    		fstype = fstype[0:8]
    	} else {
    		fstype += "        "[0:needspace]
    	}
    	return mount_LE(target, source, fstype, uint32(flags), int32(len(data)), data)
    }
    
    func validMount() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. 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)
  7. 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 (2)
  8. src/cmd/link/internal/ld/xcoff.go

    // in the symbol table.
    func xcoffUpdateOuterSize(ctxt *Link, size int64, stype sym.SymKind) {
    	if size == 0 {
    		return
    	}
    	// TODO: use CarrierSymByType
    
    	ldr := ctxt.loader
    	switch stype {
    	default:
    		Errorf(nil, "unknown XCOFF outer symbol for type %s", stype.String())
    	case sym.SRODATA, sym.SRODATARELRO, sym.SFUNCTAB, sym.SSTRING:
    		// Nothing to do
    	case sym.STYPERELRO:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top