Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for typInfo (0.12 sec)

  1. src/go/internal/gcimporter/ureader.go

    // @@@ Types
    
    func (r *reader) typ() types.Type {
    	return r.p.typIdx(r.typInfo(), r.dict)
    }
    
    func (r *reader) typInfo() typeInfo {
    	r.Sync(pkgbits.SyncType)
    	if r.Bool() {
    		return typeInfo{idx: pkgbits.Index(r.Len()), derived: true}
    	}
    	return typeInfo{idx: r.Reloc(pkgbits.RelocType), derived: false}
    }
    
    func (pr *pkgReader) typIdx(info typeInfo, dict *readerDict) types.Type {
    	idx := info.idx
    	var where *types.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/encoding/xml/typeinfo.go

    )
    
    var tinfoMap sync.Map // map[reflect.Type]*typeInfo
    
    var nameType = reflect.TypeFor[Name]()
    
    // getTypeInfo returns the typeInfo structure with details necessary
    // for marshaling and unmarshaling typ.
    func getTypeInfo(typ reflect.Type) (*typeInfo, error) {
    	if ti, ok := tinfoMap.Load(typ); ok {
    		return ti.(*typeInfo), nil
    	}
    
    	tinfo := &typeInfo{}
    	if typ.Kind() == reflect.Struct && typ != nameType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

            private void add(int tag, Class<?> type, Serializer<?> serializer) {
                TypeInfo typeInfo = new TypeInfo(tag, type.equals(Throwable.class), serializer);
                serializersByType.put(type, typeInfo);
                serializersByTag[typeInfo.tag] = typeInfo;
                if (typeInfo.useForSubtypes) {
                    typeHierarchies.put(type, typeInfo);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleVersionSelectorParsers.java

    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.internal.typeconversion.NotationParserBuilder;
    import org.gradle.internal.typeconversion.TypeConversionException;
    import org.gradle.internal.typeconversion.TypeInfo;
    import org.gradle.internal.typeconversion.TypedNotationConverter;
    
    import java.util.Set;
    
    import static org.gradle.api.internal.artifacts.DefaultModuleVersionSelector.newSelector;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	tcpinfo.Options = 0 // dummy
    	tcpinfo.Rto = tcpStats.retransTimeouts
    	tcpinfo.Ato = tcpStats.outDelayAcks
    	tcpinfo.Snd_mss = conn.sendMSS
    	tcpinfo.Rcv_mss = conn.sendMSS // dummy
    	tcpinfo.Unacked = 0            // dummy
    	tcpinfo.Sacked = 0             // dummy
    	tcpinfo.Lost = 0               // dummy
    	tcpinfo.Retrans = conn.reXmtCount
    	tcpinfo.Fackets = 0 // dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    var typeInfoMapInit = make(map[reflect.Type]*typeInfo, 16)
    
    func lookupTypeInfo(rt reflect.Type) *typeInfo {
    	if m := typeInfoMapInit; m != nil {
    		return m[rt]
    	}
    	m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo)
    	return m[rt]
    }
    
    func getTypeInfo(ut *userTypeInfo) (*typeInfo, error) {
    	rt := ut.base
    	if ut.externalEnc != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

            val signature = SignatureParsing.CharIterator(canonicalSignature)
            val typeInfo = SignatureParsing.parseTypeStringToTypeInfo(signature, StubBuildingVisitor.GUESSING_PROVIDER)
            val typeText = typeInfo.text() ?: return null
    
            return SyntheticTypeElement(useSitePosition, typeText)
        }
    
        override fun asKaType(
            psiType: PsiType,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/encoding/gob/encode.go

    func getEncEngine(ut *userTypeInfo, building map[*typeInfo]bool) *encEngine {
    	info, err := getTypeInfo(ut)
    	if err != nil {
    		error_(err)
    	}
    	enc := info.encoder.Load()
    	if enc == nil {
    		enc = buildEncEngine(info, ut, building)
    	}
    	return enc
    }
    
    func buildEncEngine(info *typeInfo, ut *userTypeInfo, building map[*typeInfo]bool) *encEngine {
    	// Check for recursive types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/support.go

    // See cmd/compile/internal/noder.derivedInfo.
    type derivedInfo struct {
    	idx    pkgbits.Index
    	needed bool
    }
    
    // See cmd/compile/internal/noder.typeInfo.
    type typeInfo struct {
    	idx     pkgbits.Index
    	derived bool
    }
    
    // See cmd/compile/internal/types.SplitVargenSuffix.
    func splitVargenSuffix(name string) (base, suffix string) {
    	i := len(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/type.go

    // Expressions in the syntax package provide storage for
    // the typechecker to record its results. This interface
    // is the mechanism the typechecker uses to record results,
    // and clients use to retrieve those results.
    type typeInfo interface {
    	SetTypeInfo(TypeAndValue)
    	GetTypeInfo() TypeAndValue
    }
    
    // A TypeAndValue records the type information, constant
    // value if known, and various other flags associated with
    // an expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top