Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 251 for Answers (0.21 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/telemetry/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 04 17:57:25 UTC 2024
    - 913 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/groovy/app/src/main/java/org/sample/myapp/Main.java

    import org.sample.numberutils.Numbers;
    
    public class Main {
    
        public static void main(String... args) {
            new Main().printAnswer();
        }
    
        public void printAnswer() {
            String output = " The answer is " + Numbers.add(19, 23);
            System.out.println(output);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 316 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/kotlin/app/src/main/java/org/sample/myapp/Main.java

    import org.sample.numberutils.Numbers;
    
    public class Main {
    
        public static void main(String... args) {
            new Main().printAnswer();
        }
    
        public void printAnswer() {
            String output = " The answer is " + Numbers.add(19, 23);
            System.out.println(output);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 316 bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultBuildScanUserInputHandlerTest.groovy

            given:
            def question = 'Accept license?'
    
            when:
            def answer = buildScanUserInputHandler.askYesNoQuestion(question)
    
            then:
            1 * userInputHandler.askUser(_) >> { Function f -> Providers.ofNullable(f.apply(userQuestions)) }
            1 * userQuestions.askYesNoQuestion(question) >> input
            answer == input
    
            where:
            input << [true, false, null]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputHandler.java

    @ServiceScope(Scope.BuildSession.class)
    public interface UserInputHandler {
        /**
         * Prompts the user with 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
        @UsedByScanPlugin
        default Boolean askYesNoQuestion(String question) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSupportedTypesIntegrationTest.groovy

            buildFile << """
                class Oracle extends DefaultTask {
    
                    @Internal final Property<String> answer
    
                    Oracle() {
                        answer = project.objects.property(String)
                        answer.finalizeValueOnRead()
                        answer.set(
                            project.provider {
                                println 'Thinking...'
                                '42'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testfortran/testdata/testprog/fortran.go

    import "C"
    import (
    	"fmt"
    	"os"
    )
    
    func TheAnswer() int {
    	return int(C.the_answer())
    }
    
    func main() {
    	if a := TheAnswer(); a != 42 {
    		fmt.Fprintln(os.Stderr, "Unexpected result for The Answer. Got:", a, " Want: 42")
    		os.Exit(1)
    	}
    	fmt.Fprintln(os.Stdout, "ok")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 01:29:16 UTC 2023
    - 464 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/groovy/app/src/main/java/org/sample/myapp/Main.java

    public class Main {
    
        public static void main(String... args) {
            new Main().printAnswer();
        }
    
        public void printAnswer() {
            String output = Strings.concat(" The answer is    ", Numbers.add(19, 23));
            System.out.println(output);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 373 bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //
    // The go command will automatically download modules as needed during ordinary
    // execution. The "go mod download" command is useful mainly for pre-filling
    // the local cache or to compute the answers for a Go module proxy.
    //
    // By default, download writes nothing to standard output. It may print progress
    // messages and errors to standard error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top