Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 152 for result_types (0.25 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProviderTest.groovy

                assert r.results.any { TestMethodResult m ->
                    m.name == 'methodFoo' && m.resultType == TestResult.ResultType.SUCCESS
                }
                assert r.results.any { TestMethodResult m ->
                    m.name == 'methodFoo' && m.resultType == TestResult.ResultType.FAILURE
                }
            }
            0 * action._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/monitoring.go

    		for pt, applied := range pmap {
    			if applied {
    				envoyFilterStatus.With(nameType.Value(name)).With(patchType.Value(pt)).
    					With(resultType.Value(string(Applied))).Record(1)
    			} else {
    				envoyFilterStatus.With(nameType.Value(name)).With(patchType.Value(pt)).
    					With(resultType.Value(string(Applied))).Record(0)
    			}
    		}
    	}
    	envoyFilterStatusMap = make(map[string]map[string]bool)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestResultSerializer.java

            String displayName = decoder.readString();
            TestResult.ResultType resultType = TestResult.ResultType.values()[decoder.readSmallInt()];
            long duration = decoder.readSmallLong();
            long endTime = decoder.readLong();
            TestMethodResult methodResult = new TestMethodResult(id, name, displayName, resultType, duration, endTime);
            int failures = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      // All the rest: states, device.
      for (int i = 2; i < 5; ++i) {
        auto result_type =
            mlir::dyn_cast<RankedTensorType>(func_op.getResultTypes()[i]);
        outputs.push_back(CreatTfF32ConstOp(builder, result_type.getShape(), 0.0f,
                                            func_op.getLoc()));
        output_types.push_back(result_type);
      }
    
      // Update function signatures.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/TestEventLoggerTest.groovy

            eventLogger.afterTest(methodDescriptor, result)
    
            then:
            textOutputFactory.toString().count("PASSED") == 1
    
            when:
            textOutputFactory.clear()
            result.resultType = TestResult.ResultType.FAILURE
            eventLogger.afterTest(methodDescriptor, result)
    
            then:
            textOutputFactory.toString().count("PASSED") == 0
        }
    
        def "logs event if granularity matches"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:45:02 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

      if (x_type.getShape() != y_type.getShape()) return failure();
    
      auto result_type = squared_diff_op.getType();
      if (!result_type) return failure();
    
      auto sub_op =
          rewriter.create<TF::SubOp>(squared_diff_op.getLoc(), result_type, x, y);
      auto mul_op =
          rewriter.create<TF::MulOp>(squared_diff_op.getLoc(), result_type,
                                     sub_op.getResult(), sub_op.getResult());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

                }
                assert testInternal != null : String.format("Unexpected end event for %s", description);
                resultType = assumptionFailed.remove(description) ? TestResult.ResultType.SKIPPED : null;
            }
            resultProcessor.completed(testInternal.getId(), new TestCompleteEvent(endTime, resultType));
        }
    
        private static TestDescriptorInternal descriptor(Object id, Description description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

                processor.completed(testId, Stub(TestCompleteEvent) {
                    getResultType() >> TestResult.ResultType.FAILURE
                })
                processor.started(suiteDescriptor, startEvent)
                processor.completed(testId, Stub(TestCompleteEvent) {
                    getResultType() >> TestResult.ResultType.SUCCESS
                })
            }
        }
    
        def expectFirstTestSuiteContainsTestButSecondIsEmpty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

        const auto result_type = mlir::cast<TensorType>(op.getResult(0).getType());
        const SmallVector<int64_t> new_result_shape =
            Permute<int64_t>(result_type.getShape(), kNchwToNhwcPermutation);
    
        const TensorType new_result_type =
            result_type.cloneWith(new_result_shape, result_type.getElementType());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/worker/TestEventSerializerTest.groovy

            def event1 = new TestCompleteEvent(123L, TestResult.ResultType.SUCCESS)
            def event2 = new TestCompleteEvent(123L, null)
    
            when:
            def result1 = serialize(event1)
            def result2 = serialize(event2)
    
            then:
            result1 instanceof TestCompleteEvent
            result1.endTime == 123L
            result1.resultType == TestResult.ResultType.SUCCESS
            result2 instanceof TestCompleteEvent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top