Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TestThree (0.14 sec)

  1. src/cmd/go/testdata/script/test_shuffle.txt

    go test -v -shuffle=43 -count=4 foo_test.go
    stdout '^-test.shuffle 43'
    stdout '(?s)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne'
    
    go test -v -bench=. -shuffle=44 -count=2 foo_test.go
    stdout '^-test.shuffle 44'
    stdout '(?s)TestOne(.*)TestThree(.*)TestTwo(.*)TestOne(.*)TestThree(.*)TestTwo(.*)BenchmarkTwo(.*)BenchmarkOne(.*)BenchmarkThree(.*)'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:46:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/project-dynamism/pom-interp.xml

        <plugins>
          <plugin>
            <artifactId>my-plugin</artifactId>
            <configuration>
              <testOne>${project.groupId}</testOne>
              <testTwo>${pom.groupId}</testTwo>
              <testThree>${groupId}</testThree>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 903 bytes
    - Viewed (0)
  3. src/encoding/xml/read_test.go

    	}
    }
    
    const OK = "OK"
    const withoutNameTypeData = `
    <?xml version="1.0" charset="utf-8"?>
    <Test3 Attr="OK" />`
    
    type TestThree struct {
    	XMLName Name   `xml:"Test3"`
    	Attr    string `xml:",attr"`
    }
    
    func TestUnmarshalWithoutNameType(t *testing.T) {
    	var x TestThree
    	if err := Unmarshal([]byte(withoutNameTypeData), &x); err != nil {
    		t.Fatalf("Unmarshal: %s", err)
    	}
    	if x.Attr != OK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    		2: {"/testTwo?a=1&b=2&a=3", "GET", "a=1&b=2&a=3", true},
    		3: {"/testTwo?", "GET", "", true},
    		4: {"/testThree?foo", "GET", "foo", true},
    		5: {"/testThree/?foo", "GET", "foo:bar", true},
    		6: {"/testThree?foo", "CONNECT", "foo", true},
    		7: {"/testThree/?foo", "CONNECT", "foo:bar", true},
    
    		// canonicalization or not
    		8: {"/testOne/foo/..?foo", "GET", "foo", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top