Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for pushHead (0.29 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [listing.terminal.sample-command]
    ----
    $ git add .
    $ git commit -m "Add GitHub Actions workflow"
    $ git push
    ----
    
    == View the GitHub Actions results
    
    Once this workflow file is pushed, you should immediately see the workflow execution in the GitHub Actions page for your repository (eg https://github.com/gradle/gradle/actions).
    Any subsequent push to the repository will trigger the workflow to run.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache_test.go

    		dependentConfigs: []ConfigHash{
    			ConfigKey{Kind: kind.Service, Name: "name", Namespace: "namespace"}.HashCode(),
    		},
    	}
    	entry2 := entry{
    		key:            "key", // use the same key so that the old one will be pushed to the evictQueue
    		dependentTypes: []kind.Kind{kind.Service, kind.DestinationRule},
    		dependentConfigs: []ConfigHash{
    			ConfigKey{Kind: kind.Service, Name: "name", Namespace: "namespace"}.HashCode(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K 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. src/runtime/signal_windows.go

    	// Also don't push a sigpanic frame if the faulting PC
    	// is the entry of asyncPreempt. In this case, we suspended
    	// the thread right between the fault and the exception handler
    	// starting to run, and we have pushed an asyncPreempt call.
    	// The exception is not from asyncPreempt, so not to push a
    	// sigpanic call to make it look like that. Instead, just
    	// overwrite the PC. (See issue #35773)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/size.go

    	// outside of the enclosing function.
    	if t.IsFuncArgStruct() {
    		base.Fatalf("CheckSize %v", t)
    	}
    
    	if defercalc == 0 {
    		CalcSize(t)
    		return
    	}
    
    	// if type has not yet been pushed on deferredTypeStack yet, do it now
    	if !t.Deferwidth() {
    		t.SetDeferwidth(true)
    		deferredTypeStack = append(deferredTypeStack, t)
    	}
    }
    
    func DeferCheckSize() {
    	defercalc++
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/text/template/exec.go

    		if r := recover(); r != nil && r != walkBreak {
    			panic(r)
    		}
    	}()
    	defer s.pop(s.mark())
    	val, _ := indirect(s.evalPipeline(dot, r.Pipe))
    	// mark top of stack before any variables in the body are pushed.
    	mark := s.mark()
    	oneIteration := func(index, elem reflect.Value) {
    		if len(r.Pipe.Decl) > 0 {
    			if r.Pipe.IsAssign {
    				// With two variables, index comes first.
    				// With one, we use the element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. 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)
  9. 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
    kubectl create ns istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. 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)
Back to top