Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 251 for Answers (0.23 sec)

  1. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/string_templateConst.txt

    expression: "The answer to ${QUESTION} is ${ANSWER}."
    constant: "The answer to the ultimate question of life, the universe, and everything is 42."
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 173 bytes
    - Viewed (0)
  2. src/testdata/Isaac.Newton-Opticks.txt

    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/CallableExtensionsTest.kt

    import org.junit.Test
    import java.util.concurrent.Callable
    
    
    class CallableExtensionsTest {
    
        @Test
        fun `Callable#call can be called using invoke`() {
            val answer = "42"
            val answerCallable = Callable { answer }
    
            assertEquals(answer, answerCallable())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 974 bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Alice again.
    
      `No, I give it up,' Alice replied:  `what's the answer?'
    
      `I haven't the slightest idea,' said the Hatter.
    
      `Nor I,' said the March Hare.
    
      Alice sighed wearily.  `I think you might do something better
    with the time,' she said, `than waste it in asking riddles that
    have no answers.'
    
      `If you knew Time as well as I do,' said the Hatter, `you
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    Alice again.
    
      `No, I give it up,' Alice replied:  `what's the answer?'
    
      `I haven't the slightest idea,' said the Hatter.
    
      `Nor I,' said the March Hare.
    
      Alice sighed wearily.  `I think you might do something better
    with the time,' she said, `than waste it in asking riddles that
    have no answers.'
    
      `If you knew Time as well as I do,' said the Hatter, `you
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/term/CONTRIBUTING.md

    # Contributing to Go
    
    Go is an open source project.
    
    It is the work of hundreds of contributors. We appreciate your help!
    
    ## Filing issues
    
    When [filing an issue](https://golang.org/issue/new), make sure to answer these five questions:
    
    1.  What version of Go are you using (`go version`)?
    2.  What operating system and processor architecture are you using?
    3.  What did you do?
    4.  What did you expect to see?
    5.  What did you see instead?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 913 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            val remoteScript = """
    
                apply(from = "./gradle/answer.gradle.kts")
    
            """
    
            withFile(
                "gradle/answer.gradle.kts",
                """
    
                val answer by extra { "42" }
    
                """
            )
    
            MockWebServer().use { server ->
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            classFile.isFile()
            new ZipTestFixture(jarFile).with {
                hasDescendants("META-INF/MANIFEST.MF", "Thing.class", "answer.txt", "META-INF/some.Service")
                assertFileContent("answer.txt", "42")
            }
    
            when:
            file("src/main/resources/answer.txt").text = "forty-two"
            configurationCacheRun "build"
    
            then:
            assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/database/sql/driver/types_test.go

    	{c: Bool, in: 2, err: "sql/driver: couldn't convert 2 into type bool"},
    	{DefaultParameterConverter, now, now, ""},
    	{DefaultParameterConverter, (*int64)(nil), nil, ""},
    	{DefaultParameterConverter, &answer, answer, ""},
    	{DefaultParameterConverter, &now, now, ""},
    	{DefaultParameterConverter, i(9), int64(9), ""},
    	{DefaultParameterConverter, f(0.1), float64(0.1), ""},
    	{DefaultParameterConverter, b(true), true, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:53:24 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/network_test.go

    			s.hosts[domain]++
    			switch r.Question[0].Qtype {
    			case dns.TypeA:
    				msg.Answer = append(msg.Answer, &dns.A{
    					Hdr: dns.RR_Header{Name: domain, Rrtype: dns.TypeA, Class: dns.ClassINET, Ttl: s.ttl},
    					A:   net.ParseIP(fmt.Sprintf("10.0.0.%d", c)),
    				})
    			case dns.TypeAAAA:
    				// set a long TTL for AAAA
    				msg.Answer = append(msg.Answer, &dns.AAAA{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top