Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 214 for LD (0.02 sec)

  1. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml.injected

          value: REDIRECT
        - name: ISTIO_META_WORKLOAD_NAME
          value: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
        - name: ISTIO_META_OWNER
          value: kubernetes://apis/foo/v1/namespaces/default/bars/helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
        - name: ISTIO_META_MESH_ID
          value: cluster.local
        - name: TRUST_DOMAIN
          value: cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/math/cosh_s390x.s

    	WFMADB  V4, V6, V1, V3
    	RISBGZ	$57, $60, $3, R1, R4
    	WFMSDB  V4, V6, V1, V6
    	WORD    $0x68145000     //ld %f1,0(%r4,%r5)
    	WFMSDB  V4, V1, V0, V2
    	WORD    $0xA7487FBE     //lhi %r4,32702
    	FMADD   F3, F2, F1
    	SUBW    R1, R4
    	RISBGZ	$57, $60, $3, R4, R12
    	WORD    $0x682C5000     //ld %f2,0(%r12,%r5)
    	FMSUB   F2, F4, F0
    	RISBGN	$0, $15, $48, R1, R2
    	WFMADB  V0, V6, V2, V6
    	RISBGN	$0, $15, $48, R4, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/testdata/issue25459/main/main.go

    package main
    
    import "cmd/link/internal/ld/testdata/issue25459/a"
    
    var Glob int
    
    func main() {
    	a.Another()
    	Glob += a.ConstIf() + a.CallConstIf()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:11 UTC 2019
    - 149 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/outbuf_nofallocate.go

    // Copyright 2020 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.
    
    //go:build !darwin && !(freebsd && go1.21) && !linux
    
    package ld
    
    func (out *OutBuf) fallocate(size uint64) error {
    	return errNoFallocate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 19:14:57 UTC 2023
    - 301 bytes
    - Viewed (0)
  5. apache-maven/src/assembly/shared/mvnvalidate

    ## resolve links - $0 may be a link to Maven's home
    PRG="$0"
    
    # need this for relative symlinks
    while [ -h "$PRG" ] ; do
      ls=`ls -ld "$PRG"`
      link=`expr "$ls" : '.*-> \(.*\)$'`
      if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    saveddir=`pwd`
    
    MAVEN_HOME=`dirname "$PRG"`/..
    
    # make it fully qualified
    MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 418 bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_android.c

    	dlclose(handle);
    	if (get_ver != NULL) {
    		off = (void *)(TLS_SLOT_APP*sizeof(void *));
    		// tlsg is initialized to Q's free TLS slot. Verify it while we're here.
    		if (*tlsg != off) {
    			fatalf("tlsg offset wrong, got %ld want %ld\n", *tlsg, off);
    		}
    		return;
    	}
    
    	err = pthread_key_create(&k, nil);
    	if(err != 0) {
    		fatalf("pthread_key_create failed: %d", err);
    	}
    	pthread_setspecific(k, (void*)magic1);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    	bl	toc_func@notoc
    
    	// Call libc random. A notoc plt stub should be inserted.
    	bl	random@notoc
    
    	// Return 0 to indicate the test ran.
    	li	3,0
    
    	// Restore R2
    	ld	2,24(1)
    
    	// Restore LR and pop stack
    	addi	1,1,32
    	ld 	0,16(1)
    	mtlr	0
    	blr
    
    .else
    
    // A stub for older binutils
    	.globl	notoc_func
    	.type	notoc_func, @function
    notoc_func:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/outbuf_notdarwin.go

    // Copyright 2020 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.
    
    //go:build !darwin
    
    package ld
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 19:14:57 UTC 2023
    - 236 bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/testdata/issue32233/main/main.go

    // Copyright 2019 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.
    
    package main
    
    import "cmd/link/internal/ld/testdata/issue32233/lib"
    
    func main() {
    	lib.DoC()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:12:55 UTC 2019
    - 256 bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/outbuf_linux.go

    // Copyright 2020 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.
    
    package ld
    
    import "syscall"
    
    func (out *OutBuf) fallocate(size uint64) error {
    	return syscall.Fallocate(int(out.f.Fd()), 0, 0, int64(size))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 11 14:21:36 UTC 2020
    - 304 bytes
    - Viewed (0)
Back to top