Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for behavior (1.44 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslContainerIntegrationTest.kt

                tasks {
                    "help"()
                }
            """)
    
            executer.expectDocumentedDeprecationWarning(
                "Task 'help' found by String.invoke() notation. This behavior has been deprecated. " +
                    "This behavior is scheduled to be removed in Gradle 9.0. " +
                    "The \"name\"() notation can cause confusion with methods provided by Kotlin or the JDK. Use named(String) instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorPolicy.java

    /**
     * Controls the behavior of an executor when a task is executed and an executor is stopped.
     */
    public interface ExecutorPolicy {
        /**
         * Special behavior when a task is executed.
         *
         * The Runnable's run() needs to be called from this method.
         */
        void onExecute(Runnable command);
    
        /**
         * Special behavior when a task is executed.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            Provide a brief summary of the issue in the title above
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us how it should work
        validations:
          required: true
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior (optional)
          description: Explain the difference from current behavior
        validations:
          required: false
      - type: textarea
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/DirectorySensitivity.java

    /**
     * Specifies how a fingerprinter should handle directories that are found in a filecollection.
     */
    public enum DirectorySensitivity {
        /**
         * Whatever the default behavior is for the given fingerprinter.  For some fingerprinters, the
         * default behavior is to fingerprint directories, for others, they ignore directories by default.
         */
        DEFAULT(snapshot -> true),
        /**
         * Ignore directories
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStep.java

                    @Override
                    public void visitInputFileProperty(String propertyName, InputBehavior behavior, InputFileValueSupplier value) {
                        if (behavior.shouldSkipWhenEmpty()) {
                            visitor.visitInputFileProperty(propertyName, behavior, value);
                        }
                    }
                }));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/JdkIllegalReflectionTestWorkerIntegrationTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import spock.lang.Issue
    
    import static org.hamcrest.CoreMatchers.containsString
    
    /**
     * Ensures test behavior and actual application behavior are equivalent when
     * production code attempts to perform reflection on JDK internals.
     */
    class JdkIllegalReflectionTestWorkerIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeIdeTest.kt

     * limitations under the License.
     */
    
    package gradlebuild.integrationtests.tasks
    
    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that provides an IDE as environment for checking IDE and Gradle behavior during synchronization process.
     * These tests are running using `forking` executor, since current Gradle distribution has to be used as a Gradle version for IDE.
     */
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 10:30:14 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                return Violation.warning(member, warnings.join(" "))
            }
            return null
        }
    
        private static List<Boolean> parametersNullabilityOf(CtBehavior behavior) {
            def annotations = behavior.parameterAnnotations as List<Object[]>
            annotations.collect { Object[] pAnn ->
                pAnn.flatten().any { isNullableCtAnnotation(it) }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 10:04:28 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top