Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for joe (0.03 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/ExactVersionSelectorTest.groovy

            expect:
            accept("", "")
            accept("1.0", "1.0")
            accept("2.0", "2.0")
            accept("!@#%", "!@#%")
            accept("hey joe", "hey joe")
            !accept("1.0", "1.1")
            !accept("2.0", "3.0")
            !accept("!@#%", "%#@!")
            !accept("hey joe", "hoe hey")
        }
    
        def "does not accept candidate version that differs in separator"() {
            expect:
            !accept("1.0", "1_0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonGreeterTest.groovy

            def address = new MultiChoiceAddress(UUID.randomUUID(), 123, [])
    
            def outputStream = new ByteArrayOutputStream()
            def printStream = new PrintStream(outputStream)
            printStream.print("""hey joe!
    another line of output...
    """)
    
            new DaemonStartupCommunication().printDaemonStarted(printStream, 12, "uid", address, new File("12.log"))
            def output = new String(outputStream.toByteArray())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonDiagnosticsTest.groovy

            given:
            def log = temp.file("foo.log")
            log << "hey joe!"
            def diagnostics = new DaemonDiagnostics(log, 123)
    
            when:
            String desc = diagnostics.describe()
    
            then:
            desc.contains "123"
            desc.contains log.name
            desc.contains "hey joe!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

      <scm>
        <url>https://github.com/hamcrest/JavaHamcrest</url>
        <connection>scm:git:******@****.***:hamcrest/JavaHamcrest.git</connection>
      </scm>
    
      <developers>
        <developer>
          <id>joe.walnes</id>
          <name>Joe Walnes</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>nat.pryce</id>
          <name>Nat Pryce</name>
          <roles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumerTest.groovy

        def "consumes process output until EOF"() {
            def process = process('hey Joe!')
    
            when:
            consumer.connectStreams(process, "cool process", executor)
            consumer.start()
            consumer.stop()
            then:
            consumer.processOutput.trim() == 'hey Joe!'
        }
    
        def "consumes process greeting noticed in output"() {
            def output = """
               Hey!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContextTest.groovy

        }
    
        def "writes multiline value"() {
            when:
            context.writeValueOption("key", "Hey${SystemProperties.instance.getLineSeparator()}Joe!")
    
            then: writer.toString() == "-key 'Hey\\${SystemProperties.instance.getLineSeparator()}Joe!'${SystemProperties.instance.getLineSeparator()}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/net/mail/message_test.go

    		},
    		{
    			`A Group:Ed Jones <******@****.***>,joe@where.test,John <******@****.***>;`,
    			[]*Address{
    				{
    					Name:    "Ed Jones",
    					Address: "******@****.***",
    				},
    				{
    					Name:    "",
    					Address: "joe@where.test",
    				},
    				{
    					Name:    "John",
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC5322 4.4 obs-addr-list
    		{
    			` , joe@where.test,,John <******@****.***>,`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. src/html/template/multi_test.go

    	// User-defined function: test argument evaluator.
    	{"testFunc literal", `{{oneArg "joe"}}`, "oneArg=joe", tVal, true},
    	{"testFunc .", `{{oneArg .}}`, "oneArg=joe", "joe", true},
    }
    
    // These strings are also in testdata/*.
    const multiText1 = `
    	{{define "x"}}TEXT{{end}}
    	{{define "dotV"}}{{.V}}{{end}}
    `
    
    const multiText2 = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue33158.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    var GS string
    
    func M() string {
    	if s := getname("Fred"); s != "" {
    		return s
    	}
    	if s := getname("Joe"); s != "" {
    		return s
    	}
    
    	return string("Alex")
    }
    
    // getname can be any function returning a string, just has to be non-inlinable.
    
    //go:noinline
    func getname(s string) string {
    	return s + "foo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 18 17:24:59 UTC 2019
    - 478 bytes
    - Viewed (0)
  10. src/text/template/multi_test.go

    	// User-defined function: test argument evaluator.
    	{"testFunc literal", `{{oneArg "joe"}}`, "oneArg=joe", tVal, true},
    	{"testFunc .", `{{oneArg .}}`, "oneArg=joe", "joe", true},
    }
    
    // These strings are also in testdata/*.
    const multiText1 = `
    	{{define "x"}}TEXT{{end}}
    	{{define "dotV"}}{{.V}}{{end}}
    `
    
    const multiText2 = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top