Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for popf (0.05 sec)

  1. src/slices/zsortanyfunc.go

    	first := a
    	lo := 0
    	hi := b - a
    
    	// Build heap with greatest element at top.
    	for i := (hi - 1) / 2; i >= 0; i-- {
    		siftDownCmpFunc(data, i, hi, first, cmp)
    	}
    
    	// Pop elements, largest first, into end of data.
    	for i := hi - 1; i >= 0; i-- {
    		data[first], data[first+i] = data[first+i], data[first]
    		siftDownCmpFunc(data, lo, i, first, cmp)
    	}
    }
    
    // pdqsortCmpFunc sorts data[a:b].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. src/net/lookup.go

    	},
    	"tcp": {
    		"ftp":         21,
    		"ftps":        990,
    		"gopher":      70, // ʕ◔ϖ◔ʔ
    		"http":        80,
    		"https":       443,
    		"imap2":       143,
    		"imap3":       220,
    		"imaps":       993,
    		"pop3":        110,
    		"pop3s":       995,
    		"smtp":        25,
    		"submissions": 465,
    		"ssh":         22,
    		"telnet":      23,
    	},
    }
    
    // dnsWaitGroup can be used by tests to wait for all DNS goroutines to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  3. src/debug/gosym/symtab.go

    		val := int(s.Value)
    		switch {
    		case val > aline:
    			break pathloop
    
    		case val == 1:
    			// Start a new stack
    			tos = &stackEnt{s.Name, val, 0, noPath}
    
    		case s.Name == "":
    			// Pop
    			if tos == noPath {
    				return "<malformed symbol table>", 0
    			}
    			tos.prev.offset += val - tos.start
    			tos = tos.prev
    
    		default:
    			// Push
    			tos = &stackEnt{s.Name, val, 0, tos}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/webcomponents.min.js

    ar n=A(t),r=e[0],o=A(r),i=l(n,o),a=0;a<e.length;a++){var s=e[a];if(A(s)===i)return s}return e[e.length-1]}function c(e){for(var t=[];e;e=e.parent)t.push(e);return t}function l(e,t){for(var n=c(e),r=c(t),o=null;n.length>0&&r.length>0;){var i=n.pop(),a=r.pop();if(i!==a)break;o=i}return o}function u(e,t,n){t instanceof G.Window&&(t=t.document);var o,i=A(t),a=A(n),s=r(n,e),o=l(i,a);o||(o=a.root);for(var c=o;c;c=c.parent)for(var u=0;u<s.length;u++){var d=s[u];if(A(d)===c)return d}return null}function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  5. src/text/template/exec.go

    	s.vars = append(s.vars, variable{name, value})
    }
    
    // mark returns the length of the variable stack.
    func (s *state) mark() int {
    	return len(s.vars)
    }
    
    // pop pops the variable stack up to the mark.
    func (s *state) pop(mark int) {
    	s.vars = s.vars[0:mark]
    }
    
    // setVar overwrites the last declared variable with the given name.
    // Used by variable assignments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def res_slice(self, ns, types_ns, node_or_slice, value, slice_):
        if not value:
          return value
    
        if isinstance(value, set):
          type_tuple = value.pop()
          if isinstance(type_tuple, tuple):
            value = {type_tuple[node_or_slice]}
          else:
            value = {type_tuple}
    
        assert len(value) == 1
        value, = tuple(value)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. src/runtime/cgocall.go

    //
    // _cgoexp_GoF, which was generated by cmd/cgo, unpacks the arguments
    // from frame, calls p.GoF, writes the results back to frame, and
    // returns. Now we start unwinding this whole process.
    //
    // runtime.cgocallbackg pops but does not execute the deferred
    // function to unwind m.g0.sched.sp, calls runtime.entersyscall, and
    // returns to runtime.cgocallback.
    //
    // After it regains control, runtime.cgocallback switches back to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/tape.h

        // executions not forwarded to backward_tape should be ignored.
        bool accumulating;
      };
      // A deque-backed stack, whose element references are not invalidated by
      // pushes and pops at the back.
      std::stack<AccumulatorCallState> call_state_;
    };
    
    // Template instantiations here
    
    inline bool IsDtypeTrainable(DataType dtype) {
      switch (dtype) {
        case DT_HALF:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	Push(wr http2FrameWriteRequest)
    
    	// Pop dequeues the next frame to write. Returns false if no frames can
    	// be written. Frames with a given wr.StreamID() are Pop'd in the same
    	// order they are Push'd, except RST_STREAM frames. No frames should be
    	// discarded except by CloseStream.
    	Pop() (wr http2FrameWriteRequest, ok bool)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    			Func:      f,
    			Function:  funcNameForPrint(sf.name()),
    			Entry:     entry,
    			startLine: int(sf.startLine),
    			funcInfo:  funcInfo,
    			// Note: File,Line set below
    		})
    	}
    
    	// Pop one frame from the frame list. Keep the rest.
    	// Avoid allocation in the common case, which is 1 or 2 frames.
    	switch len(ci.frames) {
    	case 0: // In the rare case when there are no frames at all, we return Frame{}.
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top