Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,097 for DISABLE (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. hack/jenkins/benchmark-dockerized.sh

    GO111MODULE=on go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
    
    # Disable the Go race detector.
    export KUBE_RACE=" "
    # Disable coverage report
    export KUBE_COVER="n"
    export ARTIFACTS=${ARTIFACTS:-"${WORKSPACE}/artifacts"}
    export FULL_LOG="true"
    
    mkdir -p "${ARTIFACTS}"
    cd "${GOPATH}/src/k8s.io/kubernetes"
    
    ./hack/install-etcd.sh
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/peer_authentication_simulation_test.go

       matchLabels:
         app: foo
     mtls:
       mode: STRICT
     portLevelMtls:
       9000:
         mode: DISABLE
    ---`
    	paDisableWithStrictOnPort9000 := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
     name: default
    spec:
     selector:
       matchLabels:
         app: foo
     mtls:
       mode: DISABLE
     portLevelMtls:
       9000:
         mode: STRICT
    ---`
    	paDisableWithPermissiveOnPort9000 := `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. docs/multi-user/README.md

    ```
    mc admin policy attach myminio getonly --group=newgroup
    ```
    
    ### 4. Disable user
    
    Disable user `newuser`.
    
    ```
    mc admin user disable myminio newuser
    ```
    
    Disable group `newgroup`.
    
    ```
    mc admin group disable myminio newgroup
    ```
    
    ### 5. Remove user
    
    Remove the user `newuser`.
    
    ```
    mc admin user remove myminio newuser
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. buildscripts/rewrite-old-new.sh

    		buildscripts/verify-build.sh \
    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	"${WORK_DIR}/mc" cp \
    		buildscripts/verify-build.sh \
    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	"${WORK_DIR}/mc" cp \
    		buildscripts/verify-build.sh \
    		minio/healing-rewrite-bucket/ \
    		--disable-multipart --quiet
    
    	kill ${pid}
    	sleep 3
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. hack/lib/version.sh

          #
          # These regexes are painful enough in sed...
          # We don't want to do them in pure shell, so disable SC2001
          # shellcheck disable=SC2001
          DASHES_IN_VERSION=$(echo "${KUBE_GIT_VERSION}" | sed "s/[^-]//g")
          if [[ "${DASHES_IN_VERSION}" == "---" ]] ; then
            # shellcheck disable=SC2001
            # We have distance to subversion (v1.1.0-subversion-1-gCommitHash)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top