Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 797 for aborted (0.31 sec)

  1. subprojects/core/src/test/groovy/org/gradle/BuildResultTest.java

            try {
                result.rethrowFailure();
                fail();
            } catch (GradleException e) {
                assertThat(e.getMessage(), equalTo("Build aborted because of an internal error."));
                assertThat(e.getCause(), sameInstance(failure));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 19 10:56:37 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. native-image-tests/src/main/kotlin/okhttp3/DotListener.kt

        testIdentifier: TestIdentifier,
        testExecutionResult: TestExecutionResult,
      ) {
        if (!testIdentifier.isContainer) {
          when (testExecutionResult.status!!) {
            TestExecutionResult.Status.ABORTED -> printStatus("-")
            TestExecutionResult.Status.FAILED -> printStatus("F")
            TestExecutionResult.Status.SUCCESSFUL -> printStatus(".")
          }
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/security/retry.go

    	retry.WithMax(5),
    	retry.WithBackoff(wrapBackoffWithMetrics(retry.BackoffExponentialWithJitter(100*time.Millisecond, 0.1))),
    	retry.WithCodes(codes.Canceled, codes.DeadlineExceeded, codes.ResourceExhausted, codes.Aborted, codes.Internal, codes.Unavailable),
    }
    
    // CARetryInterceptor is a grpc UnaryInterceptor that adds retry options, as a convenience wrapper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. hack/verify-openapi-docs-urls.sh

    SPECROOT="${KUBE_ROOT}/api/openapi-spec"
    SPECV3PATH="${SPECROOT}/v3"
    
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    mkdir -p "${_tmpdir}"
    trap 'rm -rf ${_tmpdir}' EXIT SIGINT
    trap "echo Aborted; exit;" SIGINT SIGTERM
    
    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. hack/update-kustomize.sh

    read -p "Update kubectl kustomize to these versions? [y/N] " -n 1 -r
    echo
    
    if [[ $REPLY =~ ^[Yy]$ ]]; then
      echo -e "\n${color_blue:?}Updating kubectl kustomize${color_norm:?}"
    else
      echo -e "\n${color_red:?}Update aborted${color_norm:?}"
      exit 1
    fi
    
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/kyaml "$LATEST_KYAML"
    ./hack/pin-dependency.sh sigs.k8s.io/kustomize/cmd/config "$LATEST_CONFIG"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    	return wait
    }
    
    // ConditionFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    type ConditionFunc func() (done bool, err error)
    
    // ConditionWithContextFunc returns true if the condition is satisfied, or an error
    // if the loop should be aborted.
    //
    // The caller passes along a context that can be used by the condition function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

                      .Attr("output_file_path", "/tmp/statistics.pbtxt")
                      .Finalize(node_def()));
      ASSERT_THAT(InitOp(),
                  StatusIs(tsl::error::ABORTED,
                           HasSubstr("The number of inputs must be  three times "
                                     "the size of the `ids` list.")));
    }
    
    TEST_F(CalibrationStatisticsSaverTest, WrongInputTypes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED;
    import static org.junit.platform.engine.TestExecutionResult.Status.ABORTED;
    import static org.junit.platform.engine.TestExecutionResult.Status.FAILED;
    
    /**
     * A {@link TestExecutionListener} that maps JUnit5 events to Gradle test events.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/net/http/fcgi/child.go

    var emptyBody = io.NopCloser(strings.NewReader(""))
    
    // ErrRequestAborted is returned by Read when a handler attempts to read the
    // body of a request that has been aborted by the web server.
    var ErrRequestAborted = errors.New("fcgi: request aborted by web server")
    
    // ErrConnClosed is returned by Read when a handler attempts to read the body of
    // a request after the connection to the web server has been closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

         *
         * @param target Compilation target platform.
         *
         * @param allowedErrorFilter Filter for the allowed errors.
         * Compilation will be aborted if there are errors that this filter rejects.
         *
         * @return Compilation result.
         *
         * The function rethrows exceptions from the compiler, wrapped in [KaCodeCompilationException].
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top