Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 602 for detective (0.13 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            then:
            executed(":producer", ":consumer")
    
            where:
            disabledTask << ["consumer", "producer"]
        }
    
        def "takes filters for inputs into account when detecting missing dependencies"() {
            file("src/main/java/MyClass.java").createFile()
            buildFile """
                task producer {
                    def outputFile = file("build/output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. test/directive2.go

    // ok: attached to f (duplicated yes, but ok)
    //go:noinline
    
    //go:noinline
    func f() {
    	//go:noinline // ERROR "misplaced compiler directive"
    	x := 1
    
    	//go:noinline // ERROR "misplaced compiler directive"
    	{
    		_ = x //go:noinline // ERROR "misplaced compiler directive"
    	}
    	var y int //go:noinline // ERROR "misplaced compiler directive"
    	//go:noinline // ERROR "misplaced compiler directive"
    	_ = y
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 06:22:23 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top