Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for constructorsOf (0.67 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                    applyPropertyValue(objectReflection.objectOrigin, property, assigned)
                    apply(assigned.value, conversionFilter)
                    // TODO: record properties assigned in function calls or constructors, so that
                    //       we can check that all properties were assigned
                }
    
                objectReflection.addedObjects.forEach { addedObject ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kube/krt/core.go

    // These are all created by the various Filter* functions
    type FetchOption func(*dependency)
    
    // CollectionOption is a functional argument type that can be passed to Collection constructors.
    type CollectionOption func(*collectionOptions)
    
    // Transformations represent functions that derive some output types from an input type.
    type (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                } else {
                    problems.add("Enclosed classes must be static and non private");
                }
            }
    
            Constructor<?>[] constructors = source.getDeclaredConstructors();
            for (Constructor<?> constructor : constructors) {
                if (constructor.getParameterTypes().length > 0) {
                    problems.add("Cannot declare a constructor that takes arguments");
                    break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        override val typeArgumentsMapping: Map<KaTypeParameterSymbol, KaType> get() = withValidityAssertion { emptyMap() }
    }
    
    /**
     * A delegated call to constructors. For example
     * ```
     * open class SuperClass(i: Int)
     * class SubClass1: SuperClass(1) // a call to constructor of `SuperClass` with single argument `1`
     * class SubClass2 : SuperClass {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/CharSourceTest.java

     *
     * @author Colin Decker
     */
    public class CharSourceTest extends IoTestCase {
    
      @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors.
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        for (boolean asByteSource : new boolean[] {false, true}) {
          suite.addTest(
              CharSourceTester.tests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                val callExpression = (psi as? KtExpression)?.getPossiblyQualifiedCallExpression()
                if (callExpression != null) {
                    val constructors = findQualifierConstructors()
                    val calls = toKtCalls(constructors)
                    return KaErrorCallInfo(calls, inapplicableCandidateDiagnostic(), token)
                }
            }
    
            if (this is FirImplicitInvokeCall) {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

                        // return TestUtil.newInstance(type, params)
                        assert type.constructors.size() == 1
                        return type.cast(type.constructors[0].newInstance(params))
                    } else {
                        return TestUtil.newInstance(type)
                    }
                }
            })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                !is KaDeclarationSymbol -> {
                    // File, package, etc.
                    return false
                }
    
                is KaSamConstructorSymbol -> {
                    // SAM constructors are always top-level
                    return false
                }
    
                is KaScriptSymbol -> {
                    // Scripts are always top-level
                    return false
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope.h

    /// @{
    
    /// A `Scope` object represents a set of related TensorFlow ops that have the
    /// same properties such as a common name prefix.
    ///
    /// A Scope object is a container for TensorFlow Op properties. Op constructors
    /// get a Scope object as a mandatory first argument and the constructed op
    /// acquires the properties in the object.
    ///
    /// A simple example:
    ///
    ///     using namespace ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/goboringcrypto.h

    #include <stdlib.h> // size_t
    #include <stdint.h> // uint8_t
    
    // This symbol is hidden in BoringCrypto and marked as a constructor,
    // but cmd/link's internal linking mode doesn't handle constructors.
    // Until it does, we've exported the symbol and can call it explicitly.
    // (If using external linking mode, it will therefore be called twice,
    // once explicitly and once as a constructor, but that's OK.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top