Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for shared (0.12 sec)

  1. src/debug/elf/elf.go

    	R_X86_64_COPY            R_X86_64 = 5  /* Copy data from shared object. */
    	R_X86_64_GLOB_DAT        R_X86_64 = 6  /* Set GOT entry to data address. */
    	R_X86_64_JMP_SLOT        R_X86_64 = 7  /* Set GOT entry to code address. */
    	R_X86_64_RELATIVE        R_X86_64 = 8  /* Add load address of shared object. */
    	R_X86_64_GOTPCREL        R_X86_64 = 9  /* Add 32 bit signed pcrel offset to GOT. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// ld runs the linker to create an executable starting at mainpkg.
    	ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error
    	// ldShared runs the linker to create a shared library containing the pkgs built by toplevelactions
    	ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error
    
    	compiler() string
    	linker() string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/dag.txt

    	quarkus/test-framework/junit5-internal/pom.xml
    quarkus/integration-tests/reactive-messaging-kafka/pom.xml
    	quarkus/integration-tests/class-transformer/runtime/pom.xml
    	quarkus/integration-tests/shared-library/pom.xml
    	quarkus/extensions/redis-client/runtime/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy/runtime/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-jackson/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    Istio cluster resources and CRDs keywords: - istio sources: - https://github.com/istio/istio engine: gotpl icon: https://istio.io/latest/favicons/android-192x192.png manifests/charts/base/README.md # Istio base Helm Chart This chart installs resources shared by all Istio revisions. This includes Istio CRDs. ## Setup Repo Info ```console helm repo add istio https://istio-release.storage.googleapis.com/charts helm repo update ``` _See [helm repo](https://helm.sh/docs/helm/helm_repo/) for command documentation._...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * the share permissions on the share exporting this file or directory.
     * If no DACL is present, null is returned. If the DACL is empty, an array with 0 elements is returned.
     * <p>
     * Note that this is different from calling <tt>getSecurity</tt> on a
     * share. There are actually two different ACLs for shares - the ACL on
     * the share and the ACL on the folder being shared.
     * Go to <i>Computer Management</i>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //		flags has a similar effect.
    //	-ldflags '[pattern=]arg list'
    //		arguments to pass on each go tool link invocation.
    //	-linkshared
    //		build code that will be linked against shared libraries previously
    //		created with -buildmode=shared.
    //	-mod mode
    //		module download mode to use: readonly, vendor, or mod.
    //		By default, if a vendor directory is present and the go version in go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "node": ">= 0.4"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/is-shared-array-buffer": {
          "version": "1.0.2",
          "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
          "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		if rs != 0 {
    			rst = ldr.SymType(rs)
    		}
    
    		if rs != 0 && (rst == sym.Sxxx || rst == sym.SXREF) {
    			// When putting the runtime but not main into a shared library
    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	Target        string                `json:",omitempty"` // installed target for this package (may be executable)
    	Shlib         string                `json:",omitempty"` // the shared library that contains this package (only set when -linkshared)
    	Root          string                `json:",omitempty"` // Go root, Go path dir, or module root dir containing this package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "kind": {
              "description": "Expected values Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set). defaults to shared",
              "type": "string"
            },
            "readOnly": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top