Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 834 for Tresults (0.13 sec)

  1. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

                    void beforeTest(TestDescriptor test) { println "START Test Case [\$test.className] [\$test.name]" }
                    void afterTest(TestDescriptor test, TestResult result) { println "FINISH Test Case [\$test.className] [\$test.name] [\$result.resultType] [\$result.testCount]" }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        result.location = wrapped_op->getLoc();
      } else if (parser.parseRegion(body)) {
        return failure();
      }
    
      IslandOp::ensureTerminator(body, parser.getBuilder(), result.location);
    
      // Get the results type for the island from the terminator operands.
      Operation &yield = body.back().back();
      result.types.reserve(yield.getNumOperands() + 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            BuildCancellationToken buildCancellationToken = new InternalCancellationTokenAdapter(cancellationToken);
            Object results = connection.run(action, buildCancellationToken, providerParameters);
            return new ProviderBuildResult<>(Cast.uncheckedNonnullCast(results));
        }
    
        /**
         * This is used by consumers 4.4 and later
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      }
    }
    
    // Finds ops in the paths from arguments to results. The ops is listed in an
    // order that the former ops shouldn't have any dependencies on the later ones.
    SmallVector<Operation*> FindOpsFromArgumentsToResults(
        const ArrayRef<Value> arguments, const ArrayRef<Value> results) {
      std::queue<Value> value_queue;
      for (Value result : results) {
        value_queue.push(result);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. src/crypto/tls/bogo_shim_test.go

    		t.Run(name, func(t *testing.T) {
    			if result.Actual == "FAIL" && result.IsUnexpected {
    				t.Fatal(result.Error)
    			}
    			if expectedResult, ok := assertResults[name]; ok && expectedResult != result.Actual {
    				t.Fatalf("unexpected result: got %s, want %s", result.Actual, assertResults[name])
    			}
    			delete(assertResults, name)
    			if result.Actual == "SKIP" {
    				t.Skip()
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                                    results.add(new CachedVariant(i, variantChain));
                                }
                            }
                        }
                    }
    
                    // If we have a result at this depth, don't bother building the next depth's states.
                    if (!results.isEmpty()) {
                        continue;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

      ASSERT_THAT(test_func, NotNull());
    
      Operation* mul_op = FindOperationOfType<TF::MulOp>(test_func);
      SmallVector<Value> results = ConstantFoldOpIfPossible(mul_op);
      EXPECT_THAT(results, SizeIs(1));
      EXPECT_TRUE(isa<TF::ConstOp>(results[0].getDefiningOp()));
    }
    
    TEST_F(ConstantFoldingTest, NotFoldingIdentity) {
      constexpr absl::string_view kModuleCode = R"mlir(
        module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/signature.go

    // Params returns the parameters of signature s, or nil.
    func (s *Signature) Params() *Tuple { return s.params }
    
    // Results returns the results of signature s, or nil.
    func (s *Signature) Results() *Tuple { return s.results }
    
    // Variadic reports whether the signature s is variadic.
    func (s *Signature) Variadic() bool { return s.variadic }
    
    func (s *Signature) Underlying() Type { return s }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        // Enqueue more than enough tasks to force reentrancy.
        for (int i = 0; i < 5; i++) {
          results.add(serializer.submit(Callables.returning(null), directExecutor()));
        }
    
        manualExecutorTask[0].run();
    
        for (Future<?> result : results) {
          if (!result.isCancelled()) {
            result.get(10, SECONDS);
          }
          // TODO(cpovirk): Verify that the cancelled futures are exactly ones that we expect.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.performance.results.GradleProfilerReporter;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.OutputDirSelector;
    import org.gradle.performance.results.OutputDirSelectorUtil;
    import org.gradle.profiler.BuildAction;
    import org.gradle.profiler.BuildContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top