Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for b1 (0.08 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                }
            """
            file('a.txt').text = 'a1'
            file('a.bin').text = 'a2'
            file('b.txt').text = 'b1'
            file('b.bin').text = 'b2'
    
            when:
            run("merge")
    
            then:
            outputContains("result = [a.txt, b.txt, a.bin, b.bin]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/version_test.go

    			}
    		})
    	}
    }
    
    func TestInvalidVersion(t *testing.T) {
    	invalidVersions := []string{
    		"v1.3",
    		"1.4",
    		"b1.4.0",
    		"c1.4.5+git",
    		"something1.2",
    	}
    	for _, s := range invalidVersions {
    		t.Run(s, func(t *testing.T) {
    			ver, err := kubernetesReleaseVersion(s, errorFetcher)
    			t.Log("Invalid: ", s, ver, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    		{nil, `package a5; type S struct{}; func (S) m(); var _ interface { n() } = S{}`,
    			"S does not implement interface{n()} (missing method n)"},
    
    		// tests importing b (or nothing)
    		{bpkg, `package b1; import "b"; var _ interface { m() } = b.S{}`,
    			"b.S does not implement interface{m()} (missing method m) have M() want m()"},
    
    		{bpkg, `package b2; import "b"; var _ interface { M() } = b.S{}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    		{nil, `package a5; type S struct{}; func (S) m(); var _ interface { n() } = S{}`,
    			"S does not implement interface{n()} (missing method n)"},
    
    		// tests importing b (or nothing)
    		{bpkg, `package b1; import "b"; var _ interface { m() } = b.S{}`,
    			"b.S does not implement interface{m()} (missing method m) have M() want m()"},
    
    		{bpkg, `package b2; import "b"; var _ interface { M() } = b.S{}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top