Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for Trailing (0.56 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/TestRetryPluginSmokeTest.groovy

        }
    
        static void assertHasFlakyOutput(BuildResult result) {
            def output = result.output
            assert output.findAll("flaky\\(\\) FAILED").size() == 1
            assert output.findAll("failing\\(\\) FAILED").size() == 3
            assert output.contains("6 tests completed, 4 failed")
        }
    
        private TestFile testSourceFile() {
            file("src/test/java/org/acme/AcmeTest.java") << """
    package org.acme;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Performs post-calibration graph transformation as part of post-training
    // static-range quantization.
    //
    // The resulting `ModuleOp` contains quantized StableHLO ops serialized in
    // `TF::XlaCallModuleOp`s. They are quantized using the statistics collected
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/tf-tfl-translate-tf-quantize.mlir

    //RUN: tf_tfl_translate --post-training-quantization --enable-stablehlo-conversion --input-mlir --output-mlir %s -o - | FileCheck %s
    
    
    module {
    func.func @tfInplaceUpdate(%arg0: tensor<2x1x2xf32>) -> tensor<2x1x2xf32> {
      %1 = arith.constant dense<1> : tensor<1xi32>
      %2 = arith.constant dense<2.0> : tensor<1x1x2xf32>
      %3 = "tf.InplaceUpdate"(%arg0, %1, %2) {device = ""}
        : (tensor<2x1x2xf32>, tensor<1xi32>, tensor<1x1x2xf32>) -> tensor<2x1x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    			assert.Equal(t, tt.want, calculateCPUMaximum(&tt.cpuLimit, tt.cpuCount))
    		})
    	}
    }
    
    func TestCalculateWindowsResources(t *testing.T) {
    	// TODO: remove skip once the failing test has been fixed.
    	t.Skip("Skip failing test on Windows.")
    
    	_, _, fakeRuntimeSvc, err := createTestRuntimeManager()
    	require.NoError(t, err)
    
    	tests := []struct {
    		name     string
    		cpuLim   resource.Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_windows_test.go

    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    func TestMakeMountsWindows(t *testing.T) {
    	// TODO: remove skip once the failing test has been fixed.
    	t.Skip("Skip failing test on Windows.")
    	container := v1.Container{
    		VolumeMounts: []v1.VolumeMount{
    			{
    				MountPath: "c:/etc/hosts",
    				Name:      "disk",
    				ReadOnly:  false,
    			},
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionDynamicPomIntegrationTest.groovy

            fails 'clean', 'build'
    
            then:
            // when tests fail, jar may not exist
            failure.assertHasDescription("Execution failed for task ':test'.")
            failure.assertHasCause("There were failing tests.")
        }
    
        def "singleModule with different source and target"() {
            def source = Jvm.current().javaVersion.previous() as JavaVersion
            def target = Jvm.current().javaVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DetailedExecutionFailure.groovy

            this.failure = failure;
        }
    
        public assertTestsFailed() {
            failure
                .assertHasDescription("Execution failed for task ':test'.")
                .assertThatCause(startsWith("There were failing tests"));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

    import org.junit.Rule
    import spock.lang.Specification
    
    class DaemonDiagnosticsTest extends Specification {
    
        @Rule TestNameTestDirectoryProvider temp = new TestNameTestDirectoryProvider(getClass())
    
        def "tailing the daemon log is always safe"() {
            given:
            def diagnostics = new DaemonDiagnostics(new File("does not exist"), 123)
    
            when:
            def description = diagnostics.describe()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/TryTest.groovy

            expect:
            Try.successful(10).successful
        }
    
        def "failure is mot successful"() {
            expect:
            !Try.failure(new RuntimeException()).successful
        }
    
        def "converts failing callable"() {
            def failure = new Exception("Failure")
            def runtimeFailure = new RuntimeException("Runtime exception")
    
            expect:
            Try.ofFailable { throw failure } == Try.failure(failure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/03-gopls.yml

        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is better. A failing unit test is the best."
        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
          required: true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top