Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 935 for tcRange (0.23 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/Change.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    public interface Change {
        String getMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 726 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/11-language-change.yml

        id: informal-change
        attributes:
          label: "Informal Change"
          description: "Please also describe the change informally, as in a class teaching Go."
        validations:
          required: false
    
      - type: textarea
        id: go-backwards-compatiblity
        attributes:
          label: Is this change backward compatible?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/response-change-status-code.md

    # Response - Change Status Code
    
    You probably read before that you can set a default [Response Status Code](../tutorial/response-status-code.md){.internal-link target=_blank}.
    
    But in some cases you need to return a different status code than the default.
    
    ## Use case
    
    For example, imagine that you want to return an HTTP status code of "OK" `200` by default.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/response-change-status-code.md

    Alejandra <******@****.***> 1707249383 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Feb 06 19:56:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. docs/de/docs/advanced/response-change-status-code.md

    Nils Lindemann <******@****.***> 1711829938 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:58 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskIntegrationTest.groovy

                }
            """
    
            // Cache original
            withBuildCache().run "foo"
    
            // Fail with a change
            executer.withStackTraceChecksDisabled()
            withBuildCache().fails "foo", "-Pfail", "-Pchange"
    
            // Re-running without change should load from cache
            when:
            withBuildCache().run "foo"
            then:
            skipped ":foo"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 17:51:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. releasenotes/notes/push-cds-on-auto-passthrough-gateway-change.yaml

    Jacek Ewertowski <******@****.***> 1715273579 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:59 UTC 2024
    - 181 bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

        def change = Mock(Change)
        def visitor = Mock(ChangeVisitor)
    
        def "detects no change between empty current and previous"() {
            when:
            detector.visitChangesSince([:], [:], "test", visitor)
            then:
            0 * _
        }
    
        def "detects no change between the same one item"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

        public ChangeTypeInternal getType() {
            return change;
        }
    
        @Override
        public boolean isAdded() {
            return change == ChangeTypeInternal.ADDED;
        }
    
        @Override
        public boolean isModified() {
            return change == ChangeTypeInternal.MODIFIED;
        }
    
        @Override
        public boolean isRemoved() {
            return change == ChangeTypeInternal.REMOVED;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

            inputChanges.getFileChanges(classesDir)
                .filter { change -> change.fileType == FileType.FILE }
                .forEach { change ->
                    when {
                        change.normalizedPath.endsWith(".class") -> handleClassChange(change, superTypes)
                        // "instrumented-classes.txt" is always just one in a classes dir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top