Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for link66 (0.11 sec)

  1. src/cmd/go/internal/work/exec.go

    // -no-pie must be passed when doing a partial link with -Wl,-r.
    // But -no-pie is not supported by all compilers, and clang spells it -nopie.
    func (b *Builder) gccNoPie(linker []string) string {
    	if b.gccSupportsFlag(linker, "-no-pie") {
    		return "-no-pie"
    	}
    	if b.gccSupportsFlag(linker, "-nopie") {
    		return "-nopie"
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    }
    
    func (ctxt *Link) dostrdata() {
    	for _, name := range strnames {
    		addstrdata(ctxt.Arch, ctxt.loader, name, strdata[name])
    	}
    }
    
    // addgostring adds str, as a Go string value, to s. symname is the name of the
    // symbol used to define the string data and must be unique per linked object.
    func addgostring(ctxt *Link, ldr *loader.Loader, s *loader.SymbolBuilder, symname, str string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    Alerts","type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"prometheus","uid":"${datasource}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":21,"panels":[],"targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"refId":"A"}],"title":"Performance Dashboard Notes","type":"row"},{"gridPos":{"h":6,"w":24,"x":0,"y":1},"id":19,"links":[],"options":{"code":{"language":"plaintext","showLineNumbers":false,"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// list can arrive a few different ways, but it will always
    	// contain the init tasks computed by the linker for all the
    	// packages in the program (excluding those added at runtime
    	// by package plugin). Run through the modules in dependency
    	// order (the order they are initialized by the dynamic
    	// loader, i.e. they are added to the moduledata linked list).
    	for m := &firstmoduledata; m != nil; m = m.next {
    		doInit(m.inittasks)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * Returns an {@link AsyncClosingFunction} that applies an {@link AsyncFunction} to an input,
       * ignoring the DeferredCloser and returning a {@code ClosingFuture} derived from the returned
       * {@link ListenableFuture}.
       *
       * <p>Use this method to pass a transformation to {@link #transformAsync(AsyncClosingFunction,
       * Executor)} or to {@link #catchingAsync(Class, AsyncClosingFunction, Executor)} as long as it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-service-dashboard.json

            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
      "editable": true,
      "fiscalYearStartMonth": 0,
      "graphTooltip": 0,
      "links": [],
      "liveNow": false,
      "panels": [
        {
          "collapsed": false,
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "gridPos": {
            "h": 1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	// bound to.
    	DF_1_NODIRECT DynFlag1 = 0x00020000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_IGNMULDEF DynFlag1 = 0x00040000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NOKSYMS DynFlag1 = 0x00080000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NOHDR DynFlag1 = 0x00100000
    	// Indicates that this object has been edited or has been modified since the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
       * inverse view converts values using {@link BiMap#inverse bimap.inverse()}{@code .get()}.
       *
       * <p>To use a plain {@link Map} as a {@link Function}, see {@link
       * com.google.common.base.Functions#forMap(Map)} or {@link
       * com.google.common.base.Functions#forMap(Map, Object)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

        }
      }
    
      /**
       * Returns a {@link Converter} that converts values using {@link BiMap#get bimap.get()}, and whose
       * inverse view converts values using {@link BiMap#inverse bimap.inverse()}{@code .get()}.
       *
       * <p>To use a plain {@link Map} as a {@link Function}, see {@link
       * com.google.common.base.Functions#forMap(Map)} or {@link
       * com.google.common.base.Functions#forMap(Map, Object)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //		and -asan flags. Using a -buildmode option that requires non-default compile
    //		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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top