Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for beforeSend (0.13 sec)

  1. src/testing/fuzz.go

    // When fuzzing, F.Fuzz does not return until a problem is found, time runs out
    // (set with -fuzztime), or the test process is interrupted by a signal. F.Fuzz
    // should be called exactly once, unless F.Skip or [F.Fail] is called beforehand.
    func (f *F) Fuzz(ff any) {
    	if f.fuzzCalled {
    		panic("testing: F.Fuzz called more than once")
    	}
    	f.fuzzCalled = true
    	if f.failed {
    		return
    	}
    	f.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/internal/trace/gc.go

    			}
    		}
    		if len(ps) == 0 {
    			// We can't start doing any analysis until we see what GOMAXPROCS is.
    			// It will show up very early in the trace, but we need to be robust to
    			// something else being emitted beforehand.
    			continue
    		}
    
    		switch ev.Kind() {
    		case EventRangeActive:
    			if seenSync {
    				// If we've seen a sync, then we can be sure we're not finding out about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    ====
    
    Note that we can only use the `db(...)` and `integTestImplementation(...)` notation within the `dependencies {}` block in the above example because both configurations are declared as delegated properties beforehand via the `creating()` method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    		rsc.expectations.ExpectCreations(logger, rsKey, diff)
    		logger.V(2).Info("Too few replicas", "replicaSet", klog.KObj(rs), "need", *(rs.Spec.Replicas), "creating", diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

        OpVisitorState op_to_visit = ops_to_visit.pop_back_val();
        Operation* curr_op = op_to_visit.op;
    
        Value token = op_to_visit.token;
        // Ops may be removed, so the next op is kept track of beforehand.
        Operation* next_op = curr_op->getNextNode();
    
        if (auto host_compute = dyn_cast<TF::_XlaHostComputeMlirOp>(curr_op)) {
          token = RewriteHostComputeOp(builder, host_compute, token);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

                                        METHOD_STATIC_RANGE_WEIGHT_ONLY_INT8) {
          // Skipping input type check for weight-only quantization as it can be
          // dequantized beforehand for the legacy scheme.
          has_quantized_types = true;
        } else {
          // Determines if all required float input/outputs are now quantized.
          // Either one of the criteria needs to meet.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

                                              BoolAttr adj_y) {
      // TensorFlow BatchMatMulOp allows the batch dimensions to be broadcastable
      // while the XlaDotV2Op doesn't. So we have to broadcast them beforehand.
      BroadcastBatchDimensionsForBatchMatMul(builder, loc, input, weight);
    
      // Both input and weight have the same rank after broadcasting.
      ShapedType weight_shape = mlir::cast<ShapedType>(weight.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle init --type java-library
    ----
    
    === Standardize and provision Gradle
    The built-in `gradle wrapper` task generates a script, `gradlew`, that invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    ----
    $ gradle wrapper --gradle-version=8.1
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. src/runtime/export_test.go

    func ReadCPUStats() CPUStats {
    	return work.cpuStats
    }
    
    func ReadMetricsSlow(memStats *MemStats, samplesp unsafe.Pointer, len, cap int) {
    	stw := stopTheWorld(stwForTestReadMetricsSlow)
    
    	// Initialize the metrics beforehand because this could
    	// allocate and skew the stats.
    	metricsLock()
    	initMetrics()
    
    	systemstack(func() {
    		// Donate the racectx to g0. readMetricsLocked calls into the race detector
    		// via map access.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    +
    This can be replaced by an inter-project task dependency in the corresponding Gradle build script, as demonstrated in the following example that assumes the "web" project's "compile" task is requires "util" to be built beforehand:
    +
    ====
    include::sample[dir="snippets/antMigration/multiProject/kotlin",files="web/build.gradle.kts[]"]
    include::sample[dir="snippets/antMigration/multiProject/groovy",files="web/build.gradle[]"]
    ====
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top