Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 141 for linkname (0.37 sec)

  1. src/archive/tar/writer.go

    	// Use long-link files if Name or Linkname exceeds the field size.
    	const longName = "././@LongLink"
    	if len(hdr.Name) > nameSize {
    		data := hdr.Name + "\x00"
    		if err := tw.writeRawFile(longName, data, TypeGNULongName, FormatGNU); err != nil {
    			return err
    		}
    	}
    	if len(hdr.Linkname) > nameSize {
    		data := hdr.Linkname + "\x00"
    		if err := tw.writeRawFile(longName, data, TypeGNULongLink, FormatGNU); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/runtime/slice.go

    	}
    	if asanenabled {
    		asanread(from, copymem)
    	}
    
    	memmove(to, from, copymem)
    
    	return to
    }
    
    // makeslice should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makeslice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    		t.Fatalf("os.Stat:1 %v", err)
    	}
    	hdr.Typeflag = TypeSymlink
    	// Force a PAX long linkname to be written
    	longLinkname := strings.Repeat("1234567890/1234567890", 10)
    	hdr.Linkname = longLinkname
    
    	hdr.Size = 0
    	var buf bytes.Buffer
    	writer := NewWriter(&buf)
    	if err := writer.WriteHeader(hdr); err != nil {
    		t.Fatal(err)
    	}
    	if err := writer.Close(); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    			ModTime:  time.Unix(1392395740, 0),
    			Typeflag: 0x53,
    			Linkname: "",
    			Uname:    "david",
    			Gname:    "david",
    			Devmajor: 0,
    			Devminor: 0,
    			Format:   FormatGNU,
    		}, {
    			Name:     "sparse-posix-0.0",
    			Mode:     420,
    			Uid:      1000,
    			Gid:      1000,
    			Size:     200,
    			ModTime:  time.Unix(1392342187, 0),
    			Typeflag: 0x30,
    			Linkname: "",
    			Uname:    "david",
    			Gname:    "david",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  5. pkg/kubelet/config/file_linux_test.go

    	return fileName
    }
    
    func createSymbolicLink(link, target, name string, t *testing.T) string {
    	linkName := filepath.Join(link, name)
    	linkedFile := filepath.Join(target, name)
    
    	err := os.Symlink(linkedFile, linkName)
    	if err != nil {
    		t.Fatalf("unexpected error when create symbolic link: %v", err)
    	}
    	return linkName
    }
    
    func watchFileAdded(watchDir bool, symlink bool, t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  6. src/runtime/runtime1.go

    		// restore the preemption request in case we've cleared it in newstack
    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // reflect_typelinks is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    //   - github.com/vmware/govmomi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. pkg/volume/util/atomic_writer.go

    			slashpos = len(userVisiblePath)
    		}
    		linkname := userVisiblePath[:slashpos]
    		_, err := os.Readlink(filepath.Join(w.targetDir, linkname))
    		if err != nil && os.IsNotExist(err) {
    			// The link into the data directory for this path doesn't exist; create it
    			visibleFile := filepath.Join(w.targetDir, linkname)
    			dataDirFile := filepath.Join(dataDirName, linkname)
    
    			err = os.Symlink(dataDirFile, visibleFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/runtime/map_fast64.go

    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_fast64 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ugorji/go/codec
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapaccess2_fast64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    	// compiler has provided some good hash codes for us.
    	return uintptr(inter.Type.Hash ^ typ.Hash)
    }
    
    // getitab should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname getitab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin.go

    	exitsyscall()
    	return args.r1, args.r2, args.err
    }
    func syscallX()
    
    // golang.org/x/sys linknames syscall.syscall6
    // (in addition to standard package syscall).
    // Do not remove or change the type signature.
    //
    // syscall.syscall6 is meant for package syscall (and x/sys),
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top