Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 458 for eidx (0.19 sec)

  1. src/main/java/jcifs/smb/NetServerEnumIterator.java

            int n = this.response.getStatus() == WinError.ERROR_MORE_DATA ? this.response.getNumEntries() - 1 : this.response.getNumEntries();
            while ( this.ridx < n ) {
                FileEntry itm = this.response.getResults()[ this.ridx ];
                this.ridx++;
                if ( filter(itm) ) {
                    return itm;
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_PCREL)
    		ldr.SetRelocVariant(s, rIdx, sym.RV_POWER_LO)
    		su.SetRelocAdd(rIdx, r.Add()+2) // Compensate for relocation size of 2
    		return true
    
    	case objabi.ElfRelocOffset + objabi.RelocType(elf.R_PPC64_REL16_HI):
    		su := ldr.MakeSymbolUpdater(s)
    		su.SetRelocType(rIdx, objabi.R_PCREL)
    		ldr.SetRelocVariant(s, rIdx, sym.RV_POWER_HI|sym.RV_CHECK_OVERFLOW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/internal/pkgbits/decoder.go

    	r := Decoder{
    		common: pr,
    		k:      k,
    		Idx:    idx,
    	}
    
    	r.Data.Reset(pr.DataIdx(k, idx))
    	r.Sync(SyncRelocs)
    	r.Relocs = make([]RelocEnt, r.Len())
    	for i := range r.Relocs {
    		r.Sync(SyncReloc)
    		r.Relocs[i] = RelocEnt{RelocKind(r.Len()), Index(r.Len())}
    	}
    
    	return r
    }
    
    func (pr *PkgDecoder) TempDecoderRaw(k RelocKind, idx Index) Decoder {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  4. cmd/admin-handlers-pools.go

    				return
    			}
    		}
    		var pool *erasureSets
    		for pidx := range z.serverPools {
    			if pidx == idx {
    				pool = z.serverPools[idx]
    				break
    			}
    		}
    		if pool == nil {
    			// We didn't find any matching pools, invalid input
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
    			return
    		}
    
    		poolIndices = append(poolIndices, idx)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/internal/cov/readcovdata.go

    			return nil
    		}
    	}
    	r.vis.BeginPackage(pd, pkgIdx)
    	nf := pd.NumFuncs()
    	var fd coverage.FuncDesc
    	for fidx := uint32(0); fidx < nf; fidx++ {
    		if err := pd.ReadFunc(fidx, &fd); err != nil {
    			return r.fatal("reading meta-data file %s: %v", mfname, err)
    		}
    		r.vis.VisitFunc(pkgIdx, fidx, &fd)
    	}
    	r.vis.EndPackage(pd, pkgIdx)
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    	var wg sync.WaitGroup
    	for idx, pool := range z.serverPools {
    		if z.IsSuspended(idx) {
    			continue
    		}
    		wg.Add(1)
    		go func(idx int, pool *erasureSets) {
    			defer wg.Done()
    			result, err := pool.HealObject(ctx, bucket, object, versionID, opts)
    			result.Object = decodeDirObject(result.Object)
    			errs[idx] = err
    			results[idx] = result
    		}(idx, pool)
    	}
    	wg.Wait()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. operator/pkg/util/reflect_test.go

    			okValues: []any{testInt, &testInt},
    		},
    	}
    
    	for _, tt := range tests {
    		for vidx, v := range allValues {
    			if got, want := tt.function(reflect.ValueOf(v)), isInListOfInterface(tt.okValues, v); got != want {
    				t.Errorf("%s with %s (#%d): got: %t, want: %t", tt.desc, reflect.TypeOf(v), vidx, got, want)
    			}
    		}
    	}
    }
    
    func TestValuesAreSameType(t *testing.T) {
    	type EnumType int64
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. internal/http/listener.go

    	// Closure to handle TCPListener until done channel is closed.
    	handleListener := func(idx int, listener net.Listener) {
    		for {
    			conn, err := listener.Accept()
    			send(acceptResult{conn, err, idx})
    		}
    	}
    
    	// Start separate goroutine for each TCP listener to handle connection.
    	for idx, tcpListener := range listener.listeners {
    		go handleListener(idx, tcpListener)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/covdata/metamerge.go

    	}
    	// For each package, for each function, construct counter
    	// array and then call "f" on it.
    	for pidx, p := range mm.pkgs {
    		fids := make([]int, 0, len(p.ctab))
    		for fid := range p.ctab {
    			fids = append(fids, int(fid))
    		}
    		sort.Ints(fids)
    		if *verbflag >= 4 {
    			fmt.Printf("fids for pk=%d: %+v\n", pidx, fids)
    		}
    		for _, fid := range fids {
    			fp := p.ctab[uint32(fid)]
    			if *verbflag >= 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/node_matchers.h

    template <typename... Ts>
    impl::NodeMatcherProperties Inputs(Ts... inputs) {
      return impl::Inputs({inputs...});
    }
    
    // Matches the `idx`'th output of a node that matches `node`.
    ::testing::Matcher<impl::OutEdge> Out(int oidx,
                                          ::testing::Matcher<const Node*> node);
    
    // Matches the first output of a node that matches `node`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top