Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsExtendedResourceName (0.58 sec)

  1. pkg/kubelet/cm/devicemanager/plugin/v1beta1/handler.go

    	if !s.isVersionCompatibleWithPlugin(versions...) {
    		return fmt.Errorf("manager version, %s, is not among plugin supported versions %v", api.Version, versions)
    	}
    
    	if !v1helper.IsExtendedResourceName(core.ResourceName(pluginName)) {
    		return fmt.Errorf("invalid name of device plugin socket: %s", fmt.Sprintf(errInvalidResourceName, pluginName))
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		klog.InfoS("Bad registration request from device plugin with resource", "resourceName", r.ResourceName, "err", err)
    		return &api.Empty{}, err
    	}
    
    	if !v1helper.IsExtendedResourceName(core.ResourceName(r.ResourceName)) {
    		err := fmt.Errorf(errInvalidResourceName, r.ResourceName)
    		klog.InfoS("Bad registration request from device plugin", "err", err)
    		return &api.Empty{}, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/scheduler/util/utils.go

    }
    
    // IsScalarResourceName validates the resource for Extended, Hugepages, Native and AttachableVolume resources
    func IsScalarResourceName(name v1.ResourceName) bool {
    	return v1helper.IsExtendedResourceName(name) || v1helper.IsHugePageResourceName(name) ||
    		v1helper.IsPrefixedNativeResource(name) || v1helper.IsAttachableVolumeResourceName(name)
    }
    
    // As converts two objects to the given type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/validation/validation.go

    			return append(allErrs, field.Invalid(fldPath, value, "must be a standard resource for containers"))
    		}
    	} else if !v1helper.IsNativeResource(v1.ResourceName(value)) {
    		if !v1helper.IsExtendedResourceName(v1.ResourceName(value)) {
    			return append(allErrs, field.Invalid(fldPath, value, "doesn't follow extended resource name standard"))
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top