Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for pusha (0.54 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	MOVNTI:    true,
    	MUL:       true,
    	NEG:       true,
    	NOP:       true,
    	NOT:       true,
    	OR:        true,
    	OUT:       true,
    	POP:       true,
    	POPA:      true,
    	POPCNT:    true,
    	PUSH:      true,
    	PUSHA:     true,
    	RCL:       true,
    	RCR:       true,
    	ROL:       true,
    	ROR:       true,
    	SAR:       true,
    	SBB:       true,
    	SHL:       true,
    	SHLD:      true,
    	SHR:       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. hack/dev-push-conformance.sh

    # REGISTRY and VERSION must be set.
    # Example usage:
    #   $ export REGISTRY=gcr.io/someone
    #   $ export VERSION=v1.4.0-testfix
    #   ./hack/dev-push-conformance.sh
    # That will build and push gcr.io/someone/conformance-amd64:v1.4.0-testfix
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    source "${KUBE_ROOT}/build/common.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. hack/dev-build-and-push.sh

    # This script will build a dev release and push it to an existing cluster.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Build a dev release
    if ! make -f "${KUBE_ROOT}"/Makefile quick-release
    then
            echo "Building a release failed!"
            exit 1
    fi
    
    # Now push this out to the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 22 00:39:55 UTC 2019
    - 987 bytes
    - Viewed (0)
  4. releasenotes/notes/scope-push-by-sidecar-changes.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 01 03:09:01 UTC 2021
    - 175 bytes
    - Viewed (0)
  5. src/cmd/link/testdata/linkname/push.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // "Push" linknames are ok.
    
    package main
    
    import (
    	"cmd/link/testdata/linkname/p"
    	_ "unsafe"
    )
    
    // Push f1 to p.
    //
    //go:linkname f1 cmd/link/testdata/linkname/p.f1
    func f1() { f2() }
    
    // f2 is pushed from p.
    //
    //go:linkname f2
    func f2()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 426 bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_amd64.S

     * The standard x86-64 ABI passes the three arguments m, g, fn
     * in %rdi, %rsi, %rdx.
     */
    .globl EXT(crosscall1)
    EXT(crosscall1):
    	pushq %rbx
    	pushq %rbp
    	pushq %r12
    	pushq %r13
    	pushq %r14
    	pushq %r15
    
    #if defined(_WIN64)
    	movq %r8, %rdi	/* arg of setg_gcc */
    	call *%rdx	/* setg_gcc */
    	call *%rcx	/* fn */
    #else
    	movq %rdi, %rbx
    	movq %rdx, %rdi	/* arg of setg_gcc */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tools/istio-docker.mk

    	./tools/docker
    
    docker.save: ## Build docker images and save to tar.gz
    	./tools/docker --save
    
    docker.push: ## Build all docker images and push to
    	./tools/docker --push
    
    # Legacy command aliases
    docker.all: docker
    	@:
    dockerx.save: docker.save
    	@:
    dockerx.push: docker.push
    	@:
    dockerx.pushx: docker.push
    	@:
    dockerx: docker
    	@:
    
    # Support individual images like `dockerx.pilot`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 21:56:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  8. test/typeparam/issue49516.go

    package p
    
    type Q[T any] struct {
    	s []T
    }
    
    func (q *Q[T]) Push(v ...T) {
    	q.s = append(q.s, v...)
    }
    
    func pushN(push func(*Q[int], ...int), n int) {
    	var q Q[int]
    	for i := 0; i < n; i++ {
    		push(&q, i)
    	}
    }
    
    func f() {
    	pushN((*Q[int]).Push, 100)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 423 bytes
    - Viewed (0)
  9. src/runtime/rt0_android_386.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_386_android(SB),NOSPLIT,$0
    	JMP	_rt0_386(SB)
    
    TEXT _rt0_386_android_lib(SB),NOSPLIT,$0
    	PUSHL	$_rt0_386_android_argv(SB)  // argv
    	PUSHL	$1  // argc
    	CALL	_rt0_386_lib(SB)
    	POPL	AX
    	POPL	AX
    	RET
    
    DATA _rt0_386_android_argv+0x00(SB)/4,$_rt0_386_android_argv0(SB)
    DATA _rt0_386_android_argv+0x04(SB)/4,$0  // argv terminate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 21 04:56:36 UTC 2018
    - 822 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateMixedSameBaseNamesTestApp.groovy

    extrn printf:near
    extrn exit:NEAR
    public sayFooFromAsm
    sayFooFromAsm proc
    push    offset msg
    call    printf
    mov eax,0
    push eax
    call exit
    sayFooFromAsm endp
    end
    """
            } else {
                return """
    .text
    
    LC0:
    .ascii "fooFromAsm\\12\\0"
    .globl _sayFooFromAsm
    
    _sayFooFromAsm:
            pushl   %ebp
            movl    %esp, %ebp
            subl    \$8, %esp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top