Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 654 for envs (0.05 sec)

  1. test/abi/f_ret_z_not.go

    // Copyright 2021 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.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type Z struct {
    }
    
    type NZ struct {
    	x, y int
    }
    
    //go:noinline
    func f(x, y int) (Z, NZ, Z) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 616 bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/benchshort.test

    # This file ends in an early EOF to trigger the Benchmark prefix test,
    # which only happens when a benchmark prefix is seen ahead of the \n.
    # Normally that's due to the benchmark running and the \n coming later,
    # but to avoid questions of timing, we just use a file with no \n at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:53:38 UTC 2018
    - 318 bytes
    - Viewed (0)
  3. src/runtime/rt0_android_arm.s

    	B	_rt0_arm_lib(SB)
    
    DATA _rt0_arm_android_argv+0x00(SB)/4,$_rt0_arm_android_argv0(SB)
    DATA _rt0_arm_android_argv+0x04(SB)/4,$0 // end argv
    DATA _rt0_arm_android_argv+0x08(SB)/4,$0 // end envv
    DATA _rt0_arm_android_argv+0x0c(SB)/4,$0 // end auxv
    GLOBL _rt0_arm_android_argv(SB),NOPTR,$0x10
    
    DATA _rt0_arm_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:30 UTC 2018
    - 843 bytes
    - Viewed (0)
  4. test/abi/return_stuff.go

    // Copyright 2021 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.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import (
    	"fmt"
    )
    
    //go:registerparams
    //go:noinline
    func F(a, b, c *int) int {
    	return *a + *b + *c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_major.txt

    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # golang.org/issue/34383: if a module path ends in a major-version suffix,
    # ensure that 'direct' mode can resolve the package to a module.
    
    go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
    
    go list -m vcs-test.golang.org/git/v3pkg.git/v3
    stdout '^vcs-test.golang.org/git/v3pkg.git/v3 v3.0.0$'
    
    go get vcs-test.golang.org/git/empty-v2-without-v1.git/v2@v2.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 616 bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/bgppeers-crd.yaml

                      peering between the local node and selected remote nodes, we configure
                      an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified,
                      and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified.  The
                      remote AS number comes from the remote node’s NodeBGPSpec.ASNumber,
                      or the global default if that is not set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_dotgo.go_v1.0.0.txt

    This module's path ends with ".go".
    Based on github.com/nats-io/nats.go.
    Used in regression tests for golang.org/issue/32483.
    
    -- .mod --
    module example.com/dotgo.go
    
    go 1.13
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/dotgo.go
    
    go 1.13
    -- dotgo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 11 20:19:25 UTC 2019
    - 287 bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/heading.go

    import (
    	"bytes"
    	"fmt"
    	"strings"
    )
    
    type Heading struct {
    	Position
    	Level int
    	Text  *Text
    	// The HTML id attribute. The parser populates this field if
    	// [Parser.HeadingIDs] is true and the heading ends with text like "{#id}".
    	ID string
    }
    
    func (b *Heading) PrintHTML(buf *bytes.Buffer) {
    	fmt.Fprintf(buf, "<h%d", b.Level)
    	if b.ID != "" {
    		fmt.Fprintf(buf, ` id="%s"`, htmlQuoteEscaper.Replace(b.ID))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/rt0_linux_mips64x.s

    TEXT _rt0_mips64le_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    #ifdef GOARCH_mips64
    	MOVW	4(R29), R4 // argc, big-endian ABI places int32 at offset 4
    #else
    	MOVW	0(R29), R4 // argc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1014 bytes
    - Viewed (0)
  10. test/fixedbugs/bug320.go

    		// 6g had a bug that caused select to pass &t to
    		// selectrecv before allocating the memory for t,
    		// which caused non-deterministic crashes.
    		// This test looks for the bug by checking that the
    		// value received actually ends up in t.
    		// If the allocation happens after storing through
    		// whatever garbage &t holds, the later reference
    		// to t in the case body will use the new pointer and
    		// not see the received value.
    		v += 0x1020304
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 963 bytes
    - Viewed (0)
Back to top