Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for linkage (0.4 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    // According to the Standard (7.5/1), function types with different linkages
    // are different even if they are otherwise identical.  Some compilers (for
    // example, SunStudio) treat them as different types.  Since class methods
    // cannot be defined with C-linkage we need to define a free C-function to
    // pass into pthread_create().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    };
    
    // pthread_create() accepts a pointer to a function type with the C linkage.
    // According to the Standard (7.5/1), function types with different linkages
    // are different even if they are otherwise identical.  Some compilers (for
    // example, SunStudio) treat them as different types.  Since class methods
    // cannot be defined with C-linkage we need to define a free C-function to
    // pass into pthread_create().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	XMC_RO     = 1  // Read-only constant
    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    	XMC_XO     = 7  // Extended operation
    	XMC_SV     = 8  // 32-bit supervisor call descriptor
    	XMC_BS     = 9  // BSS class
    	XMC_DS     = 10 // Function descriptor
    	XMC_UC     = 11 // Unnamed FORTRAN common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    	switch runtime.GOOS {
    	case "aix", "android", "darwin", "ios", "js", "plan9", "windows", "wasip1":
    		t.Skipf("cmd/link doesn't produce ELF binaries on %s", runtime.GOOS)
    	}
    	_ = net.ResolveIPAddr // force dynamic linkage
    	f, err := Open(os.Args[0])
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	for i, si := range f.Sections {
    		sih := si.SectionHeader
    		if sih.Type == SHT_NOBITS {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[executing_legacy_tests_with_junit_vintage]]
    === Executing legacy tests with JUnit Vintage
    
    If you want to run JUnit 3/4 tests on JUnit Platform, or even mix them with Jupiter tests, you should add extra JUnit Vintage Engine dependencies:
    
    .JUnit Vintage dependencies
    ====
    include::sample[dir="snippets/testing/junitplatform-mix/kotlin",files="build.gradle.kts[tags=vintage-dependencies]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top