Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 513 for sh_link (0.13 sec)

  1. src/runtime/vdso_elf64.go

    	sh_flags     uint64 /* Section flags */
    	sh_addr      uint64 /* Section virtual addr at execution */
    	sh_offset    uint64 /* Section file offset */
    	sh_size      uint64 /* Section size in bytes */
    	sh_link      uint32 /* Link to another section */
    	sh_info      uint32 /* Additional section information */
    	sh_addralign uint64 /* Section alignment */
    	sh_entsize   uint64 /* Entry size if section holds table */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/vdso_elf32.go

    	sh_flags     uint32 /* Section flags */
    	sh_addr      uint32 /* Section virtual addr at execution */
    	sh_offset    uint32 /* Section file offset */
    	sh_size      uint32 /* Section size in bytes */
    	sh_link      uint32 /* Link to another section */
    	sh_info      uint32 /* Additional section information */
    	sh_addralign uint32 /* Section alignment */
    	sh_entsize   uint32 /* Entry size if section holds table */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    		// SHN_XINDEX (0xffff) and the actual index of the section name
    		// string table section is contained in the sh_link field of the
    		// section header at index 0.
    		if shstrndx == int(SHN_XINDEX) {
    			shstrndx = int(link)
    			if shstrndx < int(SHN_LORESERVE) {
    				return nil, &FormatError{shoff, "invalid ELF shstrndx contained in sh_link", shstrndx}
    			}
    		}
    	}
    
    	if shnum > 0 && shentsize < wantShentsize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/path/filepath/symlink.go

    			dest += pathSeparator
    		}
    
    		dest += path[start:end]
    
    		// Resolve symlink.
    
    		fi, err := os.Lstat(dest)
    		if err != nil {
    			return "", err
    		}
    
    		if fi.Mode()&fs.ModeSymlink == 0 {
    			if !fi.Mode().IsDir() && end < len(path) {
    				return "", syscall.ENOTDIR
    			}
    			continue
    		}
    
    		// Found symlink.
    
    		linksWalked++
    		if linksWalked > 255 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/Symlink.java

     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration.filesystem;
    
    import java.io.File;
    
    public interface Symlink {
        boolean isSymlinkCreationSupported();
    
        void symlink(File link, File target) throws Exception;
    
        boolean isSymlink(File suspect);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 867 bytes
    - Viewed (0)
  6. src/runtime/defs1_solaris_amd64.go

    	sa_mask   sigset
    }
    
    type fpregset struct {
    	fp_reg_set [528]byte
    }
    
    type mcontext struct {
    	gregs  [28]int64
    	fpregs fpregset
    }
    
    type ucontext struct {
    	uc_flags    uint64
    	uc_link     *ucontext
    	uc_sigmask  sigset
    	uc_stack    stackt
    	pad_cgo_0   [8]byte
    	uc_mcontext mcontext
    	uc_filler   [5]int64
    	pad_cgo_1   [8]byte
    }
    
    type timespec struct {
    	tv_sec  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. hack/e2e-internal/e2e-shrink-cluster.sh

    xichengliudui <******@****.***> 1550548203 -0500
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 962 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            // the symlink is watched between builds.
            linkdir.file("existing").createFile()
            buildFile << """
        task echo {
            def symlink = file("${symlink.toURI()}")
            inputs.files symlink
            inputs.files "src/linkdir/existing"
            outputs.file "build/outputs"
            doLast {
                println "text: " + (symlink.exists() ? symlink.text:"missing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FileSystemServices.java

                final Symlink symlink = createWindowsJdkSymlink();
                return genericFileSystemFactory.create(new EmptyChmod(), new FallbackStat(), symlink);
            }
    
            if (posixFiles instanceof UnavailablePosixFiles) {
                LOGGER.debug("Native-platform file system integration is not available. Continuing with fallback.");
            } else {
                Symlink symlink = new NativePlatformBackedSymlink(posixFiles);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

        private final FileModeMutator chmod;
        private final FileModeAccessor stat;
        private final Symlink symlink;
        private final FileMetadataAccessor metadata;
        private final StatStatistics.Collector statisticsCollector;
    
        public GenericFileSystem(
            FileModeMutator chmod,
            FileModeAccessor stat,
            Symlink symlink,
            FileMetadataAccessor metadata,
            StatStatistics.Collector statisticsCollector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top