Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 668 for detective (0.21 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"desert":                               "\U0001f3dc\ufe0f",
    	"desert_island":                        "\U0001f3dd\ufe0f",
    	"desktop_computer":                     "\U0001f5a5\ufe0f",
    	"detective":                            "\U0001f575\ufe0f",
    	"diamond_shape_with_a_dot_inside":      "\U0001f4a0",
    	"diamonds":                             "\u2666\ufe0f",
    	"diego_garcia":                         "\U0001f1e9\U0001f1ec",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. test/directive.go

    //go:noinline // ERROR "misplaced compiler directive"
    
    //go:noinline // ERROR "misplaced compiler directive"
    package main
    
    //go:nosplit
    func f1() {}
    
    //go:nosplit
    //go:noinline
    func f2() {}
    
    //go:noinline // ERROR "misplaced compiler directive"
    
    //go:noinline // ERROR "misplaced compiler directive"
    var x int
    
    //go:noinline // ERROR "misplaced compiler directive"
    const c = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 06:22:23 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    		if check.file == nil {
    			check.pass.Reportf(pos, "//go:debug directive only valid in Go source files")
    		} else if check.file.Name.Name != "main" && !strings.HasSuffix(check.filename, "_test.go") {
    			check.pass.Reportf(pos, "//go:debug directive only valid in package main or test")
    		} else if !check.inHeader {
    			check.pass.Reportf(pos, "//go:debug directive only valid before package declaration")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/directive/directive.go

    package p
    
    // ERRORNEXT "//go:debug directive only valid in package main or test"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 19:25:52 UTC 2023
    - 104 bytes
    - Viewed (0)
  5. releasenotes/notes/protocol-detection-timeout.yaml

    kind: feature
    area: networking
    issue:
    - 24379
    releaseNotes:
    - |
      **Removed** the protocol detection timeout by default, reducing traffic failures during slow connections.
    upgradeNotes:
    - title: Protocol Detection Timeout Changes
      content: |
        In order to support permissive mTLS traffic as well as [automatic protocol detection](istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#automatic-protocol-selection),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-cni-ipv6-detection.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 36871
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 16 23:02:24 UTC 2022
    - 196 bytes
    - Viewed (0)
  7. releasenotes/notes/drop-protocol-detection.yaml

    John Howard <******@****.***> 1682620589 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:36:29 UTC 2023
    - 209 bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

          }
        },
    
        /**
         * Disables cycle detection. This option causes the factory to return unmodified lock
         * implementations provided by the JDK, and is provided to allow applications to easily
         * parameterize when cycle detection is enabled.
         *
         * <p>Note that locks created by a factory with this policy will not participate the
         * cycle detection performed by locks created by other factories.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

          }
        },
    
        /**
         * Disables cycle detection. This option causes the factory to return unmodified lock
         * implementations provided by the JDK, and is provided to allow applications to easily
         * parameterize when cycle detection is enabled.
         *
         * <p>Note that locks created by a factory with this policy will not participate the
         * cycle detection performed by locks created by other factories.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sec:auto_detection]]
    == Auto-detection of installed toolchains
    
    By default, Gradle automatically detects local JRE/JDK installations so no further configuration is required by the user.
    The following is a list of common package managers, tools, and locations that are supported by the JVM auto-detection.
    
    JVM auto-detection knows how to work with:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top