Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Converge (0.27 sec)

  1. pkg/test/framework/components/echo/calloptions.go

    	// converging by default, so long as the count is greater than the default converge value.
    	// This, of course, can be overridden if the user supplies their own converge value.
    	if o.Count > callConverge {
    		retryOpts = append(retryOpts, retry.Converge(1))
    	}
    
    	// Now append user-provided options to override the defaults.
    	o.Retry.Options = append(retryOpts, o.Retry.Options...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client_test.go

    		}
    		return nil
    	}, retry.Timeout(time.Second*5), retry.Converge(5))
    	retry.UntilOrFail(t, func() bool {
    		return store.Get(r.GroupVersionKind(), configMeta.Name, configMeta.Namespace) == nil
    	}, retry.Message("expected no items returned for unknown CRD"), retry.Timeout(time.Second*5), retry.Converge(5))
    }
    
    // Ensure that the client can run without CRDs present, but then added later
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/leaderelection_test.go

    		<-stop
    	})
    	for _, fn := range fns {
    		l.AddRunFunction(fn)
    	}
    	stop := make(chan struct{})
    	go l.Run(stop)
    
    	retry.UntilOrFail(t, func() bool {
    		return l.isLeader() == expectLeader
    	}, retry.Converge(5), retry.Delay(time.Millisecond*100), retry.Timeout(time.Second*10))
    	return l, stop
    }
    
    type fakeDefaultWatcher struct {
    	defaultRevision string
    }
    
    func (w *fakeDefaultWatcher) Run(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      pm.addNestedPass<FuncOp>(mlir::TFDevice::CreateDeviceAttributeToLaunchPass());
      // Running canonicalizer before decomposing resource ops in cluster helps the
      // latter pass to converge faster as it does not have to spend time folding
      // away dead ops.
      pm.addNestedPass<FuncOp>(mlir::createCanonicalizerPass());
      // Place DecomposeResourceOpsPass before TFExecutorConstantSinking pass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/wasmplugin_test.go

    	})
    }
    
    func resetCustomWasmConfig(ctx framework.TestContext, pluginName, path string) {
    	ctx.NewSubTest("Delete WasmPlugin " + pluginName).Run(func(t framework.TestContext) {
    		if err := uninstallWasmExtension(t, pluginName, path); err != nil {
    			t.Fatal(err)
    		}
    		sendTraffic(t, check.ResponseHeader(injectedHeader, ""), retry.Converge(2))
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/ztunnel-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",
             "fieldConfig": {
                "defaults": {
                   "custom": {
                      "fillOpacity": 10,
                      "gradientMode": "hue",
                      "showPoints": "never"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top