Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 668 for detective (0.22 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceFlakinessDataProvider.java

         * in the flakiness detection builds divided by the total number of runs of the scenario.
         *
         * <pre>
         *  SELECT TESTID, TESTPROJECT, AVG(CONVERT(CASEWHEN(DIFFCONFIDENCE &gt; 0.97, 1, 0), DECIMAL)) AS FAILURE_RATE,
         *  FROM TESTEXECUTION
         *  WHERE (CHANNEL = 'flakiness-detection-master' OR CHANNEL = 'flakiness-detection-release')
         *  GROUP BY TESTID
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

        val DO_NOT_CHECK_SYMBOL_RESTORE by directive(
            description = "Symbol restoring for some symbols in current test is not supported yet",
        )
    
        val DO_NOT_CHECK_SYMBOL_RESTORE_K1 by directive(
            description = "Symbol restoring for some symbols in current test is not supported yet in K1",
        )
    
        val DO_NOT_CHECK_SYMBOL_RESTORE_K2 by directive(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            }
    
            @Override
            public BuildOperationDescriptor.Builder description() {
                return BuildOperationDescriptor
                    .displayName("Toolchain detection")
                    .progressDisplayName("Detecting local java toolchains");
            }
        }
    
        @NonNullApi
        private static class Installations {
    
            private final Supplier<Set<InstallationLocation>> initializer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top