Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for ObjectInstantiationException (0.31 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiator.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    import org.gradle.api.Describable;
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.internal.instantiation.InstanceFactory;
    import org.gradle.internal.instantiation.InstanceGenerator;
    import org.gradle.internal.logging.text.TreeFormatter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

    import org.gradle.api.provider.ListProperty
    import org.gradle.api.provider.Property
    import org.gradle.api.provider.ValueSource
    import org.gradle.api.provider.ValueSourceParameters
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.internal.state.Managed
    import org.gradle.process.ExecOperations
    import org.gradle.process.ExecResult
    
    import javax.inject.Inject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/SingleRequestWorkerProcessIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal
    
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.process.internal.worker.RequestHandler
    import org.gradle.process.internal.worker.WorkerProcessException
    import spock.lang.Timeout
    
    @Timeout(120)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiatorFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.reflect.ObjectInstantiationException;
    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory;
    import org.gradle.internal.instantiation.DeserializationInstantiator;
    import org.gradle.internal.instantiation.InjectAnnotationHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/UnmanagedNodeBackedModelMapTest.groovy

    import org.gradle.api.internal.rules.RuleAwareNamedDomainObjectFactoryRegistry
    import org.gradle.internal.reflect.DirectInstantiator
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.model.internal.core.*
    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor
    import org.gradle.model.internal.type.ModelType
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/FactoryNamedDomainObjectContainerSpec.groovy

     * limitations under the License.
     */
    package org.gradle.api.internal
    
    import org.gradle.api.Named
    import org.gradle.api.NamedDomainObjectFactory
    import org.gradle.api.Namer
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.internal.reflect.Instantiator
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class FactoryNamedDomainObjectContainerSpec extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

            try {
                return type.cast(generatedTypes.get(type, cacheFactoryFunction).getUnchecked(name));
            } catch (UncheckedExecutionException e) {
                throw new ObjectInstantiationException(type, e.getCause());
            } catch (Exception e) {
                throw new ObjectInstantiationException(type, e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/model/NamedObjectInstantiatorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.model
    
    import org.gradle.api.Named
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.cache.internal.TestCrossBuildInMemoryCacheFactory
    import org.gradle.internal.state.Managed
    import org.gradle.test.fixtures.concurrent.ConcurrentSpec
    import org.gradle.util.Matchers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.process.internal
    
    import junit.framework.AssertionFailedError
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.process.internal.worker.RequestHandler
    import org.gradle.process.internal.worker.WorkerControl
    import org.gradle.process.internal.worker.WorkerProcessException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultCompatibilityRuleChainTest.groovy

     */
    
    package org.gradle.api.internal.attributes
    
    import org.gradle.api.attributes.AttributeCompatibilityRule
    import org.gradle.api.attributes.CompatibilityCheckDetails
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.util.SnapshotTestUtil
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    import javax.inject.Inject
    
    class DefaultCompatibilityRuleChainTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top