Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for CONSTRUCTOR (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.Path
    import java.io.File
    import java.io.OutputStream
    
    
    class DefaultConfigurationCache internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
        private val cacheKey: ConfigurationCacheKey,
        private val problems: ConfigurationCacheProblems,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        /**
         * By default, mojos are not threadsafe
         * @since 3.0-beta-2
         */
        private boolean threadSafe = false;
    
        private boolean v4Api = false;
    
        /**
         * Default constructor.
         */
        public MojoDescriptor() {
            this.parameters = new ArrayList<>();
            setInstantiationStrategy(DEFAULT_INSTANTIATION_STRATEGY);
            setComponentFactory(DEFAULT_LANGUAGE);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            def configurationCache = newConfigurationCacheFixture()
            buildKotlinFile """
                val stringProvider = providers
                    .$operator("string")
                abstract class PrintString @Inject constructor(objects: ObjectFactory) : DefaultTask() {
                    @get:Input
                    val string: Property<String> = objects.property<String>().convention("absent")
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. pilot/test/xds/fake.go

    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    
    	// Callback to modify the kube client before it is started
    	KubeClientModifier func(c kubelib.Client)
    
    	// Override the default kube client constructor
    	KubeClientBuilder func(objects ...runtime.Object) kubelib.Client
    
    	// ListenerBuilder, if specified, allows making the server use the given
    	// listener instead of a buffered conn.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                val ktParameter = typeParameters.getOrNull(parameter.index) ?: return emptyMap()
    
                // i.e. we were not able to infer some types
                if (type.contains { it: UnwrappedType -> it.constructor is TypeVariableTypeConstructor }) return emptyMap()
    
                result[ktParameter] = type.toKtType(analysisContext)
            }
    
            return result
        }
    
        private companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top