Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for localState (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/LocalState.java

     *
     * <p>Local state is removed when the task is loaded from cache.</p>
     *
     * @since 4.3
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface LocalState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LocalStateFixture.groovy

                        outputs.dir("build")
                        localState.register(localStateFile)
                        doLast { $action }
                    }
                """
            } else {
                """
                    @CacheableTask
                    class CustomTask extends DefaultTask {
                        @OutputDirectory File outputDir
                        @LocalState File localStateFile
                        @TaskAction run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 08:00:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. dbflute_fess/dfprop/basicInfoMap.dfprop

        # o dbfluteSystemFinalTimeZone: (NotRequired - Default null)
        #  The ID of time-zone for DBFlute system.
        #  basically for e.g. DisplaySql, Date conversion, LocalDate mapping and so on...
        #
        #; dbfluteSystemFinalTimeZone = GMT
        # - - - - - - - - - -/
    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.2K bytes
    - Viewed (0)
Back to top