Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for maxInt (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Less16 (Const16 [math.MaxInt16]) _) => (ConstBool [false])
    (Less8  (Const8  [math.MaxInt8 ]) _) => (ConstBool [false])
    (Leq64 _ (Const64 [math.MaxInt64]))  => (ConstBool [true])
    (Leq32 _ (Const32 [math.MaxInt32]))  => (ConstBool [true])
    (Leq16 _ (Const16 [math.MaxInt16]))  => (ConstBool [true])
    (Leq8  _ (Const8  [math.MaxInt8 ]))  => (ConstBool [true])
    
    // Canonicalize <= on numeric bounds and < near numeric bounds to ==
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    	if globalIsDistErasure {
    		n = 2048
    	}
    
    	// Avoid allocating more than half of the available memory
    	if maxN := availableMemory() / (blockSizeV2 * 2); n > maxN {
    		n = maxN
    	}
    
    	if globalIsCICD || strconv.IntSize == 32 {
    		n = 256 // 256MiB for CI/CD environments is sufficient or on 32bit platforms.
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    		Maxc complex128
    		Minc complex128
    	}
    	var it inputT
    	var err error
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	dec := NewDecoder(b)
    
    	// int8
    	b.Reset()
    	it = inputT{
    		Maxi: math.MaxInt8 + 1,
    	}
    	type outi8 struct {
    		Maxi int8
    		Mini int8
    	}
    	var o1 outi8
    	enc.Encode(it)
    	err = dec.Decode(&o1)
    	if err == nil || err.Error() != `value for "Maxi" out of range` {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. src/encoding/gob/decode.go

    }
    
    // decInt8 decodes an integer and stores it as an int8 in value.
    func decInt8(i *decInstr, state *decoderState, value reflect.Value) {
    	v := state.decodeInt()
    	if v < math.MinInt8 || math.MaxInt8 < v {
    		error_(i.ovfl)
    	}
    	value.SetInt(v)
    }
    
    // decUint8 decodes an unsigned integer and stores it as a uint8 in value.
    func decUint8(i *decInstr, state *decoderState, value reflect.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

       * Format</a> ({@code crw} files), a widely-used "raw image" format for cameras. It is found in
       * {@code /etc/mime.types}, e.g. in <a href=
       * "http://anonscm.debian.org/gitweb/?p=collab-maint/mime-support.git;a=blob;f=mime.types;hb=HEAD"
       * >Debian 3.48-1</a>.
       *
       * @since 15.0
       */
      public static final MediaType CRW = createConstant(IMAGE_TYPE, "x-canon-crw");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/MediaType.java

       * Format</a> ({@code crw} files), a widely-used "raw image" format for cameras. It is found in
       * {@code /etc/mime.types}, e.g. in <a href=
       * "http://anonscm.debian.org/gitweb/?p=collab-maint/mime-support.git;a=blob;f=mime.types;hb=HEAD"
       * >Debian 3.48-1</a>.
       *
       * @since 15.0
       */
      public static final MediaType CRW = createConstant(IMAGE_TYPE, "x-canon-crw");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/bootstrap.min.js.map

    yK,OAAY,EACZC,MAAY,EACZC,SAAY,eACZC,UAAY,SACZC,QAAY,WAGRtK,GAAc,CAClBkK,OAAY,2BACZC,KAAY,UACZC,SAAY,mBACZC,UAAY,mBACZC,QAAY,UASRC,cACJ,SAAAA,EAAYnS,EAASyB,GACnBvC,KAAKsF,SAAYxE,EACjBd,KAAKkT,QAAY,KACjBlT,KAAKoK,QAAYpK,KAAKqK,WAAW9H,GACjCvC,KAAKmT,MAAYnT,KAAKoT,kBACtBpT,KAAKqT,UAAYrT,KAAKsT,gBAEtBtT,KAAK8K,gDAmBPzD,OAAA,WACE,IAAIrH,KAAKsF,SAASiO,WAAYrT,EAAEF,KAAKsF,UAAUa,SAASf,IAAxD,CAIA,IAAMW,EAAWkN,EAASO,sBAAsBxT,KAAKsF,UAC/CmO,EAAWvT,EAAEF,KAAKmT,OAAOhN,SAASf,IAIxC,GAFA6N,EAASS,eAELD,EAAJ,CAIA...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/ssa/rewritegeneric.go

    	}
    	// match: (Less8 (Const8 <t> [math.MaxInt8 -1]) x)
    	// result: (Eq8 x (Const8 <t> [math.MaxInt8 ]))
    	for {
    		if v_0.Op != OpConst8 {
    			break
    		}
    		t := v_0.Type
    		if auxIntToInt8(v_0.AuxInt) != math.MaxInt8-1 {
    			break
    		}
    		x := v_1
    		v.reset(OpEq8)
    		v0 := b.NewValue0(v.Pos, OpConst8, t)
    		v0.AuxInt = int8ToAuxInt(math.MaxInt8)
    		v.AddArg2(x, v0)
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      const int min_T = std::numeric_limits<T>::min();
      const int max_T = std::numeric_limits<T>::max();
      const float max_float = std::numeric_limits<float>::max();
    
      const float scale_factor_from_min_side =
          (min_T * min_range > 0) ? min_T / min_range : max_float;
      const float scale_factor_from_max_side =
          (max_T * max_range > 0) ? max_T / max_range : max_float;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    0?u:parseFloat(u),c=c===void 0?c:parseFloat(c),f=f===void 0?f:parseFloat(f);let[d,p]=i==="min"?[o,c]:[f,u];return d-p}function dn(i,e){return typeof i=="object"?i:{name:"arbitrary-screen",values:[{[e]:i}]}}function pd({"min-width":i,min:e=i,max:t,raw:r}={}){return{min:e,max:t,raw:r}}var hn=C(()=>{l()});function mn(i,e){i.walkDecls(t=>{if(e.includes(t.prop)){t.remove();return}for(let r of e)t.value.includes(`/ var(${r})`)&&(t.value=t.value.replace(`/ var(${r})`,""))})}var dd=C(()=>{l()});var H,Te,Be,Fe,hd...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top