Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 243 for registry_ (0.1 sec)

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

    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.DarwinFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.LinuxFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.WindowsFileWatcherRegistryFactory;
    import org.gradle.internal.watch.vfs.BuildLifecycleAwareVirtualFileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

            }
    
            // Pluggable serialization
            for (ValueSnapshotterSerializerRegistry registry : valueSnapshotterSerializerRegistryList) {
                if (registry.canSerialize(valueClass)) {
                    return gradleSerialization(value, registry.build(valueClass), visitor);
                }
            }
    
            // Fall back to Java serialization
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistryInternal.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.collect.Multimap;
    import org.gradle.model.RuleSource;
    import org.gradle.model.internal.core.*;
    import org.gradle.model.internal.inspect.ExtractedRuleSource;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleContext.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 org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor;
    
    import javax.annotation.Nullable;
    import java.util.ArrayDeque;
    import java.util.Deque;
    
    public class RuleContext {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

            InstrumentationTypeRegistry registry = getInstrumentationTypeRegistry();
    
            InstrumentationDependencyAnalysis data = serializer.readDependencyAnalysis(input);
            Map<String, Set<String>> dependenciesSuperTypes = new TreeMap<>();
            for (String className : data.getDependencies().keySet()) {
                Set<String> superTypes = registry.getSuperTypes(className);
                if (!superTypes.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/SnapshotCollectingDiffListener.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.internal.watch.registry.impl;
    
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemNode;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentRegistry.java

    import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
    import org.gradle.internal.component.local.model.LocalComponentGraphResolveState;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A registry of all dependency resolution state for locally produced components.
     * These components may be produced within the same project, another project in the same multi-project build,
     * or in another build within a composite.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/WatchMode.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.internal.watch.registry;
    
    import org.slf4j.Logger;
    import org.slf4j.helpers.NOPLogger;
    
    public enum WatchMode {
        ENABLED(true, "enabled") {
            @Override
            public Logger loggerForWarnings(Logger currentLogger) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ScopedServiceRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * A registry validating that all registered services are annotated with a corresponding {@link Scope}.
     */
    @NonNullApi
    public class ScopedServiceRegistry extends DefaultServiceRegistry {
    
        public ScopedServiceRegistry(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.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.Optional;
    import org.gradle.model.RuleSource;
    import org.gradle.model.internal.core.ChainingModelProjection;
    import org.gradle.model.internal.core.EmptyModelProjection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top