Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 251 for Answers (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/src/test/java/HelloStepdefs.java

            System.out.println("Given");
        }
    
        @When("^I ask it to say hi and /five/six/seven")
        public void I_ask_it_to_say_hi() {
            System.out.println("When");
        }
    
        @Then("^it should answer with Howdy World")
        public void it_should_answer_with() {
            System.out.println("Then");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 542 bytes
    - Viewed (0)
  2. src/fmt/example_test.go

    	fmt.Printf("%v %t\n", truth, truth)
    	// Result: true true
    
    	// Integers print as decimals with %v and %d,
    	// or in hex with %x, octal with %o, or binary with %b.
    	answer := 42
    	fmt.Printf("%v %d %x %o %b\n", answer, answer, answer, answer, answer)
    	// Result: 42 42 2a 52 101010
    
    	// Floats have multiple formats: %v and %g print a compact representation,
    	// while %f prints a decimal point and %e uses exponential notation. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/tests/basicCli.out

    > Task :my-utils:number-utils:processResources NO-SOURCE
    > Task :my-utils:number-utils:classes
    > Task :my-utils:number-utils:jar
    > Task :app:compileJava
    > Task :app:classes
    
    > Task :app:run
    The answer is 42
    
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 515 bytes
    - Viewed (0)
  4. test/func7.go

    	return 1
    }
    
    func g() int {
    	if !calledf {
    		panic("BUG: func7 - called g before f")
    	}
    	return 0
    }
    
    func main() {
    	// gc used to evaluate g() before f().
    	if f() < g() {
    		panic("wrong answer")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 477 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/tests/compositeRootProject.out

    > Task :my-utils:number-utils:processResources NO-SOURCE
    > Task :my-utils:number-utils:classes
    > Task :my-utils:number-utils:jar
    > Task :my-app:app:compileJava
    > Task :my-app:app:classes
    
    > Task :my-app:app:run
    The answer is 42
    
    > Task :run
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 555 bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/project.go

    	return projectType{true, common.BadQuotaID, "", l}
    }
    
    func parseProjFile(f *os.File, parser func(l string) projectType) []projectType {
    	var answer []projectType
    	scanner := bufio.NewScanner(f)
    	for scanner.Scan() {
    		answer = append(answer, parser(scanner.Text()))
    	}
    	return answer
    }
    
    func readProjectFiles(projects *os.File, projid *os.File) projectsList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue48092.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Make sure that we can at least compile this code
    // successfully with -B. We can't ever produce the right
    // answer at runtime with -B, as the access must panic.
    
    package p
    
    type A [0]byte
    
    func (a *A) Get(i int) byte {
    	return a[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 31 21:49:48 UTC 2021
    - 413 bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputReaderTest.groovy

                instant.put
                userInputReader.putInput(response)
            }
            instant.read > instant.put
    
            where:
            response << [
                new UserInputReader.TextResponse("answer"),
                UserInputReader.END_OF_INPUT
            ]
        }
    
        def "does not block after end of input received"() {
            given:
            userInputReader.putInput(UserInputReader.END_OF_INPUT)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtraPropertiesExtensions.kt

     * by [initialValueProvider].
     *
     * Usage: `val answer by extra { 42 }`
     */
    inline operator fun <T> ExtraPropertiesExtension.invoke(initialValueProvider: () -> T): InitialValueExtraPropertyDelegateProvider<T> =
        invoke(initialValueProvider())
    
    
    /**
     * Returns a property delegate provider that will initialize the extra property to the given [initialValue].
     *
     * Usage: `val answer by extra(42)`
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/math/log10.go

    func Log2(x float64) float64 {
    	if haveArchLog2 {
    		return archLog2(x)
    	}
    	return log2(x)
    }
    
    func log2(x float64) float64 {
    	frac, exp := Frexp(x)
    	// Make sure exact powers of two give an exact answer.
    	// Don't depend on Log(0.5)*(1/Ln2)+exp being exactly exp-1.
    	if frac == 0.5 {
    		return float64(exp - 1)
    	}
    	return Log(frac)*(1/Ln2) + float64(exp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 873 bytes
    - Viewed (0)
Back to top