Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 631 for Succeeded (0.1 sec)

  1. src/cmd/internal/pkgpath/pkgpath_test.go

    			if err != nil {
    				if !test.fail {
    					t.Errorf("ToSymbolFunc(%q, %q): unexpected error %v", cmd, tmpdir, err)
    				}
    			} else if test.fail {
    				t.Errorf("ToSymbolFunc(%q, %q) succeeded but expected to fail", cmd, tmpdir)
    			} else if got, want := fn(input), test.mangled; got != want {
    				t.Errorf("ToSymbolFunc(%q, %q)(%q) = %q, want %q", cmd, tmpdir, input, got, want)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 18:26:59 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/branchelim.go

    // Those values are exempt from CMOV generation.
    func elimIf(f *Func, loadAddr *sparseSet, dom *Block) bool {
    	// See if dom is an If with one arm that
    	// is trivial and succeeded by the other
    	// successor of dom.
    	if dom.Kind != BlockIf || dom.Likely != BranchUnknown {
    		return false
    	}
    	var simple, post *Block
    	for i := range dom.Succs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. src/net/net_fake_test.go

    	dialed[0].Close()
    	dialed = dialed[1:]
    	t.Logf("closed one connection")
    	c, err = Dial(ln.Addr().Network(), ln.Addr().String())
    	if err == nil {
    		c.Close()
    		t.Logf("Dial succeeded")
    	} else {
    		t.Errorf("unexpected error from Dial: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/sync/rwmutex.go

    		runtime_SemacquireRWMutexR(&rw.readerSem, false, 0)
    	}
    	if race.Enabled {
    		race.Enable()
    		race.Acquire(unsafe.Pointer(&rw.readerSem))
    	}
    }
    
    // TryRLock tries to lock rw for reading and reports whether it succeeded.
    //
    // Note that while correct uses of TryRLock do exist, they are rare,
    // and use of TryRLock is often a sign of a deeper problem
    // in a particular use of mutexes.
    func (rw *RWMutex) TryRLock() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/prober.go

    		klog.V(3).InfoS("Probe succeeded with a warning", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name, "output", output)
    	} else {
    		klog.V(3).InfoS("Probe succeeded", "probeType", probeType, "pod", klog.KObj(pod), "podUID", pod.UID, "containerName", container.Name)
    	}
    	return results.Success, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:50:13 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

      ASSERT_THAT(test_func, NotNull());
    
      RewritePatternSet patterns(ctx_.get());
      patterns.add<ConstantFoldQuantizableOperands>(ctx_.get());
      EXPECT_TRUE(
          succeeded(applyPatternsAndFoldGreedily(test_func, std::move(patterns))));
    
      auto depthwise_conv_op =
          FindOperationOfType<TF::DepthwiseConv2dNativeOp>(test_func);
      EXPECT_THAT(depthwise_conv_op, NotNull());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            def startEvent = buildStartEvent(999, 'build started', buildDesc)
    
            def buildResult = buildSuccess(1, 2)
            def succeededEvent = buildFinishEvent(999, 'build succeeded', buildDesc, buildResult)
    
            adapter.onEvent(startEvent) // succeededEvent always assumes a previous startEvent
            adapter.onEvent(succeededEvent)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. src/sync/pool_test.go

    		}
    	}
    	// Check that at least some PopHeads succeeded. We skip this
    	// check in short mode because it's common enough that the
    	// queue will stay nearly empty all the time and a PopTail
    	// will happen during the window between every PushHead and
    	// PopHead.
    	if !testing.Short() && nPopHead == 0 {
    		t.Errorf("popHead never succeeded")
    	}
    }
    
    func TestNilPool(t *testing.T) {
    	catch := func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec_test.cc

      ASSERT_TRUE(module_op);
    
      const FailureOr<TF::XlaCallModuleOp> xla_call_module_op =
          FindFirstOpFromMainFunc<TF::XlaCallModuleOp>(*module_op);
      ASSERT_TRUE(succeeded(xla_call_module_op));
    
      const std::unique_ptr<OpQuantSpec> op_quant_spec =
          GetStableHloOpQuantSpec(*xla_call_module_op);
      ASSERT_THAT(op_quant_spec, NotNull());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_test.cc

          GetMlirModuleFromString(module_string, &context).value();
    
      PassManager pm(&context);
    
      if (mlir::failed(mlir::applyPassManagerCLOptions(pm))) return false;
      passes(&pm);
    
      return pm.run(module.get()).succeeded();
    }
    
    std::function<void(PassManager*)> legalizeTFPasses() {
      return [](PassManager* pm) {
        pm->addPass(mlir::mhlo::createLegalizeTFPass(
            /* legalize_chlo=*/true, llvm::StringRef("gpu/xpu"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top