Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,174 for tuning (0.12 sec)

  1. pilot/pkg/features/tuning.go

    // limitations under the License.
    
    package features
    
    import (
    	"runtime"
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // Define performance tuning related features here.
    var (
    	MaxConcurrentStreams = env.Register(
    		"ISTIO_GPRC_MAXSTREAMS",
    		100000,
    		"Sets the maximum number of concurrent grpc streams.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. cni/pkg/install/testdata/list-no-istio.conflist

            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 508 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/net/62254.md

    The new type [KeepAliveConfig] permits fine-tuning the keep-alive
    options for TCP connections, via a new [TCPConn.SetKeepAliveConfig]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 205 bytes
    - Viewed (0)
  4. cni/pkg/install/testdata/list.conflist

          "ipam": {
            "type": "host-local",
            "subnet": "10.1.0.0/16",
            "gateway": "10.1.0.1"
          },
          "dns": {
            "nameservers": [ "10.1.0.1" ]
          }
        },
        {
          "type": "tuning",
          "sysctl": {
            "net.core.somaxconn": "500"
          }
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 494 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/fine_tuning_project_layout.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[fine_tuning_project_layout]]
    = Fine-Tuning the Project Layout
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 806 bytes
    - Viewed (0)
  6. cni/pkg/install/testdata/list.conflist.golden

            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
          "ambient_enabled": false,
          "cni_event_address": "",
          "dns": {},
          "ipam": {},
          "kubernetes": {
            "exclude_namespaces": [
              ""
            ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/list-with-istio.conflist

            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
          "kubernetes": {
            "cni_bin_dir": "/path/cni/bin",
            "kubeconfig": "/path/to/kubeconfig"
          },
          "name": "istio-cni",
          "plugin_log_level": "debug",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 724 bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/list-with-istio.conflist.golden

            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "type": "bridge"
        },
        {
          "sysctl": {
            "net.core.somaxconn": "500"
          },
          "type": "tuning"
        },
        {
          "ambient_enabled": false,
          "cni_event_address": "",
          "dns": {},
          "ipam": {},
          "kubernetes": {
            "exclude_namespaces": [
              ""
            ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/ConnectionPool.kt

     * share the same [Address] may share a [Connection]. This class implements the policy
     * of which connections to keep open for future use.
     *
     * @constructor Create a new connection pool with tuning parameters appropriate for a single-user
     * application. The tuning parameters in this pool are subject to change in future OkHttp releases.
     * Currently this pool holds up to 5 idle connections which will be evicted after 5 minutes of
     * inactivity.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaWorkspace.java

    import groovy.lang.DelegatesTo;
    import org.gradle.api.Action;
    import org.gradle.plugins.ide.api.XmlFileContentMerger;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning workspace details (*.iws file) of the IDEA plugin.
     * <p>
     * At the moment, the only practical way of manipulating the resulting content is via the withXml hook:
     *
     * <pre class='autoTested'>
     * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top