Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for openResource (0.24 sec)

  1. cmd/sftp-server.go

    )
    
    // if the sftp parameter --trusted-user-ca-key is set, then
    // the final form of the key file will be set as this variable.
    var caPublicKey ssh.PublicKey
    
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=46
    // preferredKexAlgos specifies the default preference for key-exchange
    // algorithms in preference order. The diffie-hellman-group16-sha512 algorithm
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. LICENSE

    Eclipse Public License 1.0
    https://opensource.org/licenses/EPL-1.0
    
    junit:junit
    org.sonatype.aether:aether-api
    org.sonatype.aether:aether-connector-wagon
    org.sonatype.aether:aether-impl
    org.sonatype.aether:aether-spi
    org.sonatype.aether:aether-util
    
    ------------------------------------------------------------------------------
    3-Clause BSD
    https://opensource.org/licenses/BSD-3-Clause
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// for more context. Also useful to refer to the Apple dynamic
    	// loader source, specifically ImageLoaderMachO::sniffLoadCommands
    	// in ImageLoaderMachO.cpp (various versions can be found online, see
    	// https://opensource.apple.com/source/dyld/dyld-519.2.2/src/ImageLoaderMachO.cpp.auto.html
    	// as one example).
    	seg.Addr = 0
    	seg.Memsz = 0
    	seg.Prot = 0
    
    	if err := r.WriteAt(0, &seg); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/macho.go

    }
    
    // Generate data for the dynamic linker, used in LC_DYLD_INFO_ONLY load command.
    // See mach-o/loader.h, struct dyld_info_command, for the encoding.
    // e.g. https://opensource.apple.com/source/xnu/xnu-6153.81.5/EXTERNAL_HEADERS/mach-o/loader.h
    func machoDyldInfo(ctxt *Link) {
    	ldr := ctxt.loader
    	rebase := ldr.CreateSymForUpdate(".machorebase", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top