Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for exp5 (0.09 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    	case arg_immediate_exp_3_pre_4_a_b_c_d_e_f_g_h:
    		pre := (x >> 5) & (1<<4 - 1)
    		exp := 1 - ((x >> 17) & 1)
    		exp = (exp << 2) + (((x >> 16) & 1) << 1) + ((x >> 9) & 1)
    		s := ((x >> 18) & 1)
    		return Imm_fp{uint8(s), int8(exp) - 3, uint8(pre)}
    
    	case arg_immediate_exp_3_pre_4_imm8:
    		pre := (x >> 13) & (1<<4 - 1)
    		exp := 1 - ((x >> 19) & 1)
    		exp = (exp << 2) + ((x >> 17) & (1<<2 - 1))
    		s := ((x >> 20) & 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    		tmpl, err := New("empty").Parse(text)
    		if err != nil {
    			t.Fatalf("%q: %s", test.expr, err)
    		}
    		b.Reset()
    		err = tmpl.Execute(b, &cmpStruct)
    		if test.ok && err != nil {
    			t.Errorf("%s errored incorrectly: %s", test.expr, err)
    			continue
    		}
    		if !test.ok && err == nil {
    			t.Errorf("%s did not error", test.expr)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }?.candidate?.originScope
    
        /**
         * Returns whether a member of companion is used to initialize the enum entry or not. For example,
         *     enum class C(val i: Int) {
         *         ONE(<expr>C.K</expr>)  // C.ONE uses C.K for initialization
         *         ;
         *         companion object {
         *             const val K = 1
         *         }
         *     }
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/jquery-3.6.3.min.js

    (t))&&r.specified?r.value:null}),se}(C);E.find=d,E.expr=d.selectors,E.expr[":"]=E.expr.pseudos,E.uniqueSort=E.unique=d.uniqueSort,E.text=d.getText,E.isXMLDoc=d.isXML,E.contains=d.contains,E.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&E(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=E.expr.match.needsContext;function A(e,t){return e.nodeNa...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/jquery-3.6.3.min.js

    (t))&&r.specified?r.value:null}),se}(C);E.find=d,E.expr=d.selectors,E.expr[":"]=E.expr.pseudos,E.uniqueSort=E.unique=d.uniqueSort,E.text=d.getText,E.isXMLDoc=d.isXML,E.contains=d.contains,E.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&E(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=E.expr.match.needsContext;function A(e,t){return e.nodeNa...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    		}
    	}
    }
    
    func TestVersionName(t *testing.T) {
    	if got, exp := VersionName(VersionTLS13), "TLS 1.3"; got != exp {
    		t.Errorf("unexpected VersionName: got %q, expected %q", got, exp)
    	}
    	if got, exp := VersionName(0x12a), "0x012A"; got != exp {
    		t.Errorf("unexpected fallback VersionName: got %q, expected %q", got, exp)
    	}
    }
    
    // http2isBadCipher is copied from net/http.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    	} {
    		x := makeFloat(test.x)
    		mant := makeFloat(test.mant)
    		m := new(Float)
    		e := x.MantExp(m)
    		if !alike(m, mant) || e != test.exp {
    			t.Errorf("%s.MantExp() = %s, %d; want %s, %d", test.x, m.Text('g', 10), e, test.mant, test.exp)
    		}
    	}
    }
    
    func TestFloatMantExpAliasing(t *testing.T) {
    	x := makeFloat("0.5p10")
    	if e := x.MantExp(x); e != 10 {
    		t.Fatalf("Float.MantExp aliasing error: got %d; want 10", e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Convert exp(x)/sum(exp(x)) into softmax.
    def OptimizeToSoftmax : Pat<
      (TFL_DivOp (TFL_ExpOp:$exp $input),
                 (TFL_SumOp:$sum $sum_input, (Arith_ConstantOp I32ElementsAttr: $axes),
                                 ConstBoolAttrTrue), TFL_AF_None),
      (TFL_SoftmaxOp $input, ConstF32Attr<"1.0">),
      [(IsSame $exp, $sum_input),
       (AxesIsLastDimension $axes, $sum_input),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	if len(svcs) != len(expected) {
    		t.Fatalf("got more services than expected: %v vs %v", len(svcs), len(expected))
    	}
    	expe := [][]*model.IstioEndpoint{}
    	for _, o := range expected {
    		res := []*model.IstioEndpoint{}
    		for _, i := range o {
    			res = append(res, i.Endpoint)
    		}
    		expe = append(expe, res)
    	}
    	// The system is eventually consistent, so add some retries
    	retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	b := math.Float64bits(c)
    	man := b & (1<<52 - 1)
    	if man != 0 {
    		return false // not a power of 2, denormal, or NaN
    	}
    	exp := b >> 52 & (1<<11 - 1)
    	// exponent bias is 0x3ff.  So taking the reciprocal of a number
    	// changes the exponent to 0x7fe-exp.
    	switch exp {
    	case 0:
    		return false // ±0
    	case 0x7ff:
    		return false // ±inf
    	case 0x7fe:
    		return false // exponent is not representable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top