Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dif (0.02 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/scale_int.go

    func scaledValue(unscaled *big.Int, scale, newScale int) int64 {
    	dif := scale - newScale
    	if dif == 0 {
    		return unscaled.Int64()
    	}
    
    	// Handle scale up
    	// This is an easy case, we do not need to care about rounding and overflow.
    	// If any intermediate operation causes overflow, the result will overflow.
    	if dif < 0 {
    		return unscaled.Int64() * int64(math.Pow10(-dif))
    	}
    
    	// Handle scale down
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 20:41:44 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    //sys	SetupDiCallClassInstaller(installFunction DI_FUNCTION, deviceInfoSet DevInfo, deviceInfoData *DevInfoData) (err error) = setupapi.SetupDiCallClassInstaller
    
    // CallClassInstaller member calls the appropriate class installer, and any registered co-installers, with the specified installation request (DIF code).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="multipart/signed"/>
      <mime-type type="multipart/voice-message"/>
    
      <mime-type type="application/dif+xml">
        <root-XML localName="DIF"/>
        <root-XML localName="DIF" namespaceURI="http://gcmd.gsfc.nasa.gov/Aboutus/xml/dif/"/>
        <glob pattern="*.dif"/>
        <sub-class-of type="application/xml"/>
      </mime-type>
    
      <mime-type type="application/onix-message+xml">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top