Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 182 for registry_ (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/DefaultVariantArtifactResolver.java

            } else {
                // This is a bit of a hack because we allow the artifactType registry to be different in every resolution scope.
                // This means it's not safe to assume a variant resolved in one consumer can be reused in another consumer with the same key.
                // Most of the time the artifactType registry has the same effect on the variant's attributes, but this isn't guaranteed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUnavailableExpirationStrategy.java

        public static final String REGISTRY_BECAME_UNREADABLE = "after the daemon registry became unreadable";
        public static final String REGISTRY_ENTRY_UNEXPECTEDLY_LOST = "after the daemon was no longer found in the daemon registry";
        public static final String REGISTRY_BECAME_INACCESSIBLE = "after the daemon registry became inaccessible";
    
        private final Daemon daemon;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/OutputFilesRepository.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history;
    
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    
    import java.io.File;
    
    /**
     * A registry for files generated by the Gradle build.
     */
    public interface OutputFilesRepository {
        boolean isGeneratedByGradle(File file);
    
        void recordOutputs(Iterable<? extends FileSystemSnapshot> outputSnapshots);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 975 bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfigProvider.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.config;
    
    /**
     * A service that provides the build scan configuration.
     *
     * Obtained via the root project's gradle object's service registry.
     *
     * @since 4.0
     */
    public interface BuildScanConfigProvider {
    
        /**
         * Invoked by the scan plugin to “collect” the configuration.
         *
         * Will only be called once per build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/MethodModelRuleApplicationContext.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.inspect;
    
    import org.gradle.model.internal.core.ModelAction;
    import org.gradle.model.internal.core.ModelPath;
    import org.gradle.model.internal.registry.ModelRegistry;
    
    public interface MethodModelRuleApplicationContext {
        ModelRegistry getRegistry();
    
        /**
         * Contextualizes the given action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/NodeAtState.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.ModelNode;
    import org.gradle.model.internal.core.ModelPath;
    
    class NodeAtState implements Comparable<NodeAtState> {
        public final ModelPath path;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundModelRulesException.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.api.GradleException;
    import org.gradle.model.internal.report.unbound.UnboundRule;
    import org.gradle.model.internal.report.unbound.UnboundRulesReporter;
    
    import java.io.PrintWriter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

    public class WorkerJvmMemoryInfoSerializer {
        public static SerializerRegistry create() {
            DefaultSerializerRegistry registry = new DefaultSerializerRegistry(false);
    
            registry.register(JvmMemoryStatus.class, new JvmMemoryStatusSerializer());
            return registry;
        }
    
        private static class JvmMemoryStatusSerializer implements Serializer<JvmMemoryStatus> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/DefaultLocalLibraryResolver.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.resolve;
    
    import org.gradle.model.ModelMap;
    import org.gradle.model.internal.registry.ModelRegistry;
    import org.gradle.model.internal.type.ModelType;
    import org.gradle.model.internal.type.ModelTypes;
    import org.gradle.platform.base.ComponentSpec;
    import org.gradle.platform.base.VariantComponent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top