Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,484 for due (0.02 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            e.message == 'Failed to handle all HTTP requests.'
            e.causes.message == [
                'Failed to handle GET /a due to a timeout waiting for other requests. Waiting for 1 further requests, received [GET /a], released [], not yet received [GET /b]',
                'Failed to handle GET /b due to a previous timeout. Waiting for 0 further requests, received [GET /a, GET /b], released [], not yet received []'
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/RemovalCause.java

          return true;
        }
      },
    
      /**
       * The entry was evicted due to size constraints. This can occur when using {@link
       * CacheBuilder#maximumSize} or {@link CacheBuilder#maximumWeight}.
       */
      SIZE {
        @Override
        boolean wasEvicted() {
          return true;
        }
      };
    
      /**
       * Returns {@code true} if there was an automatic removal due to eviction (the cause is neither
       * {@link #EXPLICIT} nor {@link #REPLACED}).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. test/codegen/stack.go

    func KeepWanted(t *T) {
    	*t = T{A: t.A, B: t.B, C: t.C, D: t.D}
    }
    
    // Check that small array operations avoid using the stack (issue #15925).
    
    // Notes:
    // - 386 fails due to spilling a register
    // - arm & mips fail due to softfloat calls
    // amd64:"TEXT\t.*, [$]0-"
    // arm64:"TEXT\t.*, [$]0-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    func ArrayAdd64(a, b [4]float64) [4]float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. releasenotes/notes/49713.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 206 bytes
    - Viewed (0)
  5. releasenotes/notes/46880.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 46859
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 23:35:29 UTC 2023
    - 233 bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/TaskOutcome.java

         */
        FAILED,
    
        /**
         * The task was not executed, as its output was up to date.
         */
        UP_TO_DATE,
    
        /**
         * The task was not executed due to some reason.
         *
         * For Gradle version < 3.4, a task may be skipped if it had no work to do (e.g. no source to compile).
         */
        SKIPPED,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                       "({languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific}) from 'https://exoticJavaToolchain.com/java-99', " +
                       "due to: Could not HEAD 'https://exoticJavaToolchain.com/java-99'.).")
        }
    
        def "downloaded JDK is checked against the spec"() {
            given:
            def jdkRepository = new JdkRepository(JavaVersion.VERSION_17)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. releasenotes/notes/44388.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 44385
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 14 19:45:35 UTC 2023
    - 239 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

            ["b", "c"]              | ["a", "b", "c", "d"]
            ["b", "c"]              | ["a", "b", "c", "d", "b", "c", "e"]
        }
    
        def "failing lines contained in comparison due to too small actual line count: #expectedLines vs #actualLines"() {
            when:
            comparer.assertLinesContainedIn(expectedLines, actualLines)
    
            then:
            def e = thrown(exception)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/InvalidManagedModelElementTypeException.java

            out.append("Invalid managed model type ").append(type).append(": ").append(message);
    
            if (extractionContext.getParent() != null) {
                out.append('\n');
                out.append("The type was analyzed due to the following dependencies:\n");
                createPathString(extractionContext, out);
            }
    
            return out.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top