Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for localState (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractCommandLineOrderTaskIntegrationTest.groovy

                    produces.add(path)
                } else if (type == ProductionType.LOCAL_STATE) {
                    localState.add(path)
                } else {
                    throw new IllegalArgumentException()
                }
                return this
            }
    
            TaskFixture localState(String path) {
                produces(path, ProductionType.LOCAL_STATE)
                return this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/IncrementalCompileOptions.java

     */
    
    package org.gradle.api.tasks.scala;
    
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.LocalState;
    
    import javax.inject.Inject;
    
    /**
     * Options for incremental compilation of Scala code. Only used for compilation with Zinc.
     *
     * This is not sent to the compiler daemon as options.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/annotations/LocalStatePropertyAnnotationHandler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.properties.annotations;
    
    import org.gradle.api.tasks.LocalState;
    import org.gradle.internal.execution.model.annotations.ModifierAnnotationCategory;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 18 11:36:48 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesByGradleFileWatchingIntegrationTest.groovy

                        def localStateDir = localStateDirectory.get().asFile
                        localStateDir.mkdirs()
                        new File(localStateDir, "localState.txt").text = "localState"
                        outputFile.get().asFile.text = "output"
                    }
                }
    
                abstract class WithOutputFile extends DefaultTask {
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskLocalState.java

                visitor.visitLocalStateProperty(registeredPath);
            }
        }
    
        @Override
        public FileCollection getRegisteredFiles() {
            return fileCollectionFactory.resolving("localState", registeredPaths);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.Task.xml

                </tr>
                <tr>
                    <td>inputs</td>
                </tr>
                <tr>
                    <td>outputs</td>
                </tr>
                <tr>
                    <td>localState</td>
                </tr>
                <tr>
                    <td>destroyables</td>
                </tr>
                <tr>
                    <td>temporaryDir</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/AbstractExecutionPlanSpec.groovy

                return path.compareTo(taskInternal.identityPath)
            }
            task.outputs >> emptyTaskOutputs()
            task.destroyables >> emptyTaskDestroys()
            task.localState >> emptyTaskLocalState()
            task.inputs >> emptyTaskInputs()
            task.requiredServices >> emptyTaskRequiredServices()
            task.taskIdentity >> TestTaskIdentities.create(name, DefaultTask, project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top