Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for elfType (0.12 sec)

  1. src/cmd/link/internal/loadelf/ldelf.go

    		PPC64   = uint32(sys.PPC64)
    		RISCV64 = uint32(sys.RISCV64)
    		S390X   = uint32(sys.S390X)
    	)
    
    	switch uint32(arch.Family) | elftype<<16 {
    	default:
    		return 0, 0, fmt.Errorf("%s: unknown relocation type %d; compiled without -fpic?", pn, elftype)
    
    	case MIPS | uint32(elf.R_MIPS_HI16)<<16,
    		MIPS | uint32(elf.R_MIPS_LO16)<<16,
    		MIPS | uint32(elf.R_MIPS_GOT16)<<16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    		panic("bad symbol index in SetSymElfType")
    	}
    	if et == elf.STT_NOTYPE {
    		delete(l.elfType, i)
    	} else {
    		l.elfType[i] = et
    	}
    }
    
    // SymElfSym returns the ELF symbol index for a given loader
    // symbol, assigned during ELF symtab generation.
    func (l *Loader) SymElfSym(i Sym) int32 {
    	return l.elfSym[i]
    }
    
    // SetSymElfSym sets the elf symbol index for a symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/gofmt/simplify.go

    		outer := n
    		var keyType, eltType ast.Expr
    		switch typ := outer.Type.(type) {
    		case *ast.ArrayType:
    			eltType = typ.Elt
    		case *ast.MapType:
    			keyType = typ.Key
    			eltType = typ.Value
    		}
    
    		if eltType != nil {
    			var ktyp reflect.Value
    			if keyType != nil {
    				ktyp = reflect.ValueOf(keyType)
    			}
    			typ := reflect.ValueOf(eltType)
    			for i, x := range outer.Elts {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithKotlinDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import groovy.transform.SelfType
    
    @SelfType(BaseDeprecations)
    trait WithKotlinDeprecations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 743 bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/isolated/IsolatedProjectsExecuterFixture.groovy

     */
    
    package org.gradle.integtests.fixtures.configurationcache.isolated
    
    import groovy.transform.SelfType
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    import static org.gradle.initialization.StartParameterBuildOptions.IsolatedProjectsOption.PROPERTY_NAME
    
    @SelfType(AbstractIntegrationSpec)
    trait IsolatedProjectsExecuterFixture {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidPerformanceTestFixture.groovy

     * limitations under the License.
     */
    
    package org.gradle.performance.regression.android
    
    import groovy.transform.SelfType
    import org.gradle.performance.AbstractCrossVersionPerformanceTest
    import org.gradle.performance.fixture.AndroidTestProject
    
    @SelfType(AbstractCrossVersionPerformanceTest)
    trait AndroidPerformanceTestFixture {
    
        AndroidTestProject getAndroidTestProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/WithAndroidDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import groovy.transform.SelfType
    import org.gradle.util.GradleVersion
    
    @SelfType(BaseDeprecations)
    trait WithAndroidDeprecations {
    
        void expectFilteredFileCollectionDeprecationWarning() {
            // This warning is emitted by the Kotlin Kapt plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/cache/CachingIntegrationFixture.groovy

    package org.gradle.integtests.fixtures.cache
    
    import groovy.transform.SelfType
    import org.gradle.api.internal.artifacts.ivyservice.CacheLayout
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    
    import static org.gradle.cache.internal.scopes.DefaultCacheScopeMapping.GLOBAL_CACHE_DIR_NAME
    
    @SelfType(AbstractIntegrationSpec)
    trait CachingIntegrationFixture {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/WithOldConfigurationsSupport.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.fixture
    
    
    import groovy.transform.SelfType
    import org.gradle.util.GradleVersion
    
    @SelfType(ToolingApiSpecification)
    trait WithOldConfigurationsSupport {
        private static final GradleVersion V6_9 = GradleVersion.version("6.9")
    
        private GradleVersion baseVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UnreadableCopyDestinationFixture.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.tasks
    
    import groovy.transform.SelfType
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    @SelfType(AbstractIntegrationSpec)
    trait UnreadableCopyDestinationFixture {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top