Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,583 for constructors (1.02 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

            val descriptor = getDescriptor<ClassDescriptor>(classSymbol)
                ?: return getEmptyScope()
    
            return KaFe10ScopeMember(descriptor.unsubstitutedMemberScope, descriptor.constructors, analysisContext)
        }
    
        override fun getStaticMemberScope(symbol: KaSymbolWithMembers): KaScope {
            val descriptor = getDescriptor<ClassDescriptor>(symbol) ?: return getEmptyScope()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/ClassBoundCallInterceptor.java

     * It only intercepts the calls where the receiver is the class of interest.
     * <p>
     * It is possible but not strictly necessary to use this interceptor to intercept constructors.
     * Due to the way constructor interception works, having an {@link InterceptScope#constructorsOf(Class)
     * as a scope already guarantees that the invocation would have the given class object as the receiver.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException.java

        // constants --------------------------------------------------------------
    
        /** The serial version ID. */
        private static final long serialVersionUID = 3372412184339653914L;
    
        // constructors -----------------------------------------------------------
    
        /**
         * Creates a new <code>ConflictResolverNotFoundException</code> with the specified message.
         *
         * @param message the message
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/Member.java

     * bytecode manipulation libraries tools like ASM.
     *
     * <p>The notion of "member" here is similar to, but broader than
     * {@link java.lang.reflect.Member}. The latter is essentially an abstraction over fields,
     * methods and constructors; this Member and its subtypes represent not only fields and
     * methods, but also classes, inner classes, annotations and their values, and more. This
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/go/doc/testdata/generics.0.golden

    	}
    
    	// Parameterized types should be shown. 
    	type Type[P any] struct {
    		Field P
    	}
    
    	// Variables with an instantiated type should be shown. 
    	var X Type[int]
    
    	// Constructors for parameterized types should be shown. 
    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    	// MethodB has a blank receiver type parameter. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/go/doc/testdata/generics.2.golden

    	}
    
    	// Parameterized types should be shown. 
    	type Type[P any] struct {
    		Field P
    	}
    
    	// Variables with an instantiated type should be shown. 
    	var X Type[int]
    
    	// Constructors for parameterized types should be shown. 
    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    	// MethodB has a blank receiver type parameter. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryExtensionsIntegrationTest.groovy

            assert myExtensible.extensions.thing.value == "bar"
    """
    
            expect:
            succeeds "help"
        }
    
        def "extension container of created DSL object can create type with multiple constructors not annotated"() {
            given:
            buildFile """
            class Thing {
                Thing() {}
                Thing(String foo) {}
            }
    
            class MyExtensible {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableMultisetGwtSerializationDependencies.java

     * starting to sound harder than taking the superclass approach, which I've been coming to like,
     * anyway, since it doesn't require us to declare dummy methods (though occasionally constructors)
     * and make types non-final.
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateInsertCalibrationStatisticsSaverPass(
        StringRef calibration_data_dir,
        const std::vector<std::string>& aggregator_ops_to_ignore);
    
    // Adds generated pass default constructors or options definitions.
    #define GEN_PASS_DECL
    // Adds generated pass registration functions.
    #define GEN_PASS_REGISTRATION
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                        }
                    }
                }
            }
            val constructors = candidateTypes
                .flatMap { (it as? DataClass)?.constructors.orEmpty() }
                .filter { it.parameters.size == functionCall.args.size }
    
            return chooseMatchingOverloads(null, constructors, functionCall.args, argResolution)
        }
    
        private
        fun TypeRefContext.chooseMatchingOverloads(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top