Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for howdy (0.04 sec)

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

    public class HelloStepdefs {
        @Given("^I have a hello app with Howdy and /four")
        public void I_have_a_hello_app_with() {
            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() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 542 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/src/test/resources/helloworld.feature

    Feature: Hello World /one
    
    @bar
    Scenario: Say hello /two/three
    Given I have a hello app with Howdy and /four
    When I ask it to say hi and /five/six/seven
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 192 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/customPlugin/groovy/consumer/build.gradle

    // tag::use-plugin[]
    plugins {
        id 'org.example.greeting' version '1.0-SNAPSHOT'
    }
    // end::use-plugin[]
    
    tasks.register('greeting', org.example.GreetingTask) {
        greeting = 'howdy!'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/base/customExternalTask/groovy/consumer/build.gradle

                url = uri(repoLocation)
            }
        }
        dependencies {
            classpath 'org.gradle:task:1.0-SNAPSHOT'
        }
    }
    
    tasks.register('greeting', org.gradle.GreetingTask) {
        greeting = 'howdy!'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 386 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/customPlugin/kotlin/consumer/build.gradle.kts

    // tag::use-plugin[]
    plugins {
        id("org.example.greeting") version "1.0-SNAPSHOT"
    }
    // end::use-plugin[]
    
    tasks.register<org.example.GreetingTask>("greeting") {
        greeting = "howdy!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/base/customExternalTask/kotlin/consumer/build.gradle.kts

                url = uri(repoLocation)
            }
        }
        dependencies {
            classpath("org.gradle:task:1.0-SNAPSHOT")
        }
    }
    
    tasks.register<org.gradle.GreetingTask>("greeting") {
        greeting = "howdy!"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 387 bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCustomExternalTaskIntegrationTest.groovy

            executer.beforeExecute {
                inDirectory(dslDir.file('consumer'))
            }
    
            when:
            succeeds('greeting')
    
            then:
            outputContains('howdy!')
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/strings/example_test.go

    	// Output: Hello, Gophers
    }
    
    func ExampleTrimPrefix() {
    	var s = "¡¡¡Hello, Gophers!!!"
    	s = strings.TrimPrefix(s, "¡¡¡Hello, ")
    	s = strings.TrimPrefix(s, "¡¡¡Howdy, ")
    	fmt.Print(s)
    	// Output: Gophers!!!
    }
    
    func ExampleTrimSuffix() {
    	var s = "¡¡¡Hello, Gophers!!!"
    	s = strings.TrimSuffix(s, ", Gophers!!!")
    	s = strings.TrimSuffix(s, ", Marmots!!!")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. src/encoding/xml/read_test.go

    		<Data>hello <!-- comment -->world</Data>
    		<Data2>howdy <!-- comment -->world</Data2>
    		</MyStruct>
    	`
    
    	var m MyStruct
    	if err := Unmarshal([]byte(xml), &m); err != nil {
    		t.Fatal(err)
    	}
    
    	if m.Data == nil || m.Attr == nil || m.Data.body != "hello world" || m.Attr.attr != "attr1" || m.Data2.body != "howdy world" || m.Attr2.attr != "attr2" {
    		t.Errorf("m=%#+v\n", m)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. src/net/smtp/smtp_test.go

    			send("250 Ok")
    		case "RCPT TO:<******@****.***>":
    			send("250 Ok")
    		case "DATA":
    			send("354 send the mail data, end with .")
    			send("250 Ok")
    		case "Subject: test":
    		case "":
    		case "howdy!":
    		case ".":
    		case "QUIT":
    			send("221 127.0.0.1 Service closing transmission channel")
    			return nil
    		default:
    			t.Fatalf("unrecognized command during TLS: %q", s.Text())
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top