Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for detective (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/embed/embed.go

    //	print(string(data))
    //
    // # Directives
    //
    // A //go:embed directive above a variable declaration specifies which files to embed,
    // using one or more path.Match patterns.
    //
    // The directive must immediately precede a line containing the declaration of a single variable.
    // Only blank lines and ‘//’ line comments are permitted between the directive and the declaration.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. hack/update-vendor.sh

        )
      done
    
      # tidy to ensure require directives are added for indirect dependencies
      go mod tidy
    }
    
    function print_go_mod_section() {
      local directive="$1"
      local file="$2"
    
      if [ -s "${file}" ]; then
          echo "${directive} ("
          cat "$file"
          echo ")"
      fi
    }
    
    function group_directives() {
      local local_tmp_dir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/generate/generate.go

    	$GOOS
    		The execution operating system (linux, windows, etc.)
    	$GOFILE
    		The base name of the file.
    	$GOLINE
    		The line number of the directive in the source file.
    	$GOPACKAGE
    		The name of the package of the file containing the directive.
    	$GOROOT
    		The GOROOT directory for the 'go' command that invoked the
    		generator, containing the Go toolchain and standard library.
    	$DOLLAR
    		A dollar sign.
    	$PATH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. cmd/handler-utils.go

    }
    
    // isDirectiveValid - check if tagging-directive is valid.
    func isDirectiveValid(v string) bool {
    	// Check if set metadata-directive is valid.
    	return isDirectiveCopy(v) || isDirectiveReplace(v)
    }
    
    // Check if the directive COPY is requested.
    func isDirectiveCopy(value string) bool {
    	// By default if directive is not set we
    	// treat it as 'COPY' this function returns true.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top