Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for EntryPoints (0.27 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

            auto sym_attr = mlir::dyn_cast<FlatSymbolRefAttr>(attr);
            if (!sym_attr) break;
            entrypoints.erase(sym_attr.getValue());
          }
        }
    
        if (entrypoints.empty()) {
          return fail(module, "No entrypoints found");
        }
        if (entrypoints.size() == 1) {
          auto entrypoint = entrypoints.begin()->second;
          Builder builder(entrypoint);
          entrypoint.setName(builder.getStringAttr("main"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/behind-a-proxy.md

    <a href="https://github.com/containous/traefik/releases" class="external-link" target="_blank">⏬ Traefik</a>, ⚫️ 👁 💱, 👆 💪 ⚗ 🗜 📁 &amp; 🏃 ⚫️ 🔗 ⚪️➡️ 📶.
    
    ⤴️ ✍ 📁 `traefik.toml` ⏮️:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    👉 💬 Traefik 👂 🔛 ⛴ 9️⃣9️⃣9️⃣9️⃣ &amp; ⚙️ ➕1️⃣ 📁 `routes.toml`.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    Then create a file `traefik.toml` with:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    This tells Traefik to listen on port 9999 and to use another file `routes.toml`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. docs/zh/docs/advanced/behind-a-proxy.md

    <a href="https://github.com/containous/traefik/releases" class="external-link" target="_blank">下载 Traefik</a>,这是一个二进制文件,需要解压文件,并在 Terminal 中直接运行。
    
    然后创建包含如下内容的 `traefik.toml` 文件:
    
    ```TOML hl_lines="3"
    [entryPoints]
      [entryPoints.http]
        address = ":9999"
    
    [providers]
      [providers.file]
        filename = "routes.toml"
    ```
    
    这个文件把 Traefik 监听端口设置为 `9999`,并设置要使用另一个文件 `routes.toml`。
    
    !!! tip "提示"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. pkg/scheduler/scheduler_test.go

    	tests := []struct {
    		name string
    		// the plugin registration ordering must not matter, being map traversal random
    		entrypoints map[string]frameworkruntime.PluginFactory
    		wantErr     string
    	}{
    		{
    			name: "register indexer, no conflicts",
    			entrypoints: map[string]frameworkruntime.PluginFactory{
    				"AddIndexer": func(ctx context.Context, obj runtime.Object, handle framework.Handle) (framework.Plugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // There are some entry points that start with HLO->MHLO like
      // jax_to_tfl_flatbuffer.cc which can likely be updated to emit StableHLO
      // to be consistent with other entrypoints.
      pass_manager.addPass(mlir::mhlo::createHloLegalizeToStablehloPass());
    
      // Decompose CHLO into StableHLO ops
      // TODO(b/331843141): There are some CHLO's like TopK which we could instead
      // lower to TFL ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// local endpoints).
    	ServiceInternalTrafficPolicyLocal ServiceInternalTrafficPolicy = "Local"
    )
    
    // ServiceExternalTrafficPolicy describes the endpoint-selection policy for
    // traffic to external service entrypoints (NodePorts, ExternalIPs, and
    // LoadBalancer IPs).
    type ServiceExternalTrafficPolicy string
    
    const (
    	// ServiceExternalTrafficPolicyCluster routes traffic to all endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. RELEASE.md

        accepts a `return_attention_scores` argument. When set to True, the layer
        returns the attention scores as an additional output argument.
    *   Adds `tf.metrics.log_cosh` and `tf.metrics.logcosh` API entrypoints with the
        same implementation as their `tf.losses` equivalent.
    *   For Keras model, the individual call of `Model.evaluate` uses no cached data
        for evaluation, while `Model.fit` uses cached data when `validation_data`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top