Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for typeOff (0.13 sec)

  1. src/reflect/all_test.go

    		{TypeOf(float64(0)), ""},
    		{TypeOf(complex64(0)), ""},
    		{TypeOf(complex128(0)), ""},
    		{TypeOf(byte(0)), ""},
    		{TypeOf(rune(0)), ""},
    		{TypeOf([]byte(nil)), ""},
    		{TypeOf([]rune(nil)), ""},
    		{TypeOf(string("")), ""},
    		{TypeOf((*any)(nil)).Elem(), ""},
    		{TypeOf((*byte)(nil)), ""},
    		{TypeOf((*rune)(nil)), ""},
    		{TypeOf((*int64)(nil)), ""},
    		{TypeOf(map[string]int{}), ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeAndAnnotations.kt

    private fun List<FirTypeRef>.mapToKtType(
        builder: KaSymbolByFirBuilder,
    ): List<KaType> = map { typeRef ->
        builder.typeBuilder.buildKtType(typeRef)
    }
    
    internal fun FirCallableSymbol<*>.returnType(builder: KaSymbolByFirBuilder): KaType =
        builder.typeBuilder.buildKtType(resolvedReturnType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/FirCallableSignature.kt

            declaration.lazyResolveToPhase(FirResolvePhase.TYPES)
            if (receiverType != declaration.receiverParameter?.typeRef?.renderType()) return false
    
            val receivers = declaration.contextReceivers
            for ((index, parameter) in contextReceiverTypes.withIndex()) {
                if (receivers[index].typeRef.renderType() != parameter) return false
            }
    
            if (declaration is FirFunction) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/godefs.go

    				override[n.Mangle] = s.Name.Name
    			}
    		}
    	}
    
    	// Extend overrides using typedefs:
    	// If we know that C.xxx should format as T
    	// and xxx is a typedef for yyy, make C.yyy format as T.
    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                is DocumentResolution.UnsuccessfulResolution -> "(${resolution.reasons.joinToString()})"
            }
    
        private
        fun typeString(typeRef: DataTypeRef) = when (typeRef) {
            is DataTypeRef.Type -> typeRef.dataType.toString()
            is DataTypeRef.Name -> typeRef.fqName.simpleName
        }
    
        private
        fun functionSignatureString(function: SchemaFunction) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyTest.kt

            val schema = schemaFromTypes(
                MyReceiver::class,
                listOf(MyReceiver::class),
                propertyExtractor = testPropertyContributor(expectedName, typeOf<Int>()) + testPropertyContributor(expectedName, typeOf<String>())
            )
    
            val property = schema.dataClassesByFqName[DefaultFqName.parse(MyReceiver::class.qualifiedName!!)]!!.properties.single()
            assertEquals(expectedName, property.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/testing/fuzz.go

    	reflect.TypeOf(([]byte)("")):  true,
    	reflect.TypeOf((string)("")):  true,
    	reflect.TypeOf((bool)(false)): true,
    	reflect.TypeOf((byte)(0)):     true,
    	reflect.TypeOf((rune)(0)):     true,
    	reflect.TypeOf((float32)(0)):  true,
    	reflect.TypeOf((float64)(0)):  true,
    	reflect.TypeOf((int)(0)):      true,
    	reflect.TypeOf((int8)(0)):     true,
    	reflect.TypeOf((int16)(0)):    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    	}
    }
    
    func nativeTypeToCELType(t *testing.T, nativeType reflect.Type) *apiservercel.DeclType {
    	switch nativeType {
    	case reflect.TypeOf(""):
    		return apiservercel.StringType
    	case reflect.TypeOf([]string{}):
    		return apiservercel.NewListType(apiservercel.StringType, -1)
    	case reflect.TypeOf(map[string]authenticationv1.ExtraValue{}):
    		return apiservercel.NewMapType(apiservercel.StringType, apiservercel.AnyType, -1)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h

      }
    
      static IsComposite join(const IsComposite &lhs, const IsComposite &rhs);
      void print(raw_ostream &os) const;
    
      bool is_on_composite_device = false;
    };
    
    typedef dataflow::Lattice<ResourceConstructingOps> ResourceDataflowState;
    typedef dataflow::Lattice<IsComposite> IsCompositeDataflowState;
    
    void LoadResourceDataflowAnalysis(DataFlowSolver &solver);
    void LoadIsCompositeDataflowAnalysis(DataFlowSolver &solver);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/config/schema/codegen/templates/collections.go.tmpl

    			},
    			{{- end}}
    			Proto: "{{ .Resource.Proto }}",
    			{{- if ne .Resource.StatusProto "" }}StatusProto: "{{ .Resource.StatusProto }}",{{end}}
    			ReflectType: reflect.TypeOf(&{{.ClientImport}}.{{.SpecType}}{}).Elem(),
    			{{- if ne .StatusType "" }}StatusType: reflect.TypeOf(&{{.StatusImport}}.{{.StatusType}}{}).Elem(), {{end}}
    			ProtoPackage: "{{ .Resource.ProtoPackage }}",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top