Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 379 for factory (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/cache/scopes/ScopedCacheBuilderFactory.java

        /**
         * Returns the root directory of this cache builder factory. You should avoid using this method and instead use one of the other methods.
         */
        File getRootDir();
    
        /**
         * Returns the base directory that would be used for a Gradle-version specific cache builder created by this factory.
         */
        File baseDirForCache(String key);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:30:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerLoggingSerializer.java

            DefaultSerializerRegistry registry = new DefaultSerializerRegistry(false);
    
            BaseSerializerFactory factory = new BaseSerializerFactory();
            Serializer<LogLevel> logLevelSerializer = factory.getSerializerFor(LogLevel.class);
            Serializer<Throwable> throwableSerializer = factory.getSerializerFor(Throwable.class);
    
            // Log events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementProjectScopeServices.java

    class DependencyManagementProjectScopeServices implements ServiceRegistrationProvider {
        void configure(ServiceRegistration registration) {
            registration.add(DefaultExternalResourceFileStore.Factory.class);
            registration.add(DefaultArtifactIdentifierFileStore.Factory.class);
            registration.add(TransformStepNodeDependencyResolver.class);
        }
    
        /** This is needed in order to get the {@code taskDependencyFactory} from the current project. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

                }
            }
    }
    
    /**
     * Uses the given [factory] to merge all providers of type [T] with the given [mergeTargets] strategy. Other providers (not of type [T]) are
     * added to the resulting composite provider unmerged.
     */
    public inline fun <P : KotlinComposableProvider, reified T : P> List<P>.mergeSpecificProviders(
        factory: KotlinCompositeProviderFactory<P>,
        crossinline mergeTargets: (List<T>) -> P,
    ): P {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderCache.java

            lock.lock();
            try {
                ClassLoader classLoader = classLoaderIds.getIfPresent(details.uuid);
                if (classLoader != null) {
                    return classLoader;
                }
    
                classLoader = factory.transform(details);
                classLoaderIds.put(details.uuid, classLoader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginArtifactRepositories.java

        public DefaultPluginArtifactRepositories(Factory<DependencyResolutionServices> factory, RepositoryHandlerInternal sharedRepositories) {
            // Create a copy of the shared repository container, so that mutations (eg adding the portal repo) are not reflected in the shared container
            dependencyResolutionServices = factory.create();
            this.sharedRepositories = sharedRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

        private Model read(InputStream input, Path pomFile, Map<String, ?> options) throws IOException {
            try {
                XMLInputFactory factory = new com.ctc.wstx.stax.WstxInputFactory();
                factory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, false);
                XMLStreamReader parser = factory.createXMLStreamReader(input);
    
                InputSource source = getSource(options);
                boolean strict = isStrict(options);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/CollectionCodecs.kt

            // by creating the COW data structure from a list.
            CopyOnWriteArraySet(readList())
        }
    )
    
    
    fun <T : MutableCollection<Any?>> collectionCodec(factory: (Int) -> T) = codec(
        { writeCollection(it) },
        { readCollectionInto(factory) }
    )
    
    
    /**
     * Decodes HashMap instances as LinkedHashMap to preserve original iteration order.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. 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)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/LhaExtractorTest.java

                        TikaExtractor tikaExtractor = container.getComponent("tikaExtractor");
                        LhaExtractor lhaExtractor = container.getComponent("lhaExtractor");
                        factory.addExtractor("text/plain", tikaExtractor);
                        factory.addExtractor("text/html", tikaExtractor);
                        factory.addExtractor("application/x-lha", lhaExtractor);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top