Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for registry_ (0.13 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *     See {@link org.gradle.internal.watch.registry.impl.HierarchicalFileWatcherUpdater}.</dd>
     *
     *     <dt>watched directories</dt>
     *     <dd>On OSs with non-hierarchical file system events (currently Linux only) we don't watch whole
     *     hierarchies, but need to individually watch each directory and its immediate children.
     *     See {@link org.gradle.internal.watch.registry.impl.NonHierarchicalFileWatcherUpdater}.</dd>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.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.Predicate;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    import org.gradle.internal.Cast;
    import org.gradle.model.RuleSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/IntegrationTestBuildContext.java

        @Nullable
        public TestFile getLocalRepository() {
            return optionalFile("integTest.localRepository");
        }
    
        public TestFile getDaemonBaseDir() {
            return file("org.gradle.integtest.daemon.registry", "build/daemon");
        }
    
        public TestFile getGradleUserHomeDir() {
            return file("integTest.gradleUserHomeDir", "intTestHomeDir/distributions-unknown");
        }
    
        public TestFile getTmpDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

            DefaultImplicitInputRegistrar registrar = new DefaultImplicitInputRegistrar();
            ImplicitInputsCapturingInstantiator instantiator = findInputCapturingInstantiator(action);
            if (instantiator != null) {
                action = action.withInstantiator(instantiator.capturing(registrar));
            }
            // First step is to find an entry with the explicit inputs in the cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/classpath/PluginModuleRegistry.java

     */
    package org.gradle.api.internal.classpath;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * A registry of dynamically loaded plugin modules.
     */
    @ServiceScope(Scope.Global.class)
    public interface PluginModuleRegistry {
        /**
         * Plugin modules exposed in the Gradle API.
         */
        Set<Module> getApiModules();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/FileChangeListeners.java

     * limitations under the License.
     */
    
    package org.gradle.internal.watch.vfs;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.internal.watch.registry.FileWatcherRegistry;
    
    import java.nio.file.Path;
    
    /**
     * Allows the registration of {@link FileChangeListener}s.
     *
     * We can't use listener manager directly, since the listeners will be created in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/SharedProblemGroup.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * A registry of shared problem groups.
     *
     * @since 8.8
     */
    @Incubating
    public abstract class SharedProblemGroup implements ProblemGroup {
    
        private SharedProblemGroup() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentModelBaseServices.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base.internal.registry;
    
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.project.ProjectRegistry;
    import org.gradle.api.internal.resolve.DefaultProjectModelResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

    import org.gradle.model.internal.manage.schema.StructSchema;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.model.internal.registry.RuleContext;
    import org.gradle.model.internal.type.ModelType;
    import org.gradle.util.internal.CollectionUtils;
    
    import javax.annotation.Nullable;
    import javax.annotation.concurrent.ThreadSafe;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystem.java

    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.vfs.VirtualFileSystem;
    import org.gradle.internal.vfs.impl.AbstractVirtualFileSystem;
    import org.gradle.internal.watch.registry.WatchMode;
    import org.gradle.internal.watch.vfs.BuildFinishedFileSystemWatchingBuildOperationType;
    import org.gradle.internal.watch.vfs.BuildLifecycleAwareVirtualFileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top