Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for Ei (0.02 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/modes_test.go

    	}
    }
    
    func assertOnConcreteError[E error](fn func(*testing.T, E)) func(t *testing.T, e error) {
    	return func(t *testing.T, ei error) {
    		var ec E
    		if !errors.As(ei, &ec) {
    			t.Errorf("expected concrete error type %T, got %T: %v", ec, ei, ei)
    			return
    		}
    		fn(t, ec)
    	}
    }
    
    func assertErrorMessage(want string) func(*testing.T, error) {
    	return func(t *testing.T, got error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. docs/debugging/xl-meta/main.go

    				}
    			}
    		}
    		var ei erasureInfo
    		var idx int
    		if err := json.Unmarshal(meta, &ei); err == nil && ei.V2Obj != nil {
    			if m.objSize == 0 {
    				m.objSize = ei.V2Obj.Size
    			}
    			m.data = ei.V2Obj.EcM
    			m.parity = ei.V2Obj.EcN
    			if len(ei.V2Obj.PartNums) == 1 && !strings.ContainsRune(ei.V2Obj.MetaUsr.Etag, '-') {
    				m.wantMD5 = ei.V2Obj.MetaUsr.Etag
    			}
    			if m.shards == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/internal/trace/base.go

    type dataTable[EI ~uint64, E any] struct {
    	present []uint8
    	dense   []E
    	sparse  map[EI]E
    }
    
    // insert tries to add a mapping from id to s.
    //
    // Returns an error if a mapping for id already exists, regardless
    // of whether or not s is the same in content. This should be used
    // for validation during parsing.
    func (d *dataTable[EI, E]) insert(id EI, data E) error {
    	if d.sparse == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/cmd/internal/pgo/pprof.go

    	sort.Slice(edges, func(i, j int) bool {
    		ei, ej := edges[i], edges[j]
    		if wi, wj := weight[ei], weight[ej]; wi != wj {
    			return wi > wj // want larger weight first
    		}
    		// same weight, order by name/line number
    		if ei.CallerName != ej.CallerName {
    			return ei.CallerName < ej.CallerName
    		}
    		if ei.CalleeName != ej.CalleeName {
    			return ei.CalleeName < ej.CalleeName
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/slices/iter_test.go

    func TestAll(t *testing.T) {
    	for size := 0; size < 10; size++ {
    		var s []int
    		for i := range size {
    			s = append(s, i)
    		}
    		ei, ev := 0, 0
    		cnt := 0
    		for i, v := range All(s) {
    			if i != ei || v != ev {
    				t.Errorf("at iteration %d got %d, %d want %d, %d", cnt, i, v, ei, ev)
    			}
    			ei++
    			ev++
    			cnt++
    		}
    		if cnt != size {
    			t.Errorf("read %d values expected %d", cnt, size)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue46386.go

    package main
    
    type I interface {
    	M() interface{}
    }
    
    type S1 struct{}
    
    func (S1) M() interface{} {
    	return nil
    }
    
    type EI interface{}
    
    type S struct{}
    
    func (S) M(as interface{ I }) {}
    
    func f() interface{ EI } {
    	return &S1{}
    }
    
    func main() {
    	var i interface{ I }
    	(&S{}).M(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 12:17:50 UTC 2021
    - 461 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/phiopt.go

    				//    |  sb1
    				//    |  ...
    				//    |  pb1
    				//    |  /
    				//     b
    				// if another successor sb1 of b0(pb0) dominates pb1, do replace.
    				ei := b.Preds[0].i
    				sb1 := pb0.Succs[1-ei].b
    				if sdom.IsAncestorEq(sb1, pb1) {
    					convertPhi(pb0, v, ei)
    					break
    				}
    			} else if pb1.Kind == BlockIf && pb1 == sdom.Parent(b) {
    				// special case: pb1 is the dominator block b0.
    				//       b0(pb1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. schema/index_test.go

    func CheckIndices(t *testing.T, expected, actual map[string]schema.Index) {
    	for k, ei := range expected {
    		t.Run(k, func(t *testing.T) {
    			ai, ok := actual[k]
    			if !ok {
    				t.Errorf("expected index %q but actual missing", k)
    				return
    			}
    			tests.AssertObjEqual(t, ai, ei, "Name", "Class", "Type", "Where", "Comment", "Option")
    			if len(ei.Fields) != len(ai.Fields) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                 * domain. Add DFS roots to the list.
                 */
                try {
                    entries = doDfsRootEnum(tc, locator, locator.getAddress());
                    for ( int ei = 0; ei < entries.length; ei++ ) {
                        FileEntry e = entries[ ei ];
                        if ( !set.contains(e) && ( fnf == null || fnf.accept(parent, e.getName()) ) ) {
                            set.add(e);
                        }
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1.go

    // - distribution indexes are different
    func (ei ErasureInfo) Equal(nei ErasureInfo) bool {
    	if ei.Algorithm != nei.Algorithm {
    		return false
    	}
    	if ei.DataBlocks != nei.DataBlocks {
    		return false
    	}
    	if ei.ParityBlocks != nei.ParityBlocks {
    		return false
    	}
    	if ei.BlockSize != nei.BlockSize {
    		return false
    	}
    	if len(ei.Distribution) != len(nei.Distribution) {
    		return false
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top