Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for cgoexp (0.46 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://wicg.github.io/cross-origin-embedder-policy/#COEP">{@code
       * Cross-Origin-Embedder-Policy}</a> header field name.
       *
       * @since 30.0
       */
      public static final String CROSS_ORIGIN_EMBEDDER_POLICY = "Cross-Origin-Embedder-Policy";
      /**
       * The HTTP <a href="https://wicg.github.io/cross-origin-embedder-policy/#COEP-RO">{@code
       * Cross-Origin-Embedder-Policy-Report-Only}</a> header field name.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://wicg.github.io/cross-origin-embedder-policy/#COEP">{@code
       * Cross-Origin-Embedder-Policy}</a> header field name.
       *
       * @since 30.0
       */
      public static final String CROSS_ORIGIN_EMBEDDER_POLICY = "Cross-Origin-Embedder-Policy";
      /**
       * The HTTP <a href="https://wicg.github.io/cross-origin-embedder-policy/#COEP-RO">{@code
       * Cross-Origin-Embedder-Policy-Report-Only}</a> header field name.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    		state.nfunc++
    		if state.firstFunc == 0 {
    			state.firstFunc = s
    		}
    		state.lastFunc = s
    
    		// We need to keep track of all compilation units we see. Some symbols
    		// (eg, go.buildid, _cgoexp_, etc) won't have a compilation unit.
    		cu := ldr.SymUnit(s)
    		if _, ok := seenCUs[cu]; cu != nil && !ok {
    			seenCUs[cu] = struct{}{}
    			cu.PclnIndex = len(compUnits)
    			compUnits = append(compUnits, cu)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    	ldr := ctxt.loader
    	for s, nsym := loader.Sym(1), loader.Sym(ldr.NSym()); s < nsym; s++ {
    		if !ldr.AttrCgoExport(s) {
    			continue
    		}
    		extname := ldr.SymExtname(s)
    		if !strings.HasPrefix(extname, "._cgoexp_") {
    			continue
    		}
    		if ldr.IsFileLocal(s) {
    			continue // Only export non-static symbols
    		}
    
    		// Retrieve the name of the initial symbol
    		// exported by cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/help/helpdoc.go

    		Because the variable is defined by Git, the default value cannot
    		be set using 'go env -w'.
    
    Additional information available from 'go env' but not read from the environment:
    
    	GOEXE
    		The executable file name suffix (".exe" on Windows, "" on other systems).
    	GOGCCFLAGS
    		A space-separated list of arguments supplied to the CC command.
    	GOHOSTARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //		Because the variable is defined by Git, the default value cannot
    //		be set using 'go env -w'.
    //
    // Additional information available from 'go env' but not read from the environment:
    //
    //	GOEXE
    //		The executable file name suffix (".exe" on Windows, "" on other systems).
    //	GOGCCFLAGS
    //		A space-separated list of arguments supplied to the CC command.
    //	GOHOSTARCH
    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