Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 530 for Tresults (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    LogicalResult CollectAndGroupClusterOps(Block* block, ClusterMap* clusters) {
      LogicalResult result = HasValidDeviceTypeAttribute(block);
      if (failed(result)) return result;
    
      for (Operation& op : *block) {
        LogicalResult result =
            mlir::TF::HasValidCompilationAndReplicationAttributes(op);
        if (failed(result)) return result;
    
        // Skip ops with non-TPU device type, they are handled elsewhere.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	for i, v := range policy.Spec.Validations {
    		results := c.CheckExpression(ctx, v.Expression)
    		if len(results) != 0 {
    			warnings = append(warnings, v1.ExpressionWarning{
    				FieldRef: fieldRef.Index(i).Child("expression").String(),
    				Warning:  results.String(),
    			})
    		}
    		// Note that MessageExpression is optional
    		if v.MessageExpression == "" {
    			continue
    		}
    		results = c.CheckExpression(ctx, v.MessageExpression)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. cmd/metacache-set.go

    	if serverDebugLog {
    		console.Debugln(data...)
    	}
    }
    
    // gatherResults will collect all results on the input channel and filter results according
    // to the options or to the current bucket ILM expiry rules.
    // Caller should close the channel when done.
    // The returned function will return the results once there is enough or input is closed,
    // or the context is canceled.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            then:
            result.assertTaskExecuted(":transitive:test")
            result.assertTaskExecuted(":direct:test")
            result.assertTaskExecuted(":application:test")
            result.assertTaskExecuted(":transitive:integTest")
            result.assertTaskExecuted(":application:integTest")
            result.assertTaskExecuted(":application:testAggregateTestReport")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

            getElementTypeOrSelf(operand.get().getType()));
        Value result = operand.get();
        if (is_unsupported_type && result.getParentBlock() != &body &&
            !is_used_for_resource_write) {
          // Pass through result.
          new_results.push_back(result);
        } else {
          // This result will be populated with the new result after rewriting the
          // cluster op.
          new_results.push_back(nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      // `op`, and bypass all result transposes.
      Location loc = op->getLoc();
    
      // Move constant op defining result permutation to the beginning of the block.
      permutation_op.getOperation()->moveBefore(&op->getBlock()->front());
    
      // Bypass Transpose nodes for all results.
      for (OpResult result : op->getResults()) {
        result.setType(
            cast<TransposeOp>(*result.getUsers().begin()).getY().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager_test.go

    	m.readinessManager.Set(kubecontainer.ParseContainerID(probedUnready.ContainerID), results.Failure, &v1.Pod{})
    	m.startupManager.Set(kubecontainer.ParseContainerID(startedNoReadiness.ContainerID), results.Success, &v1.Pod{})
    	m.readinessManager.Set(kubecontainer.ParseContainerID(terminated.ContainerID), results.Success, &v1.Pod{})
    
    	m.UpdatePodStatus(&v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. pkg/kube/krt/collection_test.go

    	cc.Update(&corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: "switch", Labels: lblBar}})
    	assert.EventuallyEqual(t, fetcherSorted(Results), []Result{{NewNamed(pod), []string{"bar1", "foo1", "switch"}}})
    
    	cc.Update(&corev1.ConfigMap{ObjectMeta: metav1.ObjectMeta{Name: "switch", Labels: nil}})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

          auto matched =
              policy->MatchAndUpdateConstraints(op, results, operands.Reset());
          if (succeeded(matched)) {
            updated = true;
            break;
          }
        }
    
        // Signal a failure if could not propagate non-empty constraints on the
        // operation results to the operands.
        if (!updated && !results.Empty()) {
          if (emit_remarks) {
            std::string err_msg;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top