Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for Succeeded (0.4 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils_test.cc

      int32_t quantized_fraction;
      int32_t shift;
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(1.2, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 19661);
      EXPECT_EQ(shift, 1);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(15.5, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 31744);
      EXPECT_EQ(shift, 4);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(1, quantized_fraction, shift)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 05:58:41 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

        }
    
        def checkTestCases(int total, int succeeded, int failed) {
            checkSummaryRecord('Test Cases', total, succeeded, failed)
        }
    
        def checkAssertions(int total, int succeeded, int failed) {
            checkSummaryRecord('Assertions', total, succeeded, failed)
        }
    
        private def checkSummaryRecord(String name, int total, int succeeded, int failed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/uncountedterminatedpods.go

    )
    
    // UncountedTerminatedPodsApplyConfiguration represents an declarative configuration of the UncountedTerminatedPods type for use
    // with apply.
    type UncountedTerminatedPodsApplyConfiguration struct {
    	Succeeded []types.UID `json:"succeeded,omitempty"`
    	Failed    []types.UID `json:"failed,omitempty"`
    }
    
    // UncountedTerminatedPodsApplyConfiguration constructs an declarative configuration of the UncountedTerminatedPods type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 15:31:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. pkg/controller/job/metrics/metrics.go

    	// based on the reason for their creation (i.e. if PodReplacementPolicy was specified)
    	// and the status of the creation (i.e. if the Pod creation succeeded or failed).
    	// Possible label values:
    	//   reason: new, recreate_terminating_or_failed, recreate_failed
    	//   status: succeeded, failed
    	JobPodsCreationTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem: JobControllerSubsystem,
    			Name:      "job_pods_creation_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/xla_sharding_util_test.cc

      xla::OpSharding sharding;
      EXPECT_TRUE(DecodeShardingAttribute("", sharding).succeeded());
      EXPECT_TRUE(DecodeShardingAttribute("manual", sharding).failed());
    }
    
    TEST(DecodeShardingAttributeTest, CheckManualShardString) {
      xla::OpSharding sharding;
      EXPECT_TRUE(DecodeShardingAttribute("{manual}", sharding).succeeded());
      EXPECT_TRUE(sharding.type() == sharding.MANUAL);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/lang_test.go

    		t.Error("compilation with -lang=go9.99 succeeded unexpectedly")
    	}
    
    	// This test will have to be adjusted if we ever reach 1.99 or 2.0.
    	if testLang(t, "go1.99", src, outfile) == nil {
    		t.Error("compilation with -lang=go1.99 succeeded unexpectedly")
    	}
    
    	if testLang(t, "go1.8", src, outfile) == nil {
    		t.Error("compilation with -lang=go1.8 succeeded unexpectedly")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

         * source MUST BE relative from the {@link RemoteRepository#getUrl()} root.
         *
         * @return {@code true} if operation succeeded, {@code false} if source does not exist.
         * @throws RuntimeException If failed (and not due source not exists).
         */
        boolean get(@Nonnull URI relativeSource, @Nonnull Path target);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/internal/saferio/io_test.go

    	t.Run("large", func(t *testing.T) {
    		_, err := ReadData(bytes.NewReader(input), 10<<30)
    		if err == nil {
    			t.Error("large read succeeded unexpectedly")
    		}
    	})
    
    	t.Run("maxint", func(t *testing.T) {
    		_, err := ReadData(bytes.NewReader(input), 1<<62)
    		if err == nil {
    			t.Error("large read succeeded unexpectedly")
    		}
    	})
    
    	t.Run("small-EOF", func(t *testing.T) {
    		_, err := ReadData(bytes.NewReader(nil), chunk-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.cc

      if (succeeded(MatchReduceToArgMinMaxType1(reduce_op, true, true)) ||
          succeeded(MatchReduceToArgMinMaxType1(reduce_op, false, true)) ||
          succeeded(MatchReduceToArgMinMaxType1(reduce_op, true, false)) ||
          succeeded(MatchReduceToArgMinMaxType1(reduce_op, false, false)) ||
          succeeded(MatchReduceToArgMinMaxType2(reduce_op, false)) ||
          succeeded(MatchReduceToArgMinMaxType2(reduce_op, true))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/build/ExecutionResultTest.groovy

        }
    
        def "can combine results"() {
            def failure1 = new RuntimeException()
            def failure2 = new RuntimeException()
            def successful = ExecutionResult.succeeded(12)
            def otherSuccessful = ExecutionResult.succeeded()
            def failed = ExecutionResult.failed(failure1)
            def otherFailed = ExecutionResult.failed(failure2)
            def allFailed = ExecutionResult.maybeFailed([failure1, failure2])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:42 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top