Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for registry_ (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.registry;
    
    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableMultimap;
    import com.google.common.collect.Iterables;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

        @FunctionalInterface
        @ServiceScope(Scope.Global.class)
        public interface Factory {
            HttpClientHelper create(HttpSettings settings);
    
            /**
             * Method should only be used for DI registry and testing.
             * For other uses of {@link HttpClientHelper}, inject an instance of {@link Factory} to create one.
             */
            static Factory createFactory(DocumentationRegistry documentationRegistry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            projectDir = (projectDir != null) ? projectDir.getAbsoluteFile() : new File(parentProject.getProjectDir(), name);
            // Descriptor is added to registry as a side effect
            DefaultProjectDescriptor projectDescriptor = new DefaultProjectDescriptor(parentDescriptor, name, projectDir, descriptorRegistry, parentProject.getServices().get(FileResolver.class));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

       * of the Mozilla Foundation's <a href="http://publicsuffix.org/">Public Suffix List</a> (PSL). A
       * registry suffix is one under which Internet users can directly register names via a domain name
       * registrar, and have such registrations lawfully protected by internet-governing bodies such as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            return serialWarn(true);
        }
    
        /**
         * -charset  name
         * Specifies the HTML character set for this document. The name should be a preferred MIME name as given in the IANA Registry. For example:
         * <p>
         * javadoc -charset "iso-8859-1" mypackage
         * <p>
         * would insert the following line in the head of every generated page:
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InternetDomainName.java

       * of the Mozilla Foundation's <a href="http://publicsuffix.org/">Public Suffix List</a> (PSL). A
       * registry suffix is one under which Internet users can directly register names via a domain name
       * registrar, and have such registrations lawfully protected by internet-governing bodies such as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                classpath = classpath.plus(registry.getModule("gradle-daemon-main").getImplementationClasspath());
                searchClassPath = registry.getAdditionalClassPath().getAsFiles();
            } else {
                // When running from a Gradle distro, only need the daemon main jar. The daemon can find everything from there.
                classpath = registry.getModule("gradle-daemon-main").getImplementationClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        }
    
        @Provides
        ClassLoaderHierarchyHasher createClassLoaderHierarchyHasher(ClassLoaderRegistry registry, HashingClassLoaderFactory classLoaderFactory) {
            return new RegistryAwareClassLoaderHierarchyHasher(registry, classLoaderFactory);
        }
    
        @Provides
        HashingClassLoaderFactory createClassLoaderFactory(ClasspathHasher classpathHasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

    import org.gradle.internal.watch.WatchingNotSupportedException;
    import org.gradle.internal.watch.registry.FileWatcherRegistry;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.WatchMode;
    import org.gradle.internal.watch.registry.impl.DaemonDocumentationIndex;
    import org.gradle.internal.watch.registry.impl.SnapshotCollectingDiffListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.CREATED;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.INVALIDATED;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.MODIFIED;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.OVERFLOW;
    import static org.gradle.internal.watch.registry.FileWatcherRegistry.Type.REMOVED;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top