Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for eidx (3.98 sec)

  1. test/abi/bad_select_crash.go

    type UtilsType int
    
    //go:noinline
    func NoteFailure(cm int, pidx int, fidx int, pkg string, pref string, parmNo int, isret bool, _ uint64) {
    	if isret {
    		if ParamFailCount != 0 {
    			return
    		}
    		ReturnFailCount++
    	} else {
    		ParamFailCount++
    	}
    	fmt.Fprintf(os.Stderr, "Error: fail %s |%d|%d|%d| =%s.Test%d= %s %d\n", Mode, cm, pidx, fidx, pkg, fidx, pref, parmNo)
    
    	if ParamFailCount+FailCount+ReturnFailCount > 9999 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 16 13:38:02 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. src/internal/coverage/test/counter_test.go

    	}
    	if len(allfuncs) != numSegments {
    		t.Fatalf("expected %d got %d", numSegments, len(allfuncs))
    	}
    
    	for sidx := 0; sidx < int(ns); sidx++ {
    		if off, err := inf.Seek(0, io.SeekCurrent); err != nil {
    			t.Fatalf("Seek failed: %v", err)
    		} else {
    			t.Logf("sidx=%d off=%d\n", sidx, off)
    		}
    
    		if sidx != 0 {
    			if ok, err := cdr.BeginNextSegment(); err != nil {
    				t.Fatalf("BeginNextSegment failed: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/runtime/netpoll_wasip1.go

    	subs = subs[:j]
    }
    
    func swapsub(pd *pollDesc, from, to int) {
    	if from == to {
    		return
    	}
    	ridx := int(pd.user >> 16)
    	widx := int(pd.user & 0xFFFF)
    	if ridx == from {
    		ridx = to
    	} else if widx == from {
    		widx = to
    	}
    	pd.user = uint32(ridx)<<16 | uint32(widx)
    	if to != disarmed {
    		subs[to], subs[from] = subs[from], subs[to]
    	}
    }
    
    func netpollclose(fd uintptr) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

            }
        }
    
    
        protected final FileEntry advance ( boolean last ) throws CIFSException {
            FileEntry[] results = getResults();
            while ( this.ridx < results.length ) {
                FileEntry itm = results[ this.ridx ];
                this.ridx++;
                if ( filter(itm) ) {
                    return itm;
                }
            }
    
            if ( !last && !isDone() ) {
                if ( !fetchMore() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/jit/deadness_analysis.h

        void* pred_;
    
        friend class DeadnessAnalysis;
      };
    
      virtual absl::StatusOr<DeadnessPredicate> GetPredicateFor(Node* n,
                                                                int oidx) const = 0;
    
      // Prints out the internal state of this instance.  For debugging purposes
      // only.
      virtual void Print() const = 0;
      virtual ~DeadnessAnalysis();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64splitload.rules

    (CMP(Q|L|W|B)loadidx1 {sym} [off] ptr idx x mem) => (CMP(Q|L|W|B) (MOV(Q|L|W|B)loadidx1 {sym} [off] ptr idx mem) x)
    (CMPQloadidx8 {sym} [off] ptr idx x mem) => (CMPQ (MOVQloadidx8 {sym} [off] ptr idx mem) x)
    (CMPLloadidx4 {sym} [off] ptr idx x mem) => (CMPL (MOVLloadidx4 {sym} [off] ptr idx mem) x)
    (CMPWloadidx2 {sym} [off] ptr idx x mem) => (CMPW (MOVWloadidx2 {sym} [off] ptr idx mem) x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top