Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for _DYNAMIC (0.11 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    -2:						\n\
    -       " : "=r" (static_addr),  "=r" (dynamic_addr));
    -  return dynamic_addr - static_addr;
    +    _DYNAMIC sysmbol is used here as its link-time address stored in
    +    the special unrelocated first GOT entry.  */
    +
    +    extern ElfW(Dyn) _DYNAMIC[] attribute_hidden;
    +    return (ElfW(Addr)) &_DYNAMIC - elf_machine_dynamic ();
     }
     
     /* Set up the loaded object described by L so its unrelocated PLT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    This can be a requirement during development, or you may be developing a library that is designed to work with a range of dependency versions.
    You can easily depend on these constantly changing dependencies by using a _dynamic version_.
    A <<dynamic_versions.adoc#sub:declaring_dependency_with_dynamic_version,dynamic version>> can be either a version range (e.g. `2.+`) or it can be a placeholder for the latest version available e.g. `latest.integration`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. architecture/networking/controllers.md

      The `NewDelayedInformer` abstracts that entirely, offering the same API as normal `kclient.Client`.
    * Simple object filtering. Beyond just static filters on objects, `kclient` supports _dynamic filters_ that can change at runtime.
      When a filter changes and includes/removes new objects, those are automatically handled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

        23: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS
        24: 0000000000402014     0 NOTYPE  LOCAL  DEFAULT   18 __GNU_EH_FRAME_HDR
        25: 0000000000403de0     0 OBJECT  LOCAL  DEFAULT   22 _DYNAMIC
        26: 0000000000404000     0 OBJECT  LOCAL  DEFAULT   24 _GLOBAL_OFFSET_TABLE_
        27: 0000000000401300    23 FUNC    GLOBAL DEFAULT   15 _ZN8Multiply8mul[...]
        28: 0000000000404060     0 NOTYPE  GLOBAL DEFAULT   25 _edata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/debug/elf/symbols_test.go

    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "__init_array_start",
    			Info:    0x0,
    			Other:   0x2,
    			Section: 0x12,
    			Value:   0x600684,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "_DYNAMIC",
    			Info:    0x1,
    			Other:   0x2,
    			Section: 0x15,
    			Value:   0x6006B0,
    			Size:    0x0,
    		},
    		Symbol{
    			Name:    "data_start",
    			Info:    0x20,
    			Other:   0x0,
    			Section: 0x18,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 05 18:18:26 UTC 2019
    - 13.4K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crtn.S", 4, 0, 65521, 0, 0, "", ""},
    			{"hello.c", 4, 0, 65521, 0, 0, "", ""},
    			{"printf", 18, 0, 0, 0, 44, "", ""},
    			{"_DYNAMIC", 17, 0, 65521, 134518284, 0, "", ""},
    			{"__dso_handle", 17, 2, 11, 134518272, 0, "", ""},
    			{"_init", 18, 0, 6, 134513512, 0, "", ""},
    			{"environ", 17, 0, 18, 134518512, 4, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top