Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 654 for envs (0.04 sec)

  1. test/abi/more_intstar_input.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
    
    var sink int
    
    //go:registerparams
    //go:noinline
    func F(a, b, c, d, e, f, g, h, i, j, k, l, m *int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 976 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/magic.go

    // trailing zeroes as x.  So the two tests are,
    //
    // x*m mod 2^n <= ⎣(2^n - 1)/d0⎦
    // and x*m ends in k zero bits
    //
    // These can be combined into a single comparison by the following
    // (theorem ZRU in Hacker's Delight) for unsigned integers.
    //
    // x <= a and x ends in k zero bits if and only if RotRight(x ,k) <= ⎣a/(2^k)⎦
    // Where RotRight(x ,k) is right rotation of x by k bits.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/runtime/rt0_android_arm64.s

    	MOVD	$_rt0_arm64_linux_lib(SB), R4
    	B	(R4)
    
    DATA _rt0_arm64_android_argv+0x00(SB)/8,$_rt0_arm64_android_argv0(SB)
    DATA _rt0_arm64_android_argv+0x08(SB)/8,$0 // end argv
    DATA _rt0_arm64_android_argv+0x10(SB)/8,$0 // end envv
    DATA _rt0_arm64_android_argv+0x18(SB)/8,$0 // end auxv
    GLOBL _rt0_arm64_android_argv(SB),NOPTR,$0x20
    
    DATA _rt0_arm64_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 21:41:31 UTC 2018
    - 941 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/net/port_range.go

    func (pr PortRange) String() string {
    	if pr.Size == 0 {
    		return ""
    	}
    	return fmt.Sprintf("%d-%d", pr.Base, pr.Base+pr.Size-1)
    }
    
    // Set parses a string of the form "value", "min-max", or "min+offset", inclusive at both ends, and
    // sets the PortRange from it.  This is part of the flag.Value and pflag.Value
    // interfaces.
    func (pr *PortRange) Set(value string) error {
    	const (
    		SinglePortNotation = 1 << iota
    		HyphenNotation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 10 01:27:56 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  5. src/runtime/rt0_linux_ppc64.s

    DEFINE_PPC64X_FUNCDESC(_rt0_ppc64_linux, _main<>)
    DEFINE_PPC64X_FUNCDESC(main, _main<>)
    
    TEXT _main<>(SB),NOSPLIT,$-8
    	// 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.
    	//
    	// TODO(austin): Support ABI v1 dynamic linking entry point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  6. test/abi/spills4.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 i5f5 struct {
    	a, b          int16
    	c, d, e       int32
    	r, s, t, u, v float32
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 753 bytes
    - Viewed (0)
  7. test/abi/struct_3_string_input.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"
    )
    
    var sink *string
    
    type toobig struct {
    	a, b, c string
    }
    
    //go:registerparams
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 727 bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

            return file.getPath().endsWith(extension);
        }
    
        /**
         * Checks if the given file path ends with the given extension (ignoring case).
         * @param fileName the file name
         * @param extension candidate extension including leading dot
         * @return true if the file name ends with extension, ignoring case
         */
        public static boolean hasExtensionIgnoresCase(String fileName, String extension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    		return
    	}
    	if i <= uint64(staticTable.len()) {
    		return staticTable.ents[i-1], true
    	}
    	if i > uint64(d.maxTableIndex()) {
    		return
    	}
    	// In the dynamic table, newer entries have lower indices.
    	// However, dt.ents[0] is the oldest entry. Hence, dt.ents is
    	// the reversed dynamic table.
    	dt := d.dynTab.table
    	return dt.ents[dt.len()-(int(i)-staticTable.len())], true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. src/go/printer/gobuild.go

    	// (We'll add another blank line after our comment block.)
    	// When we start dropping // +build comments, we can skip over /* */ comments too.
    	// Note that we are processing tabwriter input, so every comment
    	// begins and ends with a tabwriter.Escape byte.
    	// And some newlines have turned into \f bytes.
    	insert := 0
    	for pos := 0; ; {
    		// Skip leading space at beginning of line.
    		blank := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top