Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for pushHead (0.28 sec)

  1. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * per second has a stable interval of 200ms.
       */
      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)
  2. src/cmd/compile/internal/wasm/ssa.go

       before any call and restored from the global variable after any call.
    
       Calling convention:
    
       All Go arguments and return values are passed on the Go stack, not
       the wasm stack. In addition, return addresses are pushed on the
       Go stack at every call point. Return addresses are not used during
       normal execution, they are used only when resuming goroutines.
       (So they are not really a "return address", they are a "resume address".)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	})
    
    	t.Run("Service selects WorkloadEntry: wle occur earlier", func(t *testing.T) {
    		store, kube, fx := setupTest(t)
    		makeIstioObject(t, store, workloadEntry)
    		// 	Other than proxy update, no event pushed when workload entry created as no service entry
    		fx.WaitOrFail(t, "proxy")
    		fx.AssertEmpty(t, 40*time.Millisecond)
    
    		makeService(t, kube, service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	LODSW:     "lods",
    	MOVSD:     "movsl",
    	MOVSD_XMM: "movsd",
    	OUTSD:     "outsl",
    	POPA:      "popaw",
    	POPAD:     "popa",
    	POPF:      "popfw",
    	POPFD:     "popf",
    	PUSHA:     "pushaw",
    	PUSHAD:    "pusha",
    	PUSHF:     "pushfw",
    	PUSHFD:    "pushf",
    	SCASB:     "scas",
    	SCASD:     "scas",
    	SCASQ:     "scas",
    	SCASW:     "scas",
    	STOSB:     "stos",
    	STOSD:     "stos",
    	STOSQ:     "stos",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

          protocol: ByteString,
          host: String,
          port: Int,
          maxAge: Long,
        ) {
          // TODO: register alternate service.
        }
      }
    
      /** Even, positive numbered streams are pushed streams in HTTP/2. */
      internal fun pushedStream(streamId: Int): Boolean = streamId != 0 && streamId and 1 == 0
    
      internal fun pushRequestLater(
        streamId: Int,
        requestHeaders: List<Header>,
      ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/inline.go

    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    	// Leaf inlines are converted immediately.
    	// Non-leaf inlines have potential starts pushed on a stack while we await completion.
    	// Links take priority over other emphasis, so the emphasis must be delayed.
    	p.s = s
    	p.list = nil
    	p.emitted = 0
    	var opens []int // indexes of open ![ and [ Plains in p.list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/runtime/stack_test.go

    		GC()
    	}()
    	// Call a leaf function. We must set up the exact call stack:
    	//
    	//  deferring function -> leaf function -> sigpanic
    	//
    	// On LR machines, the leaf function will have the same SP as
    	// the SP pushed for the defer frame.
    	testDeferLeafSigpanic1()
    }
    
    // TestPanicUseStack checks that a chain of Panic structs on the stack are
    // updated correctly if the stack grows during the deferred execution that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    	}
    
    	return nil
    }
    
    // requiresResourceNamesModification checks if a generator needs mutable access to w.ResourceNames.
    // This is used when resources are spontaneously pushed during Delta XDS
    func requiresResourceNamesModification(url string) bool {
    	return url == v3.AddressType || url == v3.WorkloadType
    }
    
    // neverRemoveDelta checks if a type should never remove resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. src/runtime/asm_mipsx.s

    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVW	m_curg(R3), g
    	JAL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/runtime/asm_mips64x.s

    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVV	m_curg(R3), g
    	JAL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top