Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 138 for my_all (0.15 sec)

  1. src/net/cgo_linux.go

    // and similarly for IPv6), but in practice setting it causes
    // getaddrinfo to return the wrong canonical name on Linux.
    // So definitely leave it out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 642 bytes
    - Viewed (0)
  2. hack/grab-profiles.sh

    kube::util::trap_add "kill $SSH_PID" EXIT
    kube::util::trap_add "kill $SSH_PID" SIGTERM
    
    requested_profiles=$(echo "${requested_profiles}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    profile_components=$(echo "${profile_components}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    kubelet_addresses=$(echo "${kubelet_addresses}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    echo "requested profiles: ${requested_profiles}"
    echo "flags for heap profile: ${mem_pprof_flags}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/convert.go

    	}
    	if n.Op() == ir.ORUNES2STR {
    		// slicerunetostring(*[32]byte, []rune) string
    		return mkcall("slicerunetostring", n.Type(), init, a, n.X)
    	}
    	// slicebytetostring(*[32]byte, ptr *byte, n int) string
    	n.X = cheapExpr(n.X, init)
    	ptr, len := backingArrayPtrLen(n.X)
    	return mkcall("slicebytetostring", n.Type(), init, a, ptr, len)
    }
    
    // walkBytesToStringTemp walks an OBYTES2STRTMP node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

            Mall<Outdoor>.Shop<Grocery> shop) {
          return notSubtype(shop);
        }
    
        @TestSubtype
        public Mall<Outdoor>.Shop<Electronics> innerTypeDoesNotMatch_subtypeWithWildcard(
            Mall<Outdoor>.Shop<? extends Electronics> shop) {
          return notSubtype(shop);
        }
    
        @TestSubtype
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.0.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:06 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/tls_loong64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only R30 (REGTMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVB	runtime·iscgo(SB), R30
    	BEQ	R30, nocgo
    
    	MOVV	g, runtime·tls_g(SB)
    
    nocgo:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 20:18:25 UTC 2022
    - 589 bytes
    - Viewed (0)
  7. hack/list-feature-tests.sh

    # Usage: `hack/list-feature-tests.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 887 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    // Code generated by linux/mkall.go generatePtraceRegSet("arm64"). DO NOT EDIT.
    
    package unix
    
    import "unsafe"
    
    // PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.
    func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe.Sizeof(*regsout))}
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  9. src/runtime/tls_riscv64.s

    // license that can be found in the LICENSE file.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // If !iscgo, this is a no-op.
    //
    // NOTE: mcall() assumes this clobbers only X31 (REG_TMP).
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    #ifndef GOOS_openbsd
    	MOVB	runtime·iscgo(SB), X31
    	BEQZ	X31, nocgo
    #endif
    	MOV	g, runtime·tls_g(SB)
    nocgo:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 615 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
Back to top