Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 578 for converge (0.15 sec)

  1. tests/integration/ambient/wasm_test.go

    		if err := uninstallWasmExtension(t, pluginName, path); err != nil {
    			t.Fatal(err)
    		}
    		sendTraffic(t, check.ResponseHeader(injectedHeader, ""), retry.Converge(2))
    	})
    }
    
    func applyWasmConfig(ctx framework.TestContext, ns string, args map[string]any, path string) error {
    	return ctx.ConfigIstio().EvalFile(ns, args, path).Apply()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    # missing package, only to remove that package when resolving its dependencies.
    #
    # If we naively iterate 'go mod tidy' until the dependency graph converges, this
    # scenario may fail to converge.
    
    # The import graph used in this test looks like:
    #
    # m --- x
    #       |
    #       x_test --- y
    #
    # The module dependency graph of m is initially empty.
    # Modules x and y look like:
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

                   DeferActivationTransposeForMaxOp>(&ctx);
      if (failed(applyPatternsAndFoldGreedily(func_op, std::move(patterns)))) {
        func_op->emitWarning() << "Failed to converge patterns: " << getArgument();
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/pilot-dashboard.gen.json

             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Count of active and pending proxies managed by each instance.\nPending is expected to converge to zero.\n",
             "gridPos": {
                "h": 10,
                "w": 8,
                "x": 8,
                "y": 14
             },
             "id": 13,
             "interval": "1m",
             "options": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/runtime/runtime_test.go

    	// Calling GoroutineProfile twice in a row should find the same number of goroutines,
    	// but it's possible there are goroutines just about to exit, so we might end up
    	// with fewer in the second call. Try a few times; it should converge once those
    	// zombies are gone.
    	for i := 0; ; i++ {
    		n1, ok := GoroutineProfile(nil) // should fail, there's at least 1 goroutine
    		if n1 < 1 || ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/stats_test.go

    							util.PromDiff(t, prom, c, destinationQuery)
    							return err
    						}
    						// This query will continue to increase due to readiness probe; don't wait for it to converge
    						if _, err := prom.QuerySum(c, appQuery); err != nil {
    							util.PromDiff(t, prom, c, appQuery)
    							return err
    						}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

                                                  target_opset_);
        patterns.add<QuantizeAvgPoolOpPattern>(ctx);
      }
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        func.emitWarning("Failed to converge pattern at QuantizePass.");
      }
    
      if (!shouldKeepUnusedQdqPattern()) {
        RewritePatternSet patterns_2(&getContext());
        patterns_2.add<RemoveUnusedQdqPattern>(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceregistry_test.go

    		sort.Strings(expected)
    		if !reflect.DeepEqual(got[cluster], expected) {
    			return fmt.Errorf("wanted %v got %v. All endpoints: %+v", expected, got[cluster], got)
    		}
    		return nil
    	}, retry.Converge(2), retry.Timeout(time.Second*2), retry.Delay(time.Millisecond*10))
    }
    
    func expectServiceEndpointsFromIndex(t *testing.T, ei *model.EndpointIndex, svc *model.Service, port int, expected []EndpointResponse) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // is not the same as the result index, which means there is "crosstalk"
      // between 2 or more operands. In that case, we do an iterative propagation
      // of resource IDs till the results converge.
      bool change = true;
      while (change) {
        change = false;
        for (auto result : filter_resources(while_op->getResults())) {
          if (IsUnknownResource(result)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      // Ophint python converter converted tf node pattern.
      patterns.add<LegalizeUnidirectionalSequenceLstm,
                   LegalizeUnidirectionalSequenceRnn>(context);
    }
    
    bool applyPatterns(func::FuncOp func, ConversionTarget& target,
                       FrozenRewritePatternSet& frozenPatterns) {
      // Keep trying to convert.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top