Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 816 for DISABLE (0.11 sec)

  1. doc/next/6-stdlib/99-minor/debug/elf/66054.md

    The `debug/elf` package now defines [PT_OPENBSD_NOBTCFI]. This [ProgType] is
    used to disable Branch Tracking Control Flow Integrity (BTCFI) enforcement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 173 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/testReport/groovy/buildSrc/src/main/groovy/myproject.java-conventions.gradle

    // tag::test-report[]
    plugins {
        id 'java'
    }
    
    // Disable the test report for the individual test task
    test {
        reports.html.required = false
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            canBeConsumed = true
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 676 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # Disable inheritance as this is an api owners file
    options:
      no_parent_owners: true
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 22:50:09 UTC 2024
    - 223 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/validation/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # Disable inheritance as this is an api owners file
    options:
      no_parent_owners: true
    approvers:
      - api-approvers
    reviewers:
      - api-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 22:50:09 UTC 2024
    - 223 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/scriptUninitializedTopLevelProperty2.kts

    // IGNORE_FIR
    // In FIR, there is currently a mismatch between the file's diagnostics and the individual elements' diagnostics, so we have to disable the
    // FIR test. It will be fixed by KT-63221.
    
    @Suppress("MUST_BE_INITIALIZED")
    val foo: Int
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 261 bytes
    - Viewed (0)
  6. .golangci.yml

    linters-settings:
      gofumpt:
        simplify: true
    
      misspell:
        locale: US
    
      staticcheck:
        checks: ['all', '-ST1005', '-ST1000', '-SA4000', '-SA9004', '-SA1019', '-SA1008', '-U1000', '-ST1016']
    
    linters:
      disable-all: true
      enable:
        - durationcheck
        - gocritic
        - gofumpt
        - goimports
        - gomodguard
        - govet
        - ineffassign
        - misspell
        - revive
        - staticcheck
        - tenv
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 02:17:03 UTC 2023
    - 689 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/build.sample.conf.template

    commands: [{
        executable: gradle
        args: build
        # We temporarily disable deprecation warnings until we can update the gradle/gradle wrapper
        # to the new version where projects created with build-init do not emit warnings.
        flags: "--warning-mode=none"
        expected-output-file: build.out
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 340 bytes
    - Viewed (0)
  8. releasenotes/notes/46553.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 46553
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 14:14:36 UTC 2023
    - 227 bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/BUILD

        ],
    )
    
    tf_cc_test(
        name = "libtf_tensor_test",
        size = "medium",
        srcs = ["tests/tensor_test.cc"],
        tags = ["no_oss"],  # TODO(b/193268458): Need to disable TFRT.
        deps = [
            ":libtf",
            "//tensorflow/c:tf_status_helper",
            "//tensorflow/c/eager:abstract_context",
            "//tensorflow/c/eager:abstract_tensor_handle",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure.sh

    function get-credentials {
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H "Metadata-Flavor: Google" \
        "${GCE_METADATA_INTERNAL}/service-accounts/default/token" \
      | python3 -c 'import sys; import json; print(json.loads(sys.stdin.read())["access_token"])'
    }
    
    function valid-storage-scope {
      # shellcheck disable=SC2086
      curl ${CURL_FLAGS} \
        -H "Metadata-Flavor: Google" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
Back to top