Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,462 for finalizes (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Finalize.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation finalizes the rule subject.
     * <p>
     * Finalize rules execute after {@link Mutate} rules, but before {@link Validate} rules.
     * The first parameter of the rule is the rule subject, which is mutable for the duration of the rule.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/edges/DependencyPredecessorsOnlyNodeSet.java

            dependencyPredecessors.add(fromNode);
            return this;
        }
    
        @Override
        public DependentNodesSet addFinalizer(Node finalizer) {
            return new ComplexDependentNodesSet(this).addFinalizer(finalizer);
        }
    
        @Override
        public DependentNodesSet addMustPredecessor(Node fromNode) {
            return new ComplexDependentNodesSet(this).addMustPredecessor(fromNode);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:17:10 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNode.java

            updateDependencyNodes(getDependencyNodes().addMustSuccessor(toNode));
            toNode.addMustPredecessor(this);
        }
    
        public void addFinalizingSuccessor(Node finalized) {
            finalizingSuccessors.add(finalized);
            finalized.addFinalizer(this);
        }
    
        public void addShouldSuccessor(Node toNode) {
            deprecateLifecycleHookReferencingNonLocalTask("shouldRunAfter", toNode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 29 13:54:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/HasConfigurableValueInternal.java

    public interface HasConfigurableValueInternal extends HasConfigurableValue {
        /**
         * Same semantics as {@link org.gradle.api.provider.HasConfigurableValue#finalizeValue()}, but finalizes the value of this object lazily, when the value is queried.
         * Implementations may then fail on subsequent changes, or generate a deprecation warning and ignore changes.
         */
        void implicitFinalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainSpecInternal.java

         * or when no properties are set.
         * <p>
         * A {@link #isConfigured() non-configured} spec is always valid.
         */
        boolean isValid();
    
        /**
         * Finalizes values of all spec properties, disallowing any further changes.
         */
        void finalizeProperties();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionPlan.java

        QueryableExecutionPlan getContents();
    
        /**
         * Calculates the execution plan for the current entry tasks. May be called multiple times.
         */
        void determineExecutionPlan();
    
        /**
         * Finalizes this plan once all nodes have been added. Must be called after {@link #determineExecutionPlan()}.
         */
        FinalizedExecutionPlan finalizePlan();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/PropertyValue.java

         */
        TaskDependencyContainer getTaskDependencies();
    
        /**
         * Finalizes the property value, if possible. This makes the value final, so that it no longer changes, but not necessarily immutable.
         */
        void maybeFinalizeValue();
    
        PropertyValue ABSENT = new PropertyValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/BuildOutputCleanupRegistry.java

         *
         * A file is owned by the build if it is registered as an output directly or within a directory registered as an output.
         */
        boolean isOutputOwnedByBuild(File file);
    
        /**
         * Finalizes the registered build outputs.
         *
         * After this call, it is impossible to register more outputs.
         */
        void resolveOutputs();
    
        /**
         * Gets the set of registered outputs as file collections.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            and:
            outputContains("Executing unzip transform...")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20195")
        def "producer task that finalizes a destroyer task will run after the destroyer even when ordered first (type: #type)"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/internal/Finalizer.java

         * point, Finalizer can stop running
         */
        if (!finalizableReferenceClass.getName().equals(FINALIZABLE_REFERENCE)) {
          throw new IllegalArgumentException("Expected " + FINALIZABLE_REFERENCE + ".");
        }
    
        Finalizer finalizer = new Finalizer(finalizableReferenceClass, queue, frqReference);
        String threadName = Finalizer.class.getName();
        Thread thread = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top