Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 251 for Answers (0.11 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

         * Asks the user a yes/no question and returns the answer. Requires that the user explicitly type "yes" or "no".
         *
         * @param question The text of the question.
         * @return the answer or {@code null} if not connected to a console.
         */
        @Nullable
        Boolean askYesNoQuestion(String question);
    
        /**
         * Asks the user a question that has a boolean result and returns the answer.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinInitScriptIntegrationTest.kt

                    """
                    apply(from = "./answer.gradle.kts")
                    """
                )
    
            withFile(
                "gradle/answer.gradle.kts",
                """
                rootProject {
                    val answer by extra { "42" }
                }
                """
            )
    
            withBuildScript(
                """
                val answer: String by extra
                println("*" + answer + "*")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pkg/dns/client/dns_test.go

    			answer.SetReply(msg)
    			answer.Rcode = dns.RcodeSuccess
    			if err := resp.WriteMsg(&answer); err != nil {
    				t.Fatalf("err: %s", err)
    			}
    		})
    	}
    	mux.HandleFunc("giant.", func(resp dns.ResponseWriter, msg *dns.Msg) {
    		answer := &dns.Msg{
    			Answer: giantResponse,
    		}
    		answer.SetReply(msg)
    		answer.Rcode = dns.RcodeSuccess
    		if err := resp.WriteMsg(answer); err != nil {
    			t.Fatalf("err: %s", err)
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                }
            """
    
            when:
            configurationCacheRun 'answer'
    
            then:
            '42' == file('build/dir/answer.txt').text
            outputContains '42'
    
            where:
            desc   | provider
            'dir'  | 'dir(computedDirName).map { it.file("answer.txt") }'
            'file' | 'file(computedDirName.map { "$it/answer.txt" })'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateNonConst.kt

    val QUESTION = "the ultimate question of life, the universe, and everything"
    val ANSWER = 42
    val QUESTION_MEANING = null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 15 15:45:22 UTC 2023
    - 228 bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    magnifying Powers ought to be as the Cubes of the square Roots of their lengths; which doth not answer to Experience. But the Errors of the Rays arising from the different Refrangibility, are as the Apertures of the Object-glasses; and thence to make Telescopes of various lengths, magnify with equal distinctness, their Apertures and Charges ought to be as the square Roots of their lengths; and this answers to Experience, as is well known. For Instance, a Telescope of 64 Feet in length, with an Aperture...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinSettingsScriptIntegrationTest.kt

            withFile(
                "gradle/my.settings.gradle.kts",
                """
                apply(from = "./answer.settings.gradle.kts")
                """
            )
    
            withFile(
                "gradle/answer.settings.gradle.kts",
                """
                gradle.rootProject {
                    val answer by extra { "42" }
                }
                """
            )
    
            withSettings(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateNonConst.txt

    expression: "The answer to ${QUESTION} is ${ANSWER}. The question is: ${QUESTION_MEANING}"
    constant: NOT_EVALUATED
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 148 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildScanUserInputFixture.groovy

            """
                apply plugin: BuildScanPlugin
    
                task $DUMMY_TASK_NAME
            """
        }
    
        static String answerOutput(Boolean answer) {
            "$ANSWER_PREFIX $answer"
        }
    
        static void writeToStdInAndClose(GradleHandle gradleHandle, byte[] input) {
            gradleHandle.stdinPipe.write(input)
            writeLineSeparatorToStdInAndClose(gradleHandle)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateConst.kt

    const val QUESTION = "the ultimate question of life, the universe, and everything"
    const val ANSWER = 42
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 15 15:45:22 UTC 2023
    - 175 bytes
    - Viewed (0)
Back to top