Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 103 for factory (0.12 sec)

  1. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       {@link NullPointerException}.
       *   <li>If there is any visible constructor or visible static factory method declared by the
       *       class, all visible instance methods will be checked too using the instance created by
       *       invoking the constructor or static factory method.
       *   <li>If the constructor or factory method used to construct instance takes a parameter that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       {@link NullPointerException}.
       *   <li>If there is any visible constructor or visible static factory method declared by the
       *       class, all visible instance methods will be checked too using the instance created by
       *       invoking the constructor or static factory method.
       *   <li>If the constructor or factory method used to construct instance takes a parameter that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10DiagnosticProvider.kt

        override val factoryName: String
            get() = withValidityAssertion { diagnostic.factory.name }
    
        override val defaultMessage: String
            get() = withValidityAssertion {
                @Suppress("UNCHECKED_CAST")
                val factory = diagnostic.factory as DiagnosticFactory<UnboundDiagnostic>?
                return factory?.defaultRenderer?.render(diagnostic)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

        }
    
        public DefaultMultiCauseException(Factory<String> messageFactory) {
            this.messageFactory = messageFactory;
        }
    
        public DefaultMultiCauseException(Factory<String> messageFactory, Throwable... causes) {
            this(messageFactory);
            this.causes.addAll(Arrays.asList(causes));
        }
    
        public DefaultMultiCauseException(Factory<String> messageFactory, Iterable<? extends Throwable> causes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     *
     * The given factory is used to create object instances.
     *
     * All objects **MUST** expose their name as a bean property named `name`.
     * The name must be constant for the life of the object.
     *
     * @param T The type of objects for the container to contain.
     * @param factory The factory to use to create object instances.
     * @return The container.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkJavaCompiler.java

        private final Context context;
        private final Factory<ContextAwareJavaCompiler> compilerFactory;
        private final InternalProblems problemsService;
        private final DiagnosticToProblemListener diagnosticToProblemListener;
    
        @Inject
        public JdkJavaCompiler(
            Factory<ContextAwareJavaCompiler> compilerFactory,
            InternalProblems problemsService
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 14:50:33 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareLocalComponentCache.kt

        private val cache: BuildTreeConfigurationCache
    ) : LocalComponentCache {
        override fun computeIfAbsent(project: ProjectState, factory: Function<ProjectState, LocalComponentGraphResolveState>): LocalComponentGraphResolveState {
            return cache.loadOrCreateProjectMetadata(project.identityPath) {
                factory.apply(project)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestGlobalScopeServices.java

     * limitations under the License.
     */
    package org.gradle.testfixtures.internal;
    
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.internal.CacheFactory;
    import org.gradle.internal.Factory;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.logging.LoggingManagerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/build-events/src/main/java/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistry.java

        public DefaultBuildEventsListenerRegistry(
            BuildEventListenerFactory factory,
            ListenerManager listenerManager,
            BuildOperationListenerManager buildOperationListenerManager,
            ExecutorFactory executorFactory
        ) {
            this.factory = factory;
            this.listenerManager = listenerManager;
            this.buildOperationListenerManager = buildOperationListenerManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:34:01 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinCompositePackageProvider.kt

        }
    
        public companion object {
            public val factory: KotlinCompositeProviderFactory<KotlinPackageProvider> = KotlinCompositeProviderFactory(
                KotlinEmptyPackageProvider,
                ::KotlinCompositePackageProvider,
            )
    
            public fun create(providers: List<KotlinPackageProvider>): KotlinPackageProvider = factory.create(providers)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top