Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for pushfw (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

        // Match input permutation that converts: NHWC -> NCHW.
        return IsTransposeOpWithPermuation(lhs.getDefiningOp(),
                                           kNhwcToNchwPermutation);
      }
    
      // Pushes the transpose op at the input to the result.
      void rewrite(mlir::stablehlo::ReduceWindowOp op,
                   PatternRewriter& rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_386.s

    TEXT runtime·thr_start(SB),NOSPLIT,$0
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	MOVL	4(SP), AX // m
    	MOVL	m_g0(AX), BX
    	LEAL	m_tls(AX), BP
    	MOVL	m_id(AX), DI
    	ADDL	$7, DI
    	PUSHAL
    	PUSHL	$32
    	PUSHL	BP
    	PUSHL	DI
    	CALL	runtime·setldt(SB)
    	POPL	AX
    	POPL	AX
    	POPL	AX
    	POPAL
    	get_tls(CX)
    	MOVL	BX, g(CX)
    
    	MOVL	AX, g_m(BX)
    	CALL	runtime·stackcheck(SB)		// smashes AX
    	CALL	runtime·mstart(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/stackcheck.go

    		morestack: ctxt.loader.Lookup("runtime.morestack", 0),
    		height:    make(map[loader.Sym]int16, len(ctxt.Textp)),
    	}
    	// Compute stack effect of a CALL operation. 0 on LR machines.
    	// 1 register pushed on non-LR machines.
    	if !ctxt.Arch.HasLR {
    		sc.callSize = ctxt.Arch.RegSize
    	}
    
    	if graph {
    		// We're going to record the call graph.
    		sc.graph = make(map[loader.Sym][]stackCheckEdge)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    			return true
    		}
    	}
    
    	return false
    }
    
    // IgnoreReceives reads from a WebSocket until it is closed, then returns. If timeout is set, the
    // read and write deadlines are pushed every time a new message is received.
    func IgnoreReceives(ws *websocket.Conn, timeout time.Duration) {
    	defer runtime.HandleCrash()
    	var data []byte
    	for {
    		resetTimeout(ws, timeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // A helper class for creating scoped traces in user programs.
    class GTEST_API_ ScopedTrace {
     public:
      // The c'tor pushes the given source file location and message onto
      // a trace stack maintained by Google Test.
      ScopedTrace(const char* file, int line, const Message& message);
    
      // The d'tor pops the info pushed by the c'tor.
      //
      // Note that the d'tor is not virtual in order to be efficient.
      // Don't inherit from ScopedTrace!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/network.go

    	return n.resolveAndCache(name)
    }
    
    func (n *networkGatewayNameCache) resolveAndCache(name string) []string {
    	entry, ok := n.cache[name]
    	if ok {
    		entry.timer.Stop()
    	}
    	delete(n.cache, name)
    	addrs, ttl, err := n.resolve(name)
    	// avoid excessive pushes due to small TTL
    	if ttl < MinGatewayTTL {
    		ttl = MinGatewayTTL
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       */
      double stableIntervalMicros;
    
      /**
       * The time when the next request (no matter its size) will be granted. After granting a request,
       * this is pushed further in the future. Large requests push this further than small requests.
       */
      private long nextFreeTicketMicros = 0L; // could be either in the past or future
    
      private SmoothRateLimiter(SleepingStopwatch stopwatch) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  8. operator/README.md

    ```bash
    HUB=docker.io/<your-account> TAG=latest make docker.operator
    ```
    
    This builds the controller binary and docker file, and pushes the image to the specified hub with the `latest` tag.
    Once the images are pushed, configure kubectl to point to your cluster and install the controller.
    
    Install the controller manifest:
    
    ```bash
    istioctl operator init --hub docker.io/<your-account> --tag latest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows.go

    func (p *abiDesc) assignArg(t *_type) {
    	if t.Size_ > goarch.PtrSize {
    		// We don't support this right now. In
    		// stdcall/cdecl, 64-bit ints and doubles are
    		// passed as two words (little endian); and
    		// structs are pushed on the stack. In
    		// fastcall, arguments larger than the word
    		// size are passed by reference. On arm,
    		// 8-byte aligned arguments round up to the
    		// next even register and can be split across
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/wasm/ssa.go

       is the block ID and the return value is the exit immediately flag.
    
       Callsite:
        - write arguments to the Go stack (starting at SP+0)
        - push return address to Go stack (8 bytes)
        - write local SP to global SP
        - push 0 (type i32) to Wasm stack
        - issue Call
        - restore local SP from global SP
        - pop int32 from top of Wasm stack. If nonzero, exit function immediately.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top