Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for bce (0.22 sec)

  1. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    		defer cancel()
    
    		if !cache.WaitForCacheSync(ctx.Done(), bce.informersSynced...) {
    			return fmt.Errorf("APF bootstrap ensurer timed out waiting for cache sync")
    		}
    
    		err = wait.PollImmediateUntilWithContext(
    			ctx,
    			time.Second,
    			func(context.Context) (bool, error) {
    				if err := ensure(ctx, clientset, bce.fsLister, bce.plcLister); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers-config-kv.go

    }
    
    type badConfigErr struct {
    	Err error
    }
    
    // Error - return the error message
    func (bce badConfigErr) Error() string {
    	return bce.Err.Error()
    }
    
    // Unwrap the error to its underlying error.
    func (bce badConfigErr) Unwrap() error {
    	return bce.Err
    }
    
    type setConfigResult struct {
    	Cfg                     config.Config
    	SubSys                  string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	{name: "dead auto elim", fn: elimDeadAutosGeneric},
    	{name: "sccp", fn: sccp},
    	{name: "generic deadcode", fn: deadcode, required: true}, // remove dead stores, which otherwise mess up store chain
    	{name: "check bce", fn: checkbce},
    	{name: "branchelim", fn: branchelim},
    	{name: "late fuse", fn: fuseLate},
    	{name: "dse", fn: dse},
    	{name: "memcombine", fn: memcombine},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/math/big/arith.go

    // remarkably it is even faster than hoisting the bounds check
    // out of the loop, by doing something like
    //   _, _ = x[len(z)-1], y[len(z)-1]
    // There are other ways to hoist the bounds check out of the loop,
    // but the compiler's BCE isn't powerful enough for them (yet?).
    // See the discussion in CL 164966.
    
    // ----------------------------------------------------------------------------
    // Elementary operations on words
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    		return b, true
    	} else {
    		return 0, false
    	}
    }
    
    func (p *parser) readFull(n int) ([]byte, error) {
    	if p.off >= len(p.data) || p.off < 0 || p.off+n > len(p.data) {
    		// p.off < 0 is impossible but makes BCE happy.
    		//
    		// We do fail outright if there's not enough data, we don't care about
    		// partial results.
    		return nil, io.ErrUnexpectedEOF
    	}
    	buf := p.data[p.off : p.off+n]
    	p.off += n
    	return buf, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. src/regexp/testdata/re2-exhaustive.txt.bz2

    lnl͛8`���l�1����0���lm��3cM��dٛ6C�lm雜��ڵ2��mN&-�"��` K^/�������+�z�H~m[Z����D$ �$4Hj$5� H� H�"�H����m���Lę��{�ͫ2G!]�2�l�I�rM#�I$�#��}���F�>������T�-BV�I$�TB�O{4�C���h�j�}��w�Yin�*�P�v�$�E$mĦ(�rIM%�q ���bće�XQ��ŨJ�r�$�j�Q �f�s���b��L���Y9D���� (��1p `�a������+R�h�a�� YY�a�& ��3�P���]��Tb� � -� �\{��T�f�#�����#�1��!?LiUJa1���U =��Hi�ѓM��$jT�b2h��G�i���@��D���@4|�k�m(ֶQY4�P�Be�(H�"��+kZ��d�(H�"����"��6�(H�"�����EETQS...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 418.2K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    _Fig._ 3.] represent Lines drawn upon the Paper parallel to the edges of the Knives, and between which all the Light would fall, if it passed between the edges of the Knives without inflexion; DE a Right Line drawn through C making the Angles ACD, BCE, equal to one another, and terminating all the Light which falls upon the Paper from the point where the edges of the Knives meet; _eis_, _fkt_, and _glv_, three hyperbolical Lines representing the Terminus of the Shadow of one of the Knives, the dark...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. src/testdata/Isaac.Newton-Opticks.txt

    to the edges of the Knives, and between which all the Light would fall,
    if it passed between the edges of the Knives without inflexion; DE a
    Right Line drawn through C making the Angles ACD, BCE, equal to one
    another, and terminating all the Light which falls upon the Paper from
    the point where the edges of the Knives meet; _eis_, _fkt_, and _glv_,
    three hyperbolical Lines representing the Terminus of the Shadow of one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top