Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,770 for happens (0.12 sec)

  1. src/cmd/cgo/internal/test/issue9400/asm_386.s

    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT,$0-0
    	MOVL	$·Baton(SB), BX
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADDL	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, (BX)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	(BX), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 575 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue9400/asm_s390x.s

    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024 * 8), R15
    
    	// Ask signaller to setgid
    	MOVD	$·Baton(SB), R5
    	MOVW	$1, 0(R5)
    
    	// Wait for setgid completion
    loop:
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 580 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_benchmark_chatty_success.txt

    # Run chatty tests. Assert on CONT lines.
    go test chatty_test.go -v -bench . chatty_bench
    
    # Sanity check that output happens. We don't provide -count because the amount
    # of output is variable.
    stdout 'this is sub-0'
    stdout 'this is sub-1'
    stdout 'this is sub-2'
    
    # Benchmarks should not print CONT.
    ! stdout CONT
    
    -- chatty_test.go --
    package chatty_bench
    
    import (
    	"testing"
    	"fmt"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 629 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9400/asm_amd64x.s

    // license that can be found in the LICENSE file.
    
    //go:build (amd64 || amd64p32) && gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADDQ	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, ·Baton(SB)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 589 bytes
    - Viewed (0)
  5. src/internal/bytealg/index_s390x.go

    import "internal/cpu"
    
    const MaxBruteForce = 64
    
    func init() {
    	// Note: we're kind of lucky that this flag is available at this point.
    	// The runtime sets HasVX when processing auxv records, and that happens
    	// to happen *before* running the init functions of packages that
    	// the runtime depends on.
    	// TODO: it would really be nicer for internal/cpu to figure out this
    	// flag by itself. Then we wouldn't need to depend on quirks of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 1011 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue9400/asm_loong64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADDV	$(1024*8), R3
    
    	// Ask signaller to setgid
    	MOVW	$1, R12
    	DBAR
    	MOVW	R12, ·Baton(SB)
    	DBAR
    
    	// Wait for setgid completion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 633 bytes
    - Viewed (0)
  7. tests/integration/iop-integration-test-defaults.yaml

                    targetPort: 8080
                    name: http2
                  - port: 443
                    targetPort: 8443
                    name: https
                    # This is the port where sni routing happens
                  - port: 15443
                    targetPort: 15443
                    name: tls
                  ## Extra ports for testing
                  - port: 15012
                    targetPort: 15012
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/runtime/vdso_linux_loong64.go

    	// See cmd/compile/internal/loong64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    // not currently described in manpages as of May 2022, but will eventually
    // appear
    // when that happens, see man 7 vdso : loongarch
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_5.10", 0xae78f70}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    	{"__vdso_clock_gettime", 0xd35ec75, 0x6e43a318, &vdsoClockgettimeSym},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:58:55 UTC 2022
    - 793 bytes
    - Viewed (0)
  9. test/fixedbugs/issue40954.go

    	var i int
    	p := (*S)(unsafe.Pointer(uintptr(unsafe.Pointer(&i))))
    	v := uintptr(unsafe.Pointer(p))
    	// p is a pointer to a not-in-heap type. Like some C libraries,
    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
  10. manifests/charts/istio-operator/crds/crd-operator.yaml

          jsonPath: .status.status
          name: Status
          type: string
        - description: 'CreationTimestamp is a timestamp representing the server time
            when this object was created. It is not guaranteed to be set in happens-before
            order across separate operations. Clients may not set this value. It is represented
            in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top