Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 602 for detective (0.26 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

        )
    
        protected fun ignoreStabilityIfNeeded(directives: RegisteredDirectives, body: () -> Unit) {
            val directive = directives.doNotCheckSymbolRestoreDirective()
            val isStabilitySuppressed = directive != null && directives[directive].let { values ->
                values.isEmpty() || values.any { it == resolveKind }
            }
    
            try {
                body()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_go_version_missing.txt

    cp go.mod go.mod.orig
    
    # For modules whose go.mod file does not include a 'go' directive,
    # we assume the language and dependency semantics of Go 1.16,
    # but do not trigger “automatic vendoring” mode (-mod=vendor),
    # which was added in Go 1.14 and was not triggered
    # under the same conditions in Go 1.16 (which would instead
    # default to -mod=readonly when no 'go' directive is present).
    
    # For Go 1.16 modules, 'all' should prune out dependencies of tests,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/HACKING.md

    -------------------
    
    The //go:uintptrkeepalive directive must be followed by a function declaration.
    
    It specifies that the function's uintptr arguments may be pointer values that
    have been converted to uintptr and must be kept alive for the duration of the
    call, even though from the types alone it would appear that the object is no
    longer needed during the call.
    
    This directive is similar to //go:uintptrescapes, but it does not force
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/print/print.go

    	fmt.Println("%v", "hi")                     // ERROR "Println call has possible Printf formatting directive %v"
    	fmt.Println("%T", "hi")                     // ERROR "Println call has possible Printf formatting directive %T"
    	fmt.Println("0.0%")                         // correct (trailing % couldn't be a formatting directive)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

         */
        QUOTED,
        /**
         * An identifier that should be macro expanded. These appear in the body of a directive eg {@code #define HEADER ABC}.
         */
        MACRO,
        /**
         * A macro function invocation that should be expanded. These appear in the body of a directive and as arguments to another function eg {@code #define HEADER ABC(X, Y)}.
         */
        MACRO_FUNCTION,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGDetector.java

     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.testing.testng;
    
    import org.gradle.api.internal.tasks.testing.detection.AbstractTestFrameworkDetector;
    import org.gradle.api.internal.tasks.testing.detection.ClassFileExtractionManager;
    
    class TestNGDetector extends AbstractTestFrameworkDetector<TestNGTestClassDetector> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

        }
    
        def "reports download and detection options"() {
            given:
            defineJdks()
            toolchainConfiguration.isAutoDetectEnabled() >> false
            toolchainConfiguration.isDownloadEnabled() >> false
    
            when:
            task.showToolchains()
    
            then:
            outputProbe.value == """
    {identifier} + Options{normal}
         | Auto-detection:     {description}Disabled{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

    /**
     * Status of a feature in a build that affects Gradle behavior,
     * and may impose additional requirements on plugins or build scripts.
     * <p>
     * It is possible to check if the feature is {@link #getActive() active} in the current build.
     * The {@link #getRequested() requested} property shows whether the user opted in or opted out from the feature.
     *
     * @see BuildFeatures
     * @since 8.5
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. internal/config/browser/help.go

    			Description: `turn 'on' to set Strict-Transport-Security 'includeSubDomains' directive` + defaultHelpPostfix(browserHSTSIncludeSubdomains),
    			Optional:    true,
    			Type:        "boolean",
    		},
    		config.HelpKV{
    			Key:         browserHSTSPreload,
    			Description: `turn 'on' to set Strict-Transport-Security 'preload' directive` + defaultHelpPostfix(browserHSTSPreload),
    			Optional:    true,
    			Type:        "boolean",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

            }
    
            println("Determined baseline is: ${determinedBaselines.get()}")
        }
    
        /**
         * Coordinator build doesn't resolve to real commit version, they just pass "flakiness-detection-commit" as it is to worker build
         * "flakiness-detection-commit" is resolved to real commit id in worker build to disable build cache.
         *
         * @see PerformanceTest#NON_CACHEABLE_VERSIONS
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top