Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for shifttype (0.16 sec)

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

    //		Encoding:
    //			type = TYPE_SHIFT
    //		On ARM:
    //			offset = (reg&15) | shifttype<<5 | count
    //			shifttype = 0, 1, 2, 3 for <<, >>, ->, @>
    //			count = (reg&15)<<8 | 1<<4 for a register shift count, (n&31)<<7 for an integer constant.
    //		On ARM64:
    //			offset = (reg&31)<<16 | shifttype<<22 | (count&63)<<10
    //			shifttype = 0, 1, 2 for <<, >>, ->
    //
    //	(reg, reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. pkg/model/xds.go

    	case WorkloadAuthorizationType:
    		return "wads"
    	default:
    		return typeURL
    	}
    }
    
    // GetResourceType returns resource form of an abbreviated form
    func GetResourceType(shortType string) string {
    	s := strings.ToUpper(shortType)
    	switch s {
    	case "CDS":
    		return ClusterType
    	case "LDS":
    		return ListenerType
    	case "RDS":
    		return RouteType
    	case "EDS":
    		return EndpointType
    	case "SDS":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/v3/model.go

    func GetMetricType(typeURL string) string {
    	return model.GetMetricType(typeURL)
    }
    
    // GetResourceType returns resource form of an abbreviated form
    func GetResourceType(shortType string) string {
    	return model.GetResourceType(shortType)
    }
    
    // IsEnvoyType checks whether the typeURL is a valid Envoy type.
    func IsEnvoyType(typeURL string) bool {
    	return model.IsEnvoyType(typeURL)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirBuiltInTypes.kt

    ) : KaBuiltinTypes() {
    
        override val int: KaType by cachedBuiltin(builtinTypes.intType)
        override val long: KaType by cachedBuiltin(builtinTypes.longType)
        override val short: KaType by cachedBuiltin(builtinTypes.shortType)
        override val byte: KaType by cachedBuiltin(builtinTypes.byteType)
    
        override val float: KaType by cachedBuiltin(builtinTypes.floatType)
        override val double: KaType by cachedBuiltin(builtinTypes.doubleType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

            get() = withValidityAssertion { analysisContext.builtIns.longType.toKtType(analysisContext) }
    
        override val short: KaType
            get() = withValidityAssertion { analysisContext.builtIns.shortType.toKtType(analysisContext) }
    
        override val byte: KaType
            get() = withValidityAssertion { analysisContext.builtIns.byteType.toKtType(analysisContext) }
    
        override val float: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    if(!(window.ga instanceof Function))return;ga('send',{hitType:'event',eventCategory:this.groupName,eventAction:this.functionName,eventValue:this.durationMs,});}}
    class Timing{static mark(groupName,functionName,opt_timestamp){return new Mark(groupName,functionName,opt_timestamp);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top