Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,113 for Disable (0.17 sec)

  1. docs/en/docs/tutorial/metadata.md

    ```
    
    If you want to disable the OpenAPI schema completely you can set `openapi_url=None`, that will also disable the documentation user interfaces that use it.
    
    ## Docs URLs
    
    You can configure the two documentation user interfaces included:
    
    * **Swagger UI**: served at `/docs`.
        * You can set its URL with the parameter `docs_url`.
        * You can disable it by setting `docs_url=None`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/admission.go

    	}
    
    	return a.GenericAdmission.ApplyTo(c, informers, kubeClient, dynamicClient, features, pluginInitializers...)
    }
    
    // explicitly disable all plugins that are not in the enabled list
    func computePluginNames(explicitlyEnabled []string, all []string) (enabled []string, disabled []string) {
    	return explicitlyEnabled, sets.NewString(all...).Difference(sets.NewString(explicitlyEnabled...)).List()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/net/http/doc.go

    HTTP/2 protocol when using HTTPS. Programs that must disable HTTP/2
    can do so by setting [Transport.TLSNextProto] (for clients) or
    [Server.TLSNextProto] (for servers) to a non-nil, empty
    map. Alternatively, the following GODEBUG settings are
    currently supported:
    
    	GODEBUG=http2client=0  # disable HTTP/2 client support
    	GODEBUG=http2server=0  # disable HTTP/2 server support
    	GODEBUG=http2debug=1   # enable verbose HTTP/2 debug logs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

      portLevelMtls:
        8090:
          mode: DISABLE
        8092:
          mode: DISABLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: server
    spec:
      host: server.%s.svc.cluster.local
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
        portLevelSettings:
        - port:
            number: 8090
          tls:
            mode: DISABLE
        - port:
            number: 8092
          tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. hack/jenkins/test-dockerized.sh

    # Until all GOPATH references are removed from all build scripts as well,
    # explicitly disable module mode to avoid picking up user-set GO111MODULE preferences.
    # As individual scripts make use of go modules, they can explicitly set GO111MODULE=on
    export GO111MODULE=off
    
    # Install tools we need
    GO111MODULE=on go -C "./hack/tools" install gotest.tools/gotestsum
    
    # Disable coverage report
    export KUBE_COVER="n"
    # Set artifacts directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/wrap_converter.py

    """Wraps TFLite Converter interface with python lazy loader."""
    # We need to import pywrap_tensorflow prior to the converter wrapper.
    # pylint: disable=invalid-import-order,g-bad-import-order
    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    from tensorflow.compiler.mlir.lite.python import _pywrap_converter_api
    from tensorflow.compiler.mlir.quantization.tensorflow.python import py_function_lib
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 18:18:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

            testsuite._elem.remove(p.getparent())
          seen[key] += 1
        # Remove this testsuite if it doesn't have anything in it any more
        if len(testsuite) == 0:  # pylint: disable=g-explicit-length-test
          r._elem.remove(testsuite._elem)
      if len(r) > 0:  # pylint: disable=g-explicit-length-test
        result += r
    
    # Insert the number of failures for each test to help identify flakes
    # need to clarify for shard
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	RecommendedPluginOrder []string
    	// DefaultOffPlugins is a set of plugin names that is disabled by default
    	DefaultOffPlugins sets.Set[string]
    
    	// EnablePlugins indicates plugins to be enabled passed through `--enable-admission-plugins`.
    	EnablePlugins []string
    	// DisablePlugins indicates plugins to be disabled passed through `--disable-admission-plugins`.
    	DisablePlugins []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. releasenotes/notes/40561.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 18:52:14 UTC 2022
    - 202 bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

     */
    
    "use strict";
    
    /// CONFIGURATION 
    /// ====>
    
    var enablePan = 1; // 1 or 0: enable or disable panning (default enabled)
    var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled)
    var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled)
    var zoomScale = 0.2; // Zoom sensitivity
    
    /// <====
    /// END OF CONFIGURATION 
    
    var root = document.documentElement;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top