Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for registry_ (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

    @ServiceScope(Scope.Global.class)
    public interface GradleUserHomeScopeServiceRegistry {
        /**
         * Locates the shared services to use for the given Gradle user home dir. The returned registry also includes global services.
         *
         * <p>The caller is responsible for releasing the registry when it is finished using it by calling {@link #release(ServiceRegistry)}.</p>
         */
        ServiceRegistry getServicesFor(File gradleUserHomeDir);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/RunApplication.java

            this.mainClassName = mainClassName;
        }
    
        @TaskAction
        public void startApplication() {
            DeploymentRegistry registry = getDeploymentRegistry();
            JavaApplicationHandle handle = registry.get(getPath(), JavaApplicationHandle.class);
            if (handle == null) {
                JavaExecHandleBuilder builder = getExecActionFactory().newJavaExec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    import org.gradle.internal.watch.registry.WatchMode;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.CheckReturnValue;
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/DaemonRegistryServices.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.launcher.daemon.registry;
    
    import org.gradle.cache.Cache;
    import org.gradle.cache.FileLockManager;
    import org.gradle.cache.internal.CacheAccessSerializer;
    import org.gradle.cache.internal.MapBackedCache;
    import org.gradle.internal.file.Chmod;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializer.java

    import java.util.Map;
    
    @ThreadSafe
    public class PayloadSerializer {
        private final PayloadClassLoaderRegistry classLoaderRegistry;
    
        public PayloadSerializer(PayloadClassLoaderRegistry registry) {
            classLoaderRegistry = registry;
        }
    
        public SerializedPayload serialize(@Nullable Object payload) {
            if (payload == null) {
                return new SerializedPayload(null, Collections.<byte[]>emptyList());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/services/ProjectLayoutSetupRegistryFactory.java

            ProjectLayoutSetupRegistry registry = new ProjectLayoutSetupRegistry(basicType, mavenBuildConverter, templateOperationBuilder);
            registry.add(of(new JvmApplicationProjectInitDescriptor(Description.JAVA, libraryVersionProvider, documentationRegistry), jvmProjectGenerators, libraryVersionProvider));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 18:02:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListenerRegistrar.java

     * One instance of this exists per build tree.
     * Only one listener may register.
     * Subsequent attempts yield exceptions.
     *
     * @since 4.0
     */
    @UsedByScanPlugin("obtained from the root build's root project's service registry")
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface BuildOperationNotificationListenerRegistrar {
    
        /**
         * The registered listener will receive notification for all build operations for the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top