Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 352 for CONSTRUCTOR (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

    import java.util.Map;
    import java.util.Set;
    
    /**
     * A factory for creating various kinds of model objects.
     * <p>
     * An instance of the factory can be injected into a task, plugin or other object by annotating a public constructor or property getter method with {@code javax.inject.Inject}.
     * It is also available via {@link org.gradle.api.Project#getObjects()}.
     *
     * @since 4.0
     */
    @ServiceScope({Scope.Global.class, Scope.Project.class})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/kube/multicluster/secretcontroller.go

    // If the cluster is removed, the T.Close() method will be called.
    // Constructors MUST not do blocking IO; they will block other operations.
    // During a cluster update, a new component is constructed before the old one is removed for seamless migration.
    func BuildMultiClusterComponent[T ComponentConstraint](c ComponentBuilder, constructor func(cluster *Cluster) T) *Component[T] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            skipped(":c:${language.compileTaskName}")
        }
    
        // Note: In Groovy the generated constructor is not the same anymore as the empty one (it's annotated now)
        def "doesn't recompile when empty initializer, static initializer or constructor is added"() {
            given:
            buildFile << """
                project(':b') {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

    import okio.ByteString.Companion.encodeUtf8
    
    /**
     * An [RFC 2387][rfc_2387]-compliant request body.
     *
     * [rfc_2387]: http://www.ietf.org/rfc/rfc2387.txt
     */
    @Suppress("NAME_SHADOWING")
    class MultipartBody internal constructor(
      private val boundaryByteString: ByteString,
      @get:JvmName("type") val type: MediaType,
      @get:JvmName("parts") val parts: List<Part>,
    ) : RequestBody() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * {@link Constructor}オブジェクトを返します。
         *
         * @param <T>
         *            {@link Class}オブジェクトが表すクラス
         * @param clazz
         *            クラスの{@link Class}オブジェクト。{@literal null}であってはいけません
         * @param argTypes
         *            パラメータ配列
         * @return 指定された{@code argTypes}と一致する{@code public}コンストラクタの
         *         {@link Constructor}オブジェクト
         * @throws NoSuchConstructorRuntimeException
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    import static org.codelibs.core.misc.AssertionUtil.assertState;
    
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.sql.Time;
    import java.sql.Timestamp;
    import java.util.Collection;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

        internal var cipherSuites: Array<String>? = null
        internal var tlsVersions: Array<String>? = null
        internal var supportsTlsExtensions: Boolean = false
    
        internal constructor(tls: Boolean) {
          this.tls = tls
        }
    
        constructor(connectionSpec: ConnectionSpec) {
          this.tls = connectionSpec.isTls
          this.cipherSuites = connectionSpec.cipherSuitesAsString
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

            when:
            DeprecationLogger.deprecateInternalApi("constructor DefaultPolymorphicDomainObjectContainer(Class<T>, Instantiator)")
                .replaceWith("ObjectFactory.polymorphicDomainObjectContainer(Class<T>)")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    If the type contains an abstract property called "name" of type `String`, Gradle provides an implementation for the getter
    method, and extends each constructor with a "name" parameter, which comes before all other constructor parameters.
    
    If the type is an interface, Gradle will provide a constructor with a single "name" parameter and `@Inject` semantics.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

                throws Exception {
            final Class<?> clazz = loadImplementation(parseImplementation(parser), rawType);
    
            // simple bean? assumes string constructor
            if (parser.next() == XmlPullParser.TEXT) {
                final String text = parser.getText();
    
                // confirm element doesn't contain nested XML
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top