Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isPartOfExecutionGraph (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/NodeExecutionContext.java

         * part of executing the execution graph. This is happening when a node value is requested
         * without scheduling and executing the node first.
         */
        default boolean isPartOfExecutionGraph() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:17:14 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

            @Override
            public <T> T getService(Class<T> type) throws ServiceLookupException {
                return delegate.getService(type);
            }
    
            @Override
            public boolean isPartOfExecutionGraph() {
                return false;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNode.java

                TransformStepBuildOperation buildOperation = createBuildOperation(context);
                ProjectInternal owningProject = transformStep.getOwningProject();
                return (owningProject == null || !context.isPartOfExecutionGraph())
                    ? buildOperation.transform()
                    : buildOperationRunner.call(buildOperation);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top