Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for linkage (0.12 sec)

  1. src/cmd/link/internal/loader/loader.go

    			// Only check references (pull), not definitions (push, with non-zero size),
    			// so push is always allowed.
    			// This use of linkname is usually for referencing C symbols, so allow symbols
    			// with no "." in its name (not a regular Go symbol).
    			// Linkname is always a non-package reference.
    			st.linknameVarRefs = append(st.linknameVarRefs, linknameVarRef{r.unit.Lib.Pkg, name, gi})
    		}
    		if osym.Local() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //
    //	<function-type> ::= F [Y] <bare-function-type> [<ref-qualifier>] E
    func (st *state) functionType() AST {
    	st.checkChar('F')
    	if len(st.str) > 0 && st.str[0] == 'Y' {
    		// Function has C linkage.  We don't print this.
    		st.advance(1)
    	}
    	ret := st.bareFunctionType(true, false)
    	r := st.refQualifier()
    	if r != "" {
    		ret = &MethodWithQualifiers{Method: ret, Qualifiers: nil, RefQualifier: r}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                }
            }
        }
    
        private Model assembleInheritance(
                List<Model> lineage, ModelBuilderRequest request, ModelProblemCollector problems) {
            Model parent = lineage.get(lineage.size() - 1);
            for (int i = lineage.size() - 2; i >= 0; i--) {
                Model child = lineage.get(i);
                parent = inheritanceAssembler.assembleModelInheritance(child, parent, request, problems);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

        }
    
        private Model assembleInheritance(
                List<Model> lineage, ModelBuildingRequest request, ModelProblemCollector problems) {
            org.apache.maven.api.model.Model parent =
                    lineage.get(lineage.size() - 1).getDelegate();
            for (int i = lineage.size() - 2; i >= 0; i--) {
                Model child = lineage.get(i);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. src/runtime/map.go

    // make(map[k]v, hint) when hint is known to be at most bucketCnt
    // at compile time and the map needs to be allocated on the heap.
    //
    // makemap_small should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname makemap_small
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/go/build/build.go

    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/gopherjs/gopherjs
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname defaultToolTags
    var defaultToolTags []string
    
    // defaultReleaseTags should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    // Small objects are allocated from the per-P cache's free lists.
    // Large objects (> 32 kB) are allocated straight from the heap.
    //
    // mallocgc should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //   - github.com/cockroachdb/cockroach
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	"errors"
    	"fmt"
    	"io"
    	"mime"
    	"mime/multipart"
    	"net/http/httptrace"
    	"net/http/internal/ascii"
    	"net/textproto"
    	"net/url"
    	urlpkg "net/url"
    	"strconv"
    	"strings"
    	"sync"
    	_ "unsafe" // for linkname
    
    	"golang.org/x/net/http/httpguts"
    	"golang.org/x/net/idna"
    )
    
    const (
    	defaultMaxMemory = 32 << 20 // 32 MB
    )
    
    // ErrMissingFile is returned by FormFile when the provided file field name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/reflect/type.go

    // be resolved correctly. Implemented in the runtime package.
    //
    // addReflectOff should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/goplus/reflectx
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname addReflectOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/time/time.go

    	return absClock(t.abs())
    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top