Home
last modified time | relevance | path

Searched refs:factoryType (Results 1 – 25 of 432) sorted by relevance

12345678910>>...18

/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/helpers/vault/internal/registry/
H A Dregistry.go8 factoryType string member
14 factoryType: factoryType,
20 return fmt.Sprintf("factory for %s %q already registered", e.factoryType, e.factoryName)
33 factoryType string member
39 factoryType: factoryType,
45 return fmt.Sprintf("factory for %s %q is not registered", e.factoryType, e.factoryName)
63 factoryType string member
70 return NewFactoryAlreadyRegisteredError(r.factoryType, factoryName)
81 return nil, NewFactoryNotRegisteredError(r.factoryType, factoryName)
87 func New(factoryType string) Registry {
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/lang/invoke/
H A DLambdaProxyClassArchive.java42 MethodType factoryType, in addToArchive() argument
50 MethodType factoryType, in findFromArchive() argument
66 MethodType factoryType, in register() argument
79 addToArchive(caller, interfaceMethodName, factoryType, interfaceMethodType, in register()
97 MethodType factoryType, in find() argument
111 return findFromArchive(caller, interfaceMethodName, factoryType, interfaceMethodType, in find()
H A DInnerClassLambdaMetafactory.java166 MethodType factoryType, in InnerClassLambdaMetafactory() argument
181 constructorType = factoryType.changeReturnType(Void.TYPE); in InnerClassLambdaMetafactory()
193 int parameterCount = factoryType.parameterCount(); in InnerClassLambdaMetafactory()
229 if (factoryType.parameterCount() == 0) { in buildCallSite()
235 factoryType.returnType())); in buildCallSite()
270 return new ConstantCallSite(mh.asType(factoryType)); in buildCallSite()
292 factoryType, in spinInnerClass()
434 assert factoryType.parameterCount() == 0; in generateClassInitializer()
454 int parameterCount = factoryType.parameterCount(); in generateConstructor()
457 Class<?> argType = factoryType.parameterType(i); in generateConstructor()
[all …]
H A DLambdaMetafactory.java325 MethodType factoryType, in metafactory() argument
332 Objects.requireNonNull(factoryType), in metafactory()
476 MethodType factoryType, in altMetafactory() argument
481 Objects.requireNonNull(factoryType); in altMetafactory()
516 …boolean foundSerializableSupertype = Serializable.class.isAssignableFrom(factoryType.returnType()); in altMetafactory()
527 factoryType, in altMetafactory()
H A DAbstractValidatingLambdaMetafactory.java56 final MethodType factoryType; // The type of the invoked method "(CC)II" field in AbstractValidatingLambdaMetafactory
113 MethodType factoryType, in AbstractValidatingLambdaMetafactory() argument
129 this.factoryType = factoryType; in AbstractValidatingLambdaMetafactory()
131 this.interfaceClass = factoryType.returnType(); in AbstractValidatingLambdaMetafactory()
226 final int capturedArity = factoryType.parameterCount(); in validateMetafactoryArgs()
265 receiverClass = factoryType.parameterType(0); in validateMetafactoryArgs()
283 Class<?> capturedParamType = factoryType.parameterType(i); in validateMetafactoryArgs()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Http/ValueProviders/
H A DValueProviderAttribute.cs42 private static ValueProviderFactory Instantiate(Type factoryType) in Instantiate() argument
44 if (factoryType == null) in Instantiate()
49 if (!typeof(ValueProviderFactory).IsAssignableFrom(factoryType)) in Instantiate()
51 …eration(SRResources.ValueProviderFactory_Cannot_Create, typeof(ValueProviderFactory), factoryType); in Instantiate()
54 return (ValueProviderFactory)Activator.CreateInstance(factoryType); in Instantiate()
/dports/lang/mono/mono-5.10.1.57/mcs/tools/cil-strip/Mono.Cecil.Cil/
H A DSymbolStoreHelper.cs64 Type factoryType = Type.GetType (type_name + ", " + assembly_name, false); in InitFactory()
65 if (factoryType == null) { in InitFactory()
68 factoryType = assembly.GetType (type_name); in InitFactory()
72 if (factoryType == null) in InitFactory()
75 s_factory = (ISymbolStoreFactory) Activator.CreateInstance (factoryType); in InitFactory()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/native/libjava/
H A DLambdaProxyClassArchive.c37 jobject factoryType, in Java_java_lang_invoke_LambdaProxyClassArchive_addToArchive() argument
42 JVM_RegisterLambdaProxyClassForArchiving(env, caller, interfaceMethodName, factoryType, in Java_java_lang_invoke_LambdaProxyClassArchive_addToArchive()
51 jobject factoryType, in Java_java_lang_invoke_LambdaProxyClassArchive_findFromArchive() argument
55 return JVM_LookupLambdaProxyClassFromArchive(env, caller, interfaceMethodName, factoryType, in Java_java_lang_invoke_LambdaProxyClassArchive_findFromArchive()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Compilation/
H A DBrowserCapabilitiesCompiler.cs287 factoryType.Attributes = MemberAttributes.Private; in GenerateCode()
288 factoryType.IsClass = true; in GenerateCode()
289 factoryType.Name = TypeName; in GenerateCode()
291 cnamespace.Types.Add(factoryType); in GenerateCode()
305 factoryType.Members.Add(method); in GenerateCode()
355 factoryType.Members.Add(cmm); in GenerateCode()
432 factoryType.Members.Add(cmm); in GenerateCode()
459 GenerateProcessMethod(bd, factoryType); in GenerateCode()
466 GenerateProcessMethod(bd, factoryType); in GenerateCode()
476 GenerateOverrideMatchedHeaders(factoryType); in GenerateCode()
[all …]
H A DDesignTimeResourceProviderFactoryAttribute.cs23 public DesignTimeResourceProviderFactoryAttribute(Type factoryType) { in DesignTimeResourceProviderFactoryAttribute() argument
24 _factoryTypeName = factoryType.AssemblyQualifiedName; in DesignTimeResourceProviderFactoryAttribute()
H A DObjectFactoryCodeDomTreeGenerator.cs111 …Type factoryType = a.GetType(factoryFullClassNameBase + Util.MakeValidTypeNameFromString(shortAsse… in GetFastObjectCreationDelegate()
112 if (factoryType == null) in GetFastObjectCreationDelegate()
119 typeof(InstantiateObject), factoryType, methodName); in GetFastObjectCreationDelegate()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Util/
H A DFactoryGenerator.cs115 Type factoryType; in GetFactoryTypeWithAssert()
171 factoryType = factoryTypeBuilder.CreateType(); in GetFactoryTypeWithAssert()
173 return factoryType; in GetFactoryTypeWithAssert()
179 Type factoryType = GetFactoryTypeWithAssert(type); in CreateFactory()
183 return (IWebObjectFactory) Activator.CreateInstance(factoryType); in CreateFactory()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DHttpMessageHandlerFactory.cs148 … Type factoryType = HttpChannelUtilities.GetTypeFromAssembliesInCurrentDomain(configElement.Type); in CreateFromConfigurationElement()
149 if (factoryType == null) in CreateFromConfigurationElement()
154 … if (!typeof(HttpMessageHandlerFactory).IsAssignableFrom(factoryType) || factoryType.IsAbstract) in CreateFromConfigurationElement()
160 factoryType, in CreateFromConfigurationElement()
164 return Activator.CreateInstance(factoryType) as HttpMessageHandlerFactory; in CreateFromConfigurationElement()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/
H A DFactoryGenerator.cs133 Type factoryType; in GetFactory()
186 factoryType = factoryTypeBuilder.CreateType(); in GetFactory()
191 object factory = Activator.CreateInstance(factoryType); in GetFactory()
/dports/misc/openvdb/openvdb-9.0.0/openvdb/openvdb/points/
H A DAttributeArray.cc135 const NamePair& factoryType = array->type(); in registerType() local
136 if (factoryType != type) { in registerType()
139 << factoryType.first << "_" << factoryType.second << "."); in registerType()
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.WebPages.Razor/
H A DWebRazorHostFactory.cs105 Type factoryType = TypeFactory(typeName); in CreateFactory()
106 if (factoryType == null) in CreateFactory()
112 return Expression.Lambda<Func<WebRazorHostFactory>>(Expression.New(factoryType)) in CreateFactory()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui refactoring/org/eclipse/jdt/internal/ui/refactoring/
H A DIntroduceFactoryInputPage.java168 IType factoryType= chooseFactoryClass(); in createControl()
170 if (factoryType == null) in createControl()
173 …RefactoringStatus status= getUseFactoryRefactoring().setFactoryClass(factoryType.getFullyQualified… in createControl()
176 factoryTypeName.setText(factoryType.getFullyQualifiedName()); in createControl()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DSvcHttpHandler.cs57 public SvcHttpHandler (Type type, Type factoryType, string path) in SvcHttpHandler() argument
60 this.factory_type = factoryType; in SvcHttpHandler()
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/go/doc/
H A Dreader.go414 factoryType := res.Type
415 if t, ok := factoryType.(*ast.ArrayType); ok {
418 factoryType = t.Elt
420 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) && !r.isPredeclared(n) {
/dports/lang/gcc8/gcc-8.5.0/libgo/go/go/doc/
H A Dreader.go399 factoryType := res.Type
400 if t, ok := factoryType.(*ast.ArrayType); ok && t.Len == nil {
403 factoryType = t.Elt
405 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) {
/dports/lang/gcc10/gcc-10.3.0/libgo/go/go/doc/
H A Dreader.go414 factoryType := res.Type
415 if t, ok := factoryType.(*ast.ArrayType); ok {
418 factoryType = t.Elt
420 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) && !r.isPredeclared(n) {
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgo/go/go/doc/
H A Dreader.go399 factoryType := res.Type
400 if t, ok := factoryType.(*ast.ArrayType); ok && t.Len == nil {
403 factoryType = t.Elt
405 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) {
/dports/net/drive/drive-0.4.0/vendor/cloud.google.com/go/third_party/go/doc/
H A Dreader.go417 factoryType := res.Type
418 if t, ok := factoryType.(*ast.ArrayType); ok {
421 factoryType = t.Elt
423 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) && !r.isPredeclared(n) {
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/go/doc/
H A Dreader.go414 factoryType := res.Type
415 if t, ok := factoryType.(*ast.ArrayType); ok {
418 factoryType = t.Elt
420 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) && !r.isPredeclared(n) {
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/cloud.google.com/go/third_party/go/doc/
H A Dreader.go416 factoryType := res.Type
417 if t, ok := factoryType.(*ast.ArrayType); ok {
420 factoryType = t.Elt
422 if n, imp := baseTypeName(factoryType); !imp && r.isVisible(n) && !r.isPredeclared(n) {

12345678910>>...18