Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bce (0.02 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/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)
Back to top