Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 197 for scaleIO (0.37 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

                },
                "portworxVolume": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true
                },
                "scaleIO": {
                  "gateway": "gatewayValue",
                  "system": "systemValue",
                  "secretRef": {
                    "name": "nameValue"
                  },
                  "sslEnabled": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    					Secret: &api.SecretVolumeSource{
    						SecretName: "Spec.Volumes[*].VolumeSource.Secret"}}}, {
    				VolumeSource: api.VolumeSource{
    					ScaleIO: &api.ScaleIOVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ScaleIO.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					ISCSI: &api.ISCSIVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    		*out = new(PortworxVolumeSource)
    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Local != nil {
    		in, out := &in.Local, &out.Local
    		*out = new(LocalVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    		*out = new(PortworxVolumeSource)
    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Local != nil {
    		in, out := &in.Local, &out.Local
    		*out = new(LocalVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    			name: "ScaleIO with empty gateway",
    			vol: core.Volume{
    				Name: "scaleio-volume",
    				VolumeSource: core.VolumeSource{
    					ScaleIO: &core.ScaleIOVolumeSource{
    						Gateway:    "",
    						System:     "test-system",
    						VolumeName: "test-vol-1",
    					},
    				},
    			},
    			errs: []verr{{
    				etype: field.ErrorTypeRequired,
    				field: "scaleIO.gateway",
    			}},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.ScaleIO != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("scaleIO"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateScaleIOVolumeSource(source.ScaleIO, fldPath.Child("scaleIO"))...)
    		}
    	}
    	if source.CSI != nil {
    		if numVolumes > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/UniformSupport.h

        }
    
        bool lossy;
        expressed_value.convert(scale_.getSemantics(), round_mode_, &lossy);
        // fixed_point = clamp(clamp_min, clamp_max, (
        //   roundHalfToEven(expressed / scale) + zero_point))
        APFloat scaled = (expressed_value / scale_);
        scaled.roundToIntegral(round_mode_);
        scaled.add(zero_point_, round_mode_);
        APFloat fixed_point = llvm::minimum(scaled, clamp_max_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "scaleIO": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource"
                  }
                ],
                "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
              },
              "secret": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	out.PhotonPersistentDisk = (*core.PhotonPersistentDiskVolumeSource)(unsafe.Pointer(in.PhotonPersistentDisk))
    	out.PortworxVolume = (*core.PortworxVolumeSource)(unsafe.Pointer(in.PortworxVolume))
    	out.ScaleIO = (*core.ScaleIOPersistentVolumeSource)(unsafe.Pointer(in.ScaleIO))
    	out.Local = (*core.LocalVolumeSource)(unsafe.Pointer(in.Local))
    	out.StorageOS = (*core.StorageOSPersistentVolumeSource)(unsafe.Pointer(in.StorageOS))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apps__v1_openapi.json

              },
              "scaleIO": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource"
                  }
                ],
                "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
              },
              "secret": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top