Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 520 for Disable (0.11 sec)

  1. hack/make-rules/test-integration.sh

    }
    
    runTests() {
      kube::log::status "Starting etcd instance"
      CLEANUP_REQUIRED=1
      kube::etcd::start
      # shellcheck disable=SC2034
      local ETCD_SCRAPE_PID # Set in kube::etcd::start_scraping, used in cleanup
      kube::etcd::start_scraping
      kube::log::status "Running integration test cases"
    
      # shellcheck disable=SC2034
      # KUBE_RACE and MAKEFLAGS are used in the downstream make, and we set them to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. hack/golangci.yaml.in

        - "^zz_generated.*"
    
    output:
      sort-results: true
    
    issues:
      max-issues-per-linter: 0
      max-same-issues: 0
    
      # The default excludes disable the "should have comment or be unexported" check from revive.
      # We want that to be enabled, therefore we have to disable all default excludes and
      # add those back one-by-one that we want. See https://github.com/golangci/golangci-lint/issues/456#issuecomment-617470264
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtPsiBasedSymbolPointer.kt

                return createForSymbolFromPsi(ktElement, S::class)
            }
    
            @TestOnly
            public fun <T> withDisabledPsiBasedPointers(disable: Boolean, action: () -> T): T = try {
                disablePsiPointer = true
                disablePsiPointerFlag.set(disable)
                action()
            } finally {
                disablePsiPointerFlag.remove()
            }
    
            private inline fun ifDisabled(action: () -> Unit) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    To force file system watching for all builds (unless disabled with `--no-watch-fs`), add the following value to `gradle.properties`:
    
    ====
    .gradle.properties
    [source,properties]
    ----
    org.gradle.vfs.watch=true
    ----
    ====
    
    == Disable
    
    To disable file system watching:
    
    * use the `--no-watch-fs` flag
    * set `org.gradle.vfs.watch=false` in `gradle.properties`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/integration_test/custom_aggregator_op_test.py

    """Tests for Custom Aggregator op."""
    
    import tensorflow  # pylint: disable=unused-import
    
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as stablehlo_quant_config_pb2
    from tensorflow.compiler.mlir.quantization.tensorflow.calibrator import custom_aggregator_op_wrapper
    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    from tensorflow.python.framework import dtypes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. internal/grid/README.md

    Note that Responses sent for serialization are automatically reused for similar requests.
    If the response contains shared data it will cause issues, since each unique response is reused.
    To disable this behavior, use `(SingleHandler).WithSharedResponse()` to disable it.
    
    ## Streaming Requests
    
    Streams consists of an initial request with payload and allows for full two-way communication between the client and server.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/mix_tflite_vhlo.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer --emit-stablehlo-ops=true %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir --disable-vhlo-to-stablehlo=true - -o - | FileCheck %s
    // test stablehlo roundtrip
    
    module {
    func.func @main(%arg0: tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32> {
      %0 = "vhlo.logistic_v1"(%arg0) : (tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32>
      %1 = "tfl.exp"(%0) : (tensor<1x1x1x96xf32>) -> tensor<1x1x1x96xf32> loc("exp")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 907 bytes
    - Viewed (0)
  8. ci/official/envs/no_upload

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    # Disable ALL uploads of any kind.
    TFCI_ARTIFACT_FINAL_GCS_ENABLE=
    TFCI_ARTIFACT_FINAL_GCS_SA_PATH=
    TFCI_ARTIFACT_FINAL_GCS_URI=
    TFCI_ARTIFACT_FINAL_PYPI_ARGS=
    TFCI_ARTIFACT_FINAL_PYPI_ENABLE=
    TFCI_ARTIFACT_LATEST_GCS_URI=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 19 19:07:48 UTC 2024
    - 1012 bytes
    - Viewed (0)
  9. internal/config/api/help.go

    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         apiODirect,
    			Description: "set to enable or disable O_DIRECT for writes under special conditions. NOTE: do not disable O_DIRECT without prior testing" + defaultHelpPostfix(apiODirect),
    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         apiRootAccess,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 15 01:07:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/documentation/samples/build.gradle.kts

    }
    
    testFilesCleanup.reportOnly = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top