Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,158 for DISABLE (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    === Disable for a build
    
    To disable the Daemon for a single build, pass the `--no-daemon` flag when you run a build:
    
    ----
    $ gradle <task> --no-daemon
    ----
    
    This flag overrides any settings that enable the Daemon in your project including the `gradle.properties` files.
    
    === Disable for a project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/api_template_v1.__init__.py

    import distutils as _distutils
    import importlib
    import inspect as _inspect
    import os as _os
    import site as _site
    import sys as _sys
    
    # pylint: disable=g-bad-import-order,protected-access,g-import-not-at-top
    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    from tensorflow.python.tools import module_util as _module_util
    from tensorflow.python.platform import tf_logging as _logging
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. src/sync/rwmutex.go

    // Happens-before relationships are indicated to the race detector via:
    // - Unlock  -> Lock:  readerSem
    // - Unlock  -> RLock: readerSem
    // - RUnlock -> Lock:  writerSem
    //
    // The methods below temporarily disable handling of race synchronization
    // events in order to provide the more precise model above to the race
    // detector.
    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog_test.go

    					},
    				},
    			},
    		},
    		{
    			name: "disable-accesslog",
    			push: env.PushContext(),
    			proxy: &model.Proxy{
    				ConfigNamespace: "default",
    				Labels:          map[string]string{"app": "test-disable-accesslog"},
    				Metadata:        &model.NodeMetadata{Labels: map[string]string{"app": "test-disable-accesslog"}},
    			},
    			tcp:      &tcp.TcpProxy{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/mlir_bridge_rollout_policy.cc

        case ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_DISABLED:
          return MlirBridgeRolloutPolicy::kDisabledByUser;
        default:
          // User did not explicitly enable or disable the bridge. For now, disable
          // the bridge.
          return MlirBridgeRolloutPolicy::kDisabledAfterGraphAnalysis;
      }
    }
    
    void LogGraphFeatures(const Graph& graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 23:11:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. common/config/.golangci-format.yml

      # Default: []
      exclude-files:
        - ".*\\.pb\\.go"
        - ".*\\.gen\\.go"
      # Maximum issues count per one linter.
      # Set to 0 to disable.
      # Default: 50
      max-issues-per-linter: 0
      # Maximum count of issues with the same text. Set to 0 to disable. Default is 3.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/custom-docs-ui-assets.md

    This could be useful if for example you live in a country that restricts some URLs.
    
    ### Disable the automatic docs
    
    The first step is to disable the automatic docs, as by default, those use the default CDN.
    
    To disable them, set their URLs to `None` when creating your `FastAPI` app:
    
    ```Python hl_lines="8"
    {!../../../docs_src/custom_docs_ui/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/g3doc/enable_mlir_bridge.md

    program (at least before any of your model computation).
    
    ```
    tf.config.experimental.enable_mlir_bridge()
    ```
    
    ## How to disable the old TPU bridge?
    
    Due to how TPU bridges are designed to work, you don't actually need to disable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 13 23:12:13 UTC 2020
    - 989 bytes
    - Viewed (0)
  9. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/ConsoleOutput.java

    /**
     * Specifies how to treat color and dynamic console output.
     */
    public enum ConsoleOutput {
        /**
         * Disable all color and rich output. Generate plain text only.
         */
        Plain,
        /**
         * Enable color and rich output when the current process is attached to a console, disable when not attached to a console.
         */
        Auto,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/kube-addons-main.sh

    # production use (see the Dockerfile)
    # Disabling shellcheck following files as the full path would be required.
    if [ -f "kube-addons.sh" ]; then
      # shellcheck disable=SC1091
      source "kube-addons.sh"
    elif [ -f "/opt/kube-addons.sh" ]; then
      # shellcheck disable=SC1091
      source "/opt/kube-addons.sh"
    else
      # If the required source is missing, we have to fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 24 18:35:44 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top