Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 276 for detective (0.51 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            useDirective(directive)
    
            then:
            found == ['test1', 'test2', 'test3', 'system1', 'system2', 'system3']
    
            where:
            directive << ["include", "import"]
        }
    
        def "ignores comment after directive"() {
            when:
            sourceFile << """
    #include "test1"  // A comment here
    #include "test2" /* A comment here */
    #include "test3" /*
       A comment here
    */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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