Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for fsType (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "type": "object"
        },
        "io.k8s.api.core.v1.PortworxVolumeSource": {
          "description": "PortworxVolumeSource represents a Portworx volume resource.",
          "properties": {
            "fsType": {
              "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.NRRequests, err = dc.ReadUint64()
    	if err != nil {
    		err = msgp.WrapError(err, "NRRequests")
    		return
    	}
    	z.FSType, err = dc.ReadString()
    	if err != nil {
    		err = msgp.WrapError(err, "FSType")
    		return
    	}
    	z.RootDisk, err = dc.ReadBool()
    	if err != nil {
    		err = msgp.WrapError(err, "RootDisk")
    		return
    	}
    	z.Healing, err = dc.ReadBool()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    	}
    	validPodSpecVolume := api.PodSpec{
    		Volumes:       []api.Volume{{Name: "gcepd", VolumeSource: api.VolumeSource{GCEPersistentDisk: &api.GCEPersistentDiskVolumeSource{PDName: "my-PD", FSType: "ext4", Partition: 1, ReadOnly: false}}}},
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.CachingMode != nil {
    		in, out := &in.CachingMode, &out.CachingMode
    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Kind != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.CachingMode != nil {
    		in, out := &in.CachingMode, &out.CachingMode
    		*out = new(AzureDataDiskCachingMode)
    		**out = **in
    	}
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	if in.ReadOnly != nil {
    		in, out := &in.ReadOnly, &out.ReadOnly
    		*out = new(bool)
    		**out = **in
    	}
    	if in.Kind != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_0 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
            self.filters_1 = np.random.uniform(
                low=-1.0, high=1.0, size=(4, 3)
            ).astype('f4')
            self.bias_1 = np.random.uniform(low=-1.0, high=1.0, size=(3,)).astype(
                'f4'
            )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    	// Report node status.
    	kubelet.updateRuntimeUp()
    	assert.NoError(t, kubelet.updateNodeStatus(ctx))
    
    	actions := kubeClient.Actions()
    	assert.Len(t, actions, 2)
    	assert.IsType(t, core.GetActionImpl{}, actions[0])
    	assert.IsType(t, core.PatchActionImpl{}, actions[1])
    	patchAction := actions[1].(core.PatchActionImpl)
    
    	updatedNode, err := applyNodeStatusPatch(existingNode, patchAction.GetPatch())
    	require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    				ctxt.Errorf(s, "dynamic relocation to unreachable symbol %s", ldr.SymName(rSym))
    			}
    			if !thearch.Adddynrel(target, ldr, syms, s, r, ri) {
    				ctxt.Errorf(s, "unsupported dynamic relocation for symbol %s (type=%d (%s) stype=%d (%s))", ldr.SymName(rSym), r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymType(rSym), ldr.SymType(rSym))
    			}
    		}
    	}
    }
    
    func (state *dodataState) dynreloc(ctxt *Link) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return tflite::TensorType_UINT8;
      } else if (auto complex_type = mlir::dyn_cast<mlir::ComplexType>(type)) {
        auto ftype = complex_type.getElementType();
        if (ftype.isF32()) {
          return tflite::TensorType_COMPLEX64;
        }
        if (ftype.isF64()) {
          return tflite::TensorType_COMPLEX128;
        }
        return Status(absl::StatusCode::kInvalidArgument, "Unsupported type");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top